diff --git a/Artifacts.toml b/Artifacts.toml deleted file mode 100644 index 18234b9..0000000 --- a/Artifacts.toml +++ /dev/null @@ -1,6 +0,0 @@ -[default_platform_description] -git-tree-sha1 = "623bf141124a13e42821e8224c8926c8f489c7a6" - - [[default_platform_description.download]] - sha256 = "ed1c3c3d6da146c76e66d1ec7a7c098978162c3c1f10001fc255b3388bd110cd" - url = "https://gist.github.com/decarvalhojunior-fh/4fa474fb0f6300a9f11fc570aa062fae/raw/623bf141124a13e42821e8224c8926c8f489c7a6.tar.gz" diff --git a/Project.toml b/Project.toml index ea41afa..74c6068 100644 --- a/Project.toml +++ b/Project.toml @@ -1,19 +1,23 @@ name = "PlatformAware" uuid = "e7c50b67-2c03-471e-9cf2-69e515d86ecf" authors = ["Francisco Heron de Carvalho Junior and contributors"] -version = "0.3.0" +version = "0.4.0" [deps] -Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" +AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" CpuId = "adafc99b-e345-5852-983c-f28acb93d879" Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" +HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" +InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" Scratch = "6c6a2e73-6563-6170-7368-637461726353" TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76" XMLDict = "228000da-037f-5747-90a9-8195ccbf91a5" [compat] +AbstractTrees = "0.4" CpuId = "0.3" +HTTP = "1" JSON = "0.21" Scratch = "1" XMLDict = "0.4" diff --git a/README.md b/README.md index 4c2c479..907c61f 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,13 @@ # PlatformAware.jl -[![TagBot](https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions/workflows/TagBot.yml/badge.svg)](https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions/workflows/TagBot.yml) -[![CompatHelper](https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions/workflows/CompatHelper.yml/badge.svg)](https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions/workflows/CompatHelper.yml) +[![TagBot](https://github.com/PlatformAwareProgramming/PlatformAware.jl/actions/workflows/TagBot.yml/badge.svg)](https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions/workflows/TagBot.yml) +[![CompatHelper](https://github.com/PlatformAwareProgramming/PlatformAware.jl/actions/workflows/CompatHelper.yml/badge.svg)](https://github.com/PlatformAwareProgramming/PlatformAware.jl/actions/workflows/CompatHelper.yml) _A package for improving the practice of **platform-aware programming** in Julia_. It helps HPC package developers write code for different versions of computationally intensive functions (kernels) according to different assumptions about the features of the execution platform. - -> _**NOTE**: This package is in the experimental stage. Although virtually all of the key features are implemented, more comprehensive testing is still needed, in addition to implementing some features. Interested users are invited to help us improve its implementation by making suggestions and reporting their experiences and found issues._ - # What is platform-aware programming ? We define platform-aware programming as the practice of coding computationally intensive functions, called _kernels_, using the most appropriate abstractions and programming interfaces, as well as performance tuning techniques, to take better advantage of the features of the target execution platform. This is a well-known practice in programming for HPC applications. @@ -19,84 +16,239 @@ Platform-aware programming is especially suitable when the developer is interest For example, suppose a package developer is interested in providing a specialized kernel implementation for [NVIDIA A100 Tensor Core GPUs](https://www.nvidia.com/en-us/data-center/a100), meeting the demand from users of a specific cloud provider offering virtual machines with accelerators of this model. The developer would like to use CUDA programming with this device's supported *computing capability* (8.0). However, other users may require support from other cloud providers that support different accelerator models, from different vendors (for example, [AMD Instinct™ MI210](https://www.amd.com/en/products/server-accelerators/amd-instinct-mi210) and [Intel® Agilex™ F-Series FPGA and SoC FPGA]( https://www.intel.com/content/www/us/en/products/details/fpga/agilex/f-series.html)). In this scenario, the developer will face the challenge of coding and deploying for multiple devices. This is a typical platform-aware programming scenario where _PlatformAware.jl_ should be useful, which is becoming increasingly common as the use of heterogeneous computing platforms increases to accelerate AI and data analytics applications. -# Target users +## Target users _PlatformAware.jl_ is aimed primarily at **_package developers_** dealing with HPC concerns, especially using heterogenous computing resources. We assume that **_package users_** are only interested in using package operations without being concerned about how they are implemented. -# Usage +# Usage tutorial + +We present a simple example that readers may reproduce to test _PlatformAware.jl_ features. + +Consider the problem of performing a convolution operation using a Fast Fourier Transform (FFT). To do this, the user can implement a ```fftconv``` function that uses a ```fft``` function offered by a user-defined package called _MyFFT.jl_, capable of performing the FFT on an accelerator (e.g., GPU) if it is present. -## Instalation +```julia +using MyFFT +fftconv(X,K) = fft(X) .* conj.(fft(K)) +``` +This tutorial shows how to create _MyFFT.jl_, demonstrating the basics of how to install _PlatformAware.jl_ and how to use it to create a platform-aware package. -```] add PlatformAware``` +## Creating the _MyFFT.jl_ project -A _platform description file_ called _Platform.toml_ is needed to describe the features of the execution platform, allowing the selection of suitable kernels through Julia's multiple dispatch. It can be created by running ```PlatformAware.setup()``` in the REPL. Once created, the user can choose the appropriate location for the file, according to the output recommendations. The user can also decide to edit the file to adjust or detail the platform features (we are working on a guideline for this). The new platform features configuration will be loaded in the next section. +In the Julia REPL, as shown in the screenshot below, run ```] generate MyFFT.jl``` to create a new project called _MyFFT.jl_, run ```🔙cd("MyFFT.jl")``` to move to the directory of the created project, and ```] activate .``` to enable the current project (_MyFFT.jl_) in the current Julia REPL session. -> _**NOTE**: We warn that the problem of discovering the features of the execution platform is still one of the most important challenges in the implementation of platform-aware programming. For now, ```PlatformAware.setup()``` works only for Linux platforms. For this reason, the Platform.toml file format has been chosen to facilitate its editing by the end user, who can complete or correct the automatically calculated information describing the platform features._ +![f1](docs/src/images/f1.png) -## Using +These operations create a standard _"hello world"_ project, with the contents of the following snapshot: -The following is a guideline that can be followed by HPC package developers to do _platform-aware programming_ using _PlatformAware.jl_. +![f2](docs/src/images/f2.png) -1. Identify the _kernel functions_, that is, the functions with high computational requirements in your package, which are the natural candidates to exploit parallel computing or acceleration resources, or both. +## Installing _PlatformAware.jl_ -2. Provide a default method for each kernel function, which will execute in any execution platform. This is generally a serial CPU fallback implementation. For that, the developer must use the ```@platform default``` macro. For example, the code below introduces a default method for ```myConvolution```, a kernel of a package interested in performing image convolutions. It could be implemented using the ```conv``` operation of [_DSP.jl_](https://github.com/JuliaDSP/DSP.jl) or the ```imfilter``` operation of [_ImageFiltering.jl_](https://juliaimages.org/ImageFiltering.jl/stable/). +Before coding the platform-aware package, it is necessary to add _PlatormAware.jl_ as a dependency of _MyFFT.jl_ by running the following command in the Julia REPL: ```julia -@platform default function myConvolution(img, krn) - # fallback CPU code follows - ... -end +] add PlatformAware ``` +Now, load the _PlatfomAware.jl_ package (```using PlatformAware``` or ```import PlatformAware```) and read the output message: +![f3](docs/src/images/f3.png) -3. Identify the target execution platforms to which you want to provide specialized methods for each kernel function. You can choose a set of execution platforms for all kernels, or you can select one or more platforms for each kernel independently. For helping your choice, look at the following information sources: - - the [table of supported _platform **parameters**_](https://docs.google.com/spreadsheets/d/1n-c4b7RxUduaKV43XrTnt54w-SR1AXgVNI7dN2OkEUc/edit?usp=sharing), which will help you to know which assumptions _PlatformAware.jl_ already allow you to make about the target execution platorm; - - the database of supported _platform **features**_, where the features of the models of processors and accelerators that are currently suported by _PlatformAware.jl_ are described: - - AMD [accelerators](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/src/platforms/amd/db-accelerators.AMD.csv) and [processors](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/src/platforms/amd/db-processors.AMD.csv); - - Intel [accelerators](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/src/platforms/intel/db-accelerators.Intel.csv) and [processors](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/src/platforms/intel/db-processors.Intel.csv); - - NVIDIA [accelerators](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/src/platforms/nvidia/db-accelerators.NVIDIA.csv). -> _**NOTE**: The idea is to update these databases as new processors and accelerators are released by vendors, as well as create databases for other vendors. In addition, it is intended to include other features in the future, according to user feedback. Users are invited to report errors in the databases, as well as include missing fields and suggest accelerators/processors of interest that are not included.._ +_Platform.toml_ is the _platform description file_, containing a set of key-value pairs, each describing a feature of the underlying platform. It must be created by the user running ```PlatformWare.setup()```, which performs a sequence of feature detection operations on the platform. + +_Platform.toml_ is written in a human-editable format. Therefore, it can be modified by users to add undetected platform features or ignore detected features. -4. For each platform you select, define a set of assumptions about its features that will guide your implementation decisions. In fact, it is possible to define different assumptions for the same platform, leading to multiple implementations of a kernel for the same platform. For example, you might decide to implement different parallel algorithms to solve a problem according to the number of nodes and the interconnection characteristics of a cluster. -5. Provide platform-aware methods for each kernel function using the ```@platform aware``` macro. For example, the code below introduces two kernel methods. The first one is selected when the execution platform has a NVIDIA GPU of Turing architecture, so that the developer may use CUDA with compute capability 7.5 safely to implement the kernel. In turn, the second one is selected for any other GPU model, implementing the kernel by means of portable interfaces like _OpenCL.jl_ or _oneAPI.jl_. Observe the syntax for declaring platform assumptions, explicitly typing platform parameters with platform types to guide multiple dispatch. The set of platform parameters is enclosed in curly braces, in any order, and positioned just before the regular kernel parameters (```img``` and ```krn```). +## Sketching the _MyFFT.jl_ code + +In order to implement the _fft_ kernel function, we edit the _src/MyFFT.jl_ file. First, we sketch the code of the _fft_ kernel methods: ```julia -@platform aware function myConvolution({accelerator_count::(@atleast 1), - accelerator_architecture::Turing, - accelerator_manufacturer::NVIDIA}, img, krn) - # CUDA.jl code follows ... - ... +module MyFFT + + import PlatformAware + + # setup platorm parameters + @platform parameter clear + @platform parameter accelerator_count + @platform parameter accelerator_api + + # Fallback kernel + @platform default fft(X) = ... + + # OpenCL kernel, to be called + @platform aware fft({accelerator_count::(@atleast 1), accelerator_api::(@api OpenCL)}, X) = ... + + # CUDA kernel + @platform aware fft({accelerator_count::(@atleast 1), accelerator_api::(@api CUDA)},X) = ... + + export fft + end +``` + +The sequence of ```@platorm parameter``` macro declarations specifies the set of platform parameters that will be used by subsequent kernel method declarations, that is, the assumptions that will be made to distinguish them. You can refer to [this table](https://docs.google.com/spreadsheets/d/1n-c4b7RxUduaKV43XrTnt54w-SR1AXgVNI7dN2OkEUc/edit?usp=sharing) for a list of all supported _**platform parameters**_. By default, they are all included. In the case of ```fft```, the kernel methods are differentiated using only two parameters: ```accelerator_count``` and ```accelerator_api```. They denote, respectively, assumptions about the number of accelerator devices and the native API they support. + +The ```@platorm default``` macro declares the _default kernel method_, which will be called if none of the assumptions of other kernel methods declared using ```@platform aware``` macro calls are valid. The default kernel must be unique to avoid ambiguity. + +Finally, the kernels for accelerators that support OpenCL and CUDA APIs are declared using the macro ```@platform aware```. The list of platform parameters is declared just before the regular parameters, such as ```X```, in braces. Their types denote assumptions. For example, ```@atleast 1``` denotes a quantifier representing one or more units of a resource, while``` @api CUDA``` and ```@api OpenCL``` denote types of qualifiers that refer to the CUDA and OpenCL APIs. -@platform aware function myConvolution({accelerator_count::(@atleast 1), - accelerator_type::GPU}, img, krn) - # OpenCL.jl or oneAPI.jl code follows ... - ... +The programmer must be careful not to declare kernel methods with overlapping assumptions in order to avoid ambiguities. + +## Other dependencies + +Before adding the code for the kernels, add the code to load their dependencies. This can be done directly by adding the following code to the _src/MyFFT.jl_ file, right after ```import PlatformAware```: + +```julia +import CUDA +import OpenCL +import CLFFT +import FFTW +``` + +Also, you should add _CUDA.jl_, _OpenCL.jl_, _CLFFT.jl_, and _FFFT.jl_ as dependencies of _MyFFT.jl_. To do this, execute the following commands in the Julia REPL: + +```julia +] add CUDA OpenCL CLFFT FFTW +``` + +> **NOTE**: [_CLFFT.jl_](https://github.com/JuliaGPU/CLFFT.jl) is not available on JuliaHub due to compatibility issues with recent versions of Julia. We're working with the CLFFT.jl maintainers to address this issue. If you have an error with the CLFFT dependency, point to our _CLFFT.jl_ fork by running ```add https://github.com/JuliaGPU/CLFFT.jl#master```. + +As a performance optimization, we can take advantage of platform-aware features to selectively load dependencies, speeding up the loading of _MyFFT.jl_. To do this, we first declare a kernel function called ```which_api``` in _src/MyFFT.jl_, right after the ```@platform parameter``` declaration: + +```julia +@platform default which_api() = :fftw +@platform aware which_api({accelerator_api::(@api CUDA)}) = :cufft +@platform aware which_api({accelerator_api::(@api OpenCL)}) = :clfft +``` + +Next, we add the code for selective dependency loading: + +```julia +api = which_api() +if (api == :cufft) + import CUDA +elseif (api == :clfft) + import OpenCL + import CLFFT +else # api == :fftw + import FFTW end ``` +## Full _src/MyFFT.jl_ code + +Finally, we present the complete code for _src/MyFFT.jl_, with the implementation of the kernel methods: + +```julia +module MyFFT + + using PlatformAware + + @platform parameter clear + @platform parameter accelerator_count + @platform parameter accelerator_api + + @platform default which_api() = :fftw + @platform aware which_api({accelerator_count::(@atleast 1), accelerator_api::(@api CUDA)}) = :cufft + @platform aware which_api({accelerator_count::(@atleast 1), accelerator_api::(@api OpenCL)}) = :clfft + + api = which_api() + @info "seleted FFT API" api + + if (api == :cufft) + using CUDA; const cufft = CUDA.CUFFT + elseif (api == :clfft) + using OpenCL + using CLFFT; const clfft = CLFFT + else # api == :fftw + using FFTW; const fftw = FFTW + end + + # Fallback kernel + @platform default fft(X) = fftw.fft(X) + + # OpenCL kernel + @platform aware function fft({accelerator_count::(@atleast 1), accelerator_api::(@api OpenCL)}, X) + T = eltype(X) + _, ctx, queue = cl.create_compute_context() + bufX = cl.Buffer(T, ctx, :copy, hostbuf=X) + p = clfft.Plan(T, ctx, size(X)) + clfft.set_layout!(p, :interleaved, :interleaved) + clfft.set_result!(p, :inplace) + clfft.bake!(p, queue) + clfft.enqueue_transform(p, :forward, [queue], bufX, nothing) + reshape(cl.read(queue, bufX), size(X)) + end + + # CUDA kernel + @platform aware fft({accelerator_count::(@atleast 1), accelerator_api::(@api CUDA)},X) = cufft.fft(X |> CuArray) + + export fft + +end # module MyFFT +``` + +## Running and testing the _fft_ kernel methods -6. After implementing and testing all platform-aware methods, you have a list of platform parameters that were used to make assumptions about the target execution platform(s). You can optionally instruct the _PlatformAware.jl_ to use only that parameters by using the ``@platform parameter`` macro. For example, the following code selects only the platform parameters used in the above examples. This code must be placed before the first call to the ```@platform default``` and ```@platform aware```macros. +To test _fft_ in a convolution, open a Julia REPL session in the _MyFFT.jl_ directory and execute the following commands: + +> **NOTE**: If you receive an ambiguity error after executing _fftconv_, don't panic ! Read the next paragraphs. ```julia -@platform parameter clear -@platform parameter accelerator_count -@platform parameter accelerator_architecture -@platform parameter accelerator_manufacturer -@platform parameter accelerator_type + import Pkg; Pkg.activate(".") + using MyFFT + + function fftconv(img,krn) + padkrn = zeros(size(img)) + copyto!(padkrn,CartesianIndices(krn),krn,CartesianIndices(krn)) + fft(img) .* conj.(fft(padkrn)) + end + + img = rand(Float64,(20,20,20)) # image + krn = rand(Float64,(4,4,4)) # kernel + + fftconv(img,krn) ``` +The _fft_ kernel method that corresponds to the current _Platform.toml_ will be selected. If _Platform.toml_ was not created before, the default kernel method will be selected. The reader can consult the _Platform.toml_ file to find out about the platform features detected by _PlatformAware.setup()_. The reader can also see the selected FFT API in the logging messages after ```using MyFFT```. + +By carefully modifying the _Platform.toml_ file, the reader can test all kernel methods. For example, if an NVIDIA GPU was recognized by _PlatformAware.setup()_, the ```accelerator_api``` entry in _Platform.toml_ will probably include the supported CUDA and OpenCL versions. For example, for an NVIDIA GeForce 940MX GPU, ```accelerator_api = "CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0"```. This may lead to an ambiguity error, as multiple dispatch will not be able to distinguish between the OpenCL and CUDA kernel methods based on the ```accelerator_api``` parameter alone. In this case, there are two alternatives: + +* To edit _Platform.toml_ by setting CUDA or OpenCL platform type (e.g. ```CUDA_5_0``` or ```OpenCL_3_0```) to ```unset``` in the ```accelerator_api``` entry, making it possible to select manually the kernel method that will be selected; +* To modify the CUDA kernel signature by including, for example, ```accelerator_manufacturer::NVIDIA``` in the list of platform parameters, so that NVIDIA GPUs will give preference to CUDA and OpenCL will be applied to accelerators of other vendors (recommended). + + +## A general guideline + +Therefore, we suggest the following general guideline for package developers who want to take advantage of _PlatformWare.jl_. + +1. Identify the _kernel functions_, that is, the functions with high computational requirements in your package, which are the natural candidates to exploit parallel computing, acceleration resources, or both. + +2. Provide a default (fallback) method for each kernel function, using the ```@platform default``` macro. + +3. Identify the target execution platforms to which you want to provide specialized methods for each kernel function. You can choose a set of execution platforms for all kernels, or you can select one or more platforms for each kernel independently. For helping your choice, look at the following information sources: + - the [table of supported _platform **parameters**_](https://docs.google.com/spreadsheets/d/1n-c4b7RxUduaKV43XrTnt54w-SR1AXgVNI7dN2OkEUc/edit?usp=sharing), which will help you to know which assumptions _PlatformAware.jl_ already allow you to make about the target execution platorm; + - the database of supported _platform **features**_, where the features of the models of processors and accelerators that are currently suported by _PlatformAware.jl_ are described: + - AMD [accelerators](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/src/features/qualifiers/amd/db-accelerators.AMD.csv) and [processors](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/src/features/qualifiers/amd/db-processors.AMD.csv); + - Intel [accelerators](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/src/features/qualifiers/intel/db-accelerators.Intel.csv) and [processors](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/src/features/qualifiers/intel/db-processors.Intel.csv); + - NVIDIA [accelerators](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv). + +4. For each platform you select, define a set of assumptions about its features that will guide your implementation decisions. In fact, it is possible to define different assumptions for the same platform, leading to multiple implementations of a kernel for the same platform. For example, you might decide to implement different parallel algorithms to solve a problem according to the number of nodes and the interconnection characteristics of a cluster. + +5. Provide platform-aware methods for each kernel function using the ```@platform aware``` macro. + +6. After implementing and testing all platform-aware methods, you have a list of platform parameters that were used to make assumptions about the target execution platform(s). You can optionally instruct the _PlatformAware.jl_ to use only that parameters by using the ``@platform parameter`` macro. + # Contributing Contributions are very welcome, as are feature requests and suggestions. -Please [open an issue](https://github.com/decarvalhojunior-fh/PlatformAware.jl) if you encounter any problems. +Please [open an issue](https://github.com/PlatformAwareProgramming/PlatformAware.jl) if you encounter any problems. # License -_PlatformAware.jl_ is licensed under the [MIT License](https://github.com/decarvalhojunior-fh/PlatformAware.jl/blob/master/LICENSE) +_PlatformAware.jl_ is licensed under the [MIT License](https://github.com/PlatformAwareProgramming/PlatformAware.jl/blob/master/LICENSE) [build-img]: https://img.shields.io/github/workflow/status/JuliaEarth/ImageQuilting.jl/CI -[build-url]: https://github.com/decarvalhojunior-fh/PlatformAware.jl/actions +[build-url]: https://github.com/PlatformAwareProgramming/PlatformAware.jl/actions diff --git a/docs/src/images/f1.png b/docs/src/images/f1.png new file mode 100644 index 0000000..e6db226 Binary files /dev/null and b/docs/src/images/f1.png differ diff --git a/docs/src/images/f2.png b/docs/src/images/f2.png new file mode 100644 index 0000000..58059c8 Binary files /dev/null and b/docs/src/images/f2.png differ diff --git a/docs/src/images/f3.png b/docs/src/images/f3.png new file mode 100644 index 0000000..de800ec Binary files /dev/null and b/docs/src/images/f3.png differ diff --git a/src/PlatformAware.jl b/src/PlatformAware.jl index d9a426a..1c3f42d 100644 --- a/src/PlatformAware.jl +++ b/src/PlatformAware.jl @@ -8,39 +8,44 @@ using CpuId using XMLDict using TOML using JSON -using Artifacts using Scratch using Downloads +using InteractiveUtils +using HTTP + +include("utils.jl") + +# features (platform types) +include("features/features.jl") # platform types base +include("features/detection.jl") # feature detection # quantifiers -include("quantifiers/atleast.jl") -include("quantifiers/atmost.jl") -include("quantifiers/macros.jl") +include("features/quantifiers/atleast.jl") +include("features/quantifiers/atmost.jl") +include("features/quantifiers/macros.jl") + +# qualifiers +include("features/qualifiers/general.jl") +include("features/qualifiers/common.jl") +include("features/qualifiers/ec2/ec2.jl") +include("features/qualifiers/gcp/gcp.jl") +include("features/qualifiers/nvidia/nvidia.jl") +include("features/qualifiers/intel/intel.jl") +include("features/qualifiers/intel/intel_accelerators_xeonphi.jl") +include("features/qualifiers/intel/intel_processors_atom.jl") +include("features/qualifiers/intel/intel_processors_celeron.jl") +include("features/qualifiers/intel/intel_processors_core.jl") +include("features/qualifiers/intel/intel_processors_itanium.jl") +include("features/qualifiers/intel/intel_processors_pentium.jl") +include("features/qualifiers/intel/intel_processors_xeon.jl") +include("features/qualifiers/amd/amd_processors.jl") +include("features/qualifiers/amd/amd_accelerators.jl") +include("features/qualifiers/xilinx/xilinx.jl") -# platform types -include("platforms/general.jl") -include("platforms/common.jl") -include("platforms/ec2/ec2.jl") -include("platforms/gcp/gcp.jl") -include("platforms/nvidia/nvidia.jl") -include("platforms/intel/intel.jl") -include("platforms/intel/intel_accelerators_xeonphi.jl") -include("platforms/intel/intel_processors_atom.jl") -include("platforms/intel/intel_processors_celeron.jl") -include("platforms/intel/intel_processors_core.jl") -include("platforms/intel/intel_processors_itanium.jl") -include("platforms/intel/intel_processors_pentium.jl") -include("platforms/intel/intel_processors_xeon.jl") -include("platforms/amd/amd_processors.jl") -include("platforms/amd/amd_accelerators.jl") -include("platforms/xilinx/xilinx.jl") # main functionality (@platform macro and default types) -include("features.jl") -include("identification.jl") +include("platform.jl") -# platform identification -include("awareness.jl") function __init__() load!() @@ -48,20 +53,24 @@ end export @platform, + @quantifier, @atleast, @atmost, @between, @just, @unlimited, + @api, + PlatformType, + QuantifierFeature, + QualifierFeature, Query, Yes, No, - Maintainer, + Provider, OnPremise, CloudProvider, MachineFamily, MachineType, - MachineSize, Locale, Manufacturer, ProcessorMicroarchitecture, diff --git a/src/features/default/Platform.toml b/src/features/default/Platform.toml new file mode 100644 index 0000000..2aebe61 --- /dev/null +++ b/src/features/default/Platform.toml @@ -0,0 +1,71 @@ +# This is an example of platform description file + +# "na": not-applicable (use default value) +# "unknown": unknown feature (use default value) +# "unset": feature not set (calculate it from the database) +# "ignore": the feature is being ignored (use default value) + +[node] + +node_provider = "OnPremise" +node_virtual = "No" +node_dedicated = "Yes" +node_machinefamily = "na" +node_machinetype = "na" +node_vcpus_count = "na" + +[processor] + +processor = "unset" +processor_count = 1 +processor_manufacturer = "unset" +processor_microarchitecture = "unset" +processor_simd = "unset" +processor_isa = "unset" +processor_tdp = "unset" # W +processor_core_clock = "unset" +processor_core_count = 1 +processor_core_threads_count = 1 +processor_core_L1_size = "unset" +processor_core_L2_size = "unset" +processor_L3_size = "unset" + +[accelerator] + +accelerator = "unset" +accelerator_count = 0 +accelerator_type = "unset" +accelerator_manufacturer = "unset" +accelerator_api = "unset" +accelerator_architecture = "unset" +accelerator_memory_size = "unset" +accelerator_tdp = "unset" # W +accelerator_processor = "unset" +accelerator_processor_count = "unset" + +[memory] + +node_memory_type = "unset" +node_memory_frequency = "unset" +node_memory_size = "unset" +node_memory_latency = "unset" +node_memory_bandwidth = "unset" + +[storage] + +storage_type = "unset" +storage_interface = "unset" +storage_size = "unset" +storage_latency = "unset" +storage_bandwidth = "unset" +storage_networkbandwidth = "unset" + +[interconnection] + +interconnection_startuptime = "unset" +interconnection_latency = "unset" +interconnection_bandwidth = "unset" +interconnection_topology = "unset" +interconnection_RDMA = "unset" +interconnection = "unset" + diff --git a/src/awareness.jl b/src/features/detection.jl similarity index 87% rename from src/awareness.jl rename to src/features/detection.jl index 9d3702f..185314f 100644 --- a/src/awareness.jl +++ b/src/features/detection.jl @@ -2,97 +2,26 @@ # Licensed under the MIT License. See LICENCE in the project root. # ------------------------------------------------------------------ - function readDB(filename) - - d = Vector() - i=0 - for ls in readlines(filename) - if i>0 - l = split(ls,',') - ks = split(l[1],';') - d2 = d - for k in ks - next_d = nothing - for (key,value) in d - if (k == key) - next_d = value - end - end - if (isnothing(next_d)) - next_d = Vector() - push!(d,(k,next_d)) - end - d = next_d - end - push!(d,(l[2],tuple(l[2:length(l)]...))) - d = d2 - end - i = i + 1 - end - return d - end - - function lookupDB(db, key) - - d = db - - while typeof(d) <: Vector - - ks = d - - found = false - for (k,v) in ks - if (occursin(k,key)) - d = v; found = true - break - end - end - if !found return nothing end - end - - return d - -end const processor_dict = Ref{Vector}() const accelerator_dict = Ref{Vector}() -function try_download(url,fname) - try - if (isfile(fname)) - cp(fname,fname * ".backup", force=true) - end - Downloads.download(url, fname) - catch e - @info "error downloading $url." - if (isfile(fname) || isfile(fname * ".backup")) - @info " Using existing file $fname" - if (!isfile(fname)) - cp(fname * ".backup", fname) - end - else - @info " Check internet connection and try again." - rethrow(e) - end - end -end - function loadDBs!() database_path = @get_scratch!("database_path") - procdb_intel_url = "https://raw.githubusercontent.com/platform-aware-programming/PlatformAware.jl/master/src/platforms/intel/db-processors.Intel.csv" - procdb_amd_url = "https://raw.githubusercontent.com/platform-aware-programming/PlatformAware.jl/master/src/platforms/amd/db-processors.AMD.csv" - accdb_intel_url = "https://raw.githubusercontent.com/platform-aware-programming/PlatformAware.jl/master/src/platforms/intel/db-accelerators.Intel.csv" - accdb_amd_url = "https://raw.githubusercontent.com/platform-aware-programming/PlatformAware.jl/master/src/platforms/amd/db-accelerators.AMD.csv" - accdb_nvidia_url = "https://raw.githubusercontent.com/platform-aware-programming/PlatformAware.jl/master/src/platforms/nvidia/db-accelerators.NVIDIA.csv" + procdb_intel_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/qualifiers/intel/db-processors.Intel.csv" + procdb_amd_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/qualifiers/amd/db-processors.AMD.csv" + accdb_intel_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/qualifiers/intel/db-accelerators.Intel.csv" + accdb_amd_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/qualifiers/amd/db-accelerators.AMD.csv" + accdb_nvidia_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv" -# procdb_intel_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/platforms/intel/db-processors.Intel.csv" #joinpath(database_path,basename(procdb_intel_url)) -# procdb_amd_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/platforms/amd/db-processors.AMD.csv" #joinpath(database_path,basename(procdb_amd_url)) -# accdb_intel_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/platforms/intel/db-accelerators.Intel.csv" #joinpath(database_path,basename(accdb_intel_url)) -# accdb_amd_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/platforms/amd/db-accelerators.AMD.csv" #joinpath(database_path,basename(accdb_amd_url)) -# accdb_nvidia_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/platforms/nvidia/db-accelerators.NVIDIA.csv" #joinpath(database_path,basename(accdb_nvidia_url)) +# procdb_intel_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/features/qualifiers/intel/db-processors.Intel.csv" #joinpath(database_path,basename(procdb_intel_url)) +# procdb_amd_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/features/qualifiers/amd/db-processors.AMD.csv" #joinpath(database_path,basename(procdb_amd_url)) +# accdb_intel_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/features/qualifiers/intel/db-accelerators.Intel.csv" #joinpath(database_path,basename(accdb_intel_url)) +# accdb_amd_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/features/qualifiers/amd/db-accelerators.AMD.csv" #joinpath(database_path,basename(accdb_amd_url)) +# accdb_nvidia_fname = "/home/heron/Dropbox/Copy/ufc_mdcc_hpc/PlatformAware/PlatformAware.jl/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv" #joinpath(database_path,basename(accdb_nvidia_url)) procdb_intel_fname = joinpath(database_path,basename(procdb_intel_url)) procdb_amd_fname = joinpath(database_path,basename(procdb_amd_url)) @@ -300,7 +229,7 @@ end #= - fn = open("src/platforms/database/processors/intel_processors_data.txt") + fn = open("src/features/qualifiers/database/processors/intel_processors_data.txt") d = JSON.parse(fn) close(fn) @@ -504,9 +433,9 @@ function identifyProcessor() get!(cdict,c[:id],c[:value]) end processor_core_count = parse(Int64,cdict["enabledcores"]) - processor_core_threadscount = parse(Int64,cdict["threads"]) + processor_core_threads_count = parse(Int64,cdict["threads"]) - push!(l,(p["product"],processor_core_count, processor_core_threadscount,lc)) + push!(l,(p["product"],processor_core_count, processor_core_threads_count,lc)) end @@ -517,6 +446,8 @@ function identifyProcessor() end + + function collectAcceleratorFeatures(l) accelerator_features = Dict() @@ -541,8 +472,11 @@ function collectAcceleratorFeatures(l) device["accelerator_manufacturer"] = acc_info[4] device["accelerator_api"] = acc_info[5] device["accelerator_architecture"] = acc_info[6] - device["accelerator_memorysize"] = acc_info[7] + device["accelerator_memory_size"] = acc_info[7] device["accelerator_tdp"] = acc_info[8] + device["accelerator_processor_count"] = length(acc_info) > 8 ? acc_info[9] : "unset" + device["accelerator_processor"] = length(acc_info) > 9 ? acc_info[10] : "unset" + device["accelerator_memory_type"] = length(acc_info) > 10 ? acc_info[11] : "unset" i = i + 1 end @@ -560,8 +494,11 @@ function collectAcceleratorFeaturesDefault() default_features["accelerator_manufacturer"] = "unset" default_features["accelerator_api"] = "unset" default_features["accelerator_architecture"] = "unset" - default_features["accelerator_memorysize"] = "unset" + default_features["accelerator_memory_size"] = "unset" default_features["accelerator_tdp"] = "unset" + default_features["accelerator_processor"] = "unset" + default_features["accelerator_processor_count"] = "unset" + default_features["accelerator_memory_type"] = "unset" return default_features end @@ -789,25 +726,25 @@ function identityInterconnection() return interconnection_features end -# TODO function identifyNode() - println(stderr, "fail.") - println(stderr, "=> Note: detection of node features (cluster and cloud computing) not yet implemented. Using default features.") - println(stderr, " You can setup node features manually.") - - interconnection_features = Dict() - - interconnection_features["node_count"] = 1 - interconnection_features["node_provider"] = "OnPremise" - interconnection_features["node_virtual"] = "No" - interconnection_features["node_dedicated"] = "No" - interconnection_features["node_machinefamily"] = "unset" - interconnection_features["node_machinetype"] = "unset" - interconnection_features["node_machinesize"] = "unset" - interconnection_features["node_vcpus_count"] = "unset" + node_features = Dict() - return interconnection_features + node_features["node_count"] = 1 + node_features["node_provider"] = "OnPremise" + node_features["node_virtual"] = "No" + node_features["node_dedicated"] = "No" + node_features["node_machinefamily"] = "unset" + node_features["node_machinetype"] = "unset" + node_features["node_vcpus_count"] = "unset" + + for p in subtypes(CloudProvider) + print(stderr, string(p) * "?") + ok = getNodeFeatures(p, node_features) + if (isnothing(ok)) print(stderr, "No") else print(stderr, "Yes") end; print(stderr, ", ") + end + print(stderr, "... ok") + return node_features end function addNodeFeatures!(platform_features, node_features) diff --git a/src/features.jl b/src/features/features.jl similarity index 56% rename from src/features.jl rename to src/features/features.jl index b832e6a..859de7e 100644 --- a/src/features.jl +++ b/src/features/features.jl @@ -2,7 +2,12 @@ # Licensed under the MIT License. See LICENCE in the project root. # ------------------------------------------------------------------ -@enum FeatureType qualifier=1 quantifier +abstract type PlatformType end + +abstract type QuantifierFeature <: PlatformType end +abstract type QualifierFeature <: PlatformType end + +@enum FeatureType qualifier=1 api_qualifier quantifier global feature_type = Dict( :node_count => quantifier, @@ -11,13 +16,13 @@ global feature_type = Dict( :node_dedicated => qualifier, :node_machinefamily => qualifier, :node_machinetype => qualifier, - :node_machinesize => qualifier, :node_vcpus_count => quantifier, :node_memory_size => quantifier, :node_memory_latency => quantifier, :node_memory_bandwidth => quantifier, :node_memory_type => qualifier, :node_memory_frequency => quantifier, + :node_coworker_count => qualifier, :processor_count => quantifier, :processor_manufacturer => qualifier, :processor_microarchitecture => qualifier, @@ -47,9 +52,12 @@ global feature_type = Dict( :accelerator_manufacturer => qualifier, :accelerator_type => qualifier, :accelerator_architecture => qualifier, - :accelerator_api => qualifier, - :accelerator_memorysize => quantifier, + :accelerator_api => api_qualifier, + :accelerator_memory_size => quantifier, :accelerator_tdp => quantifier, + :accelerator_processor => qualifier, + :accelerator_processor_count => quantifier, + :accelerator_memory_type => qualifier, :accelerator => qualifier, :interconnection_startuptime => quantifier, :interconnection_latency => quantifier, @@ -89,8 +97,12 @@ function readPlatormDescription() @info "Using default platform features (calling default kernels)." @info "A Platform.toml file may be created by calling PlatformAware.setup()" - io = joinpath(artifact"default_platform_description", "DefaultPlatform.toml") - read(io,String) + dpf_path = @get_scratch!("default_platform_path") + dpf_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/master/src/features/default/Platform.toml" + dpf_fname = joinpath(dpf_path, basename(dpf_url)) + try_download(dpf_url, dpf_fname) + + read(dpf_fname,String) end end @@ -100,26 +112,31 @@ end function get_quantifier_from_number(n) if n>0 - magnitude = Dict(0 => "", 1 => "K", 2 => "M", 3 => "G", 4 => "T", 5 => "P", 6 => "E") l = log(2,n) - a = round(l) + a = floor(l) b = isinteger(l) ? a : a + 1; # the following loop separates a and b in multiplier*magnitude (see the POPL's paper). # let A = 2^a - m=0 + m1=0 while a>9 # loop invariant: A = 2^a * 2^(10*m) a = a - 10 + m1 = m1 + 1 + end + + m2=0 + while b>9 + # loop invariant: A = 2^a * 2^(10*m) b = b - 10 - m = m + 1 + m2 = m2 + 1 end - a_str = "AtLeast" * string(Integer(2^a)) * magnitude[m] - b_str = "AtMost" * string(Integer(2^b)) * magnitude[m] + a_str = "AtLeast" * string(Integer(2^a)) * magnitude[m1] + b_str = "AtMost" * string(Integer(2^b)) * magnitude[m2] else a_str = "AtLeast0" b_str = "AtMost0" @@ -127,7 +144,7 @@ function get_quantifier_from_number(n) a_type = getfield(@__MODULE__, Meta.parse(a_str)) b_type = getfield(@__MODULE__, Meta.parse(b_str)) - Tuple{a_type,b_type} + Tuple{a_type,b_type,n} end @@ -154,22 +171,66 @@ function get_qualifier(feature) getfield(@__MODULE__, Meta.parse(feature)) end -function check_blank_feature(parameter_id, feature, default_platform_types) +function check_blank_feature(parameter_id, feature, platform_feature_default) if (feature == "na") - default_platform_types[parameter_id] + platform_feature_default[parameter_id] elseif (feature == "unset") - default_platform_types[parameter_id] + platform_feature_default[parameter_id] elseif (feature == "unknown") - default_platform_types[parameter_id] + platform_feature_default[parameter_id] elseif (feature == "ignore") - default_platform_types[parameter_id] + platform_feature_default[parameter_id] else nothing end end +function identifyAPI_oldversion(api_string) + + dt = AcceleratorBackend + + api_type = get_qualifier(api_string) + -function loadFeaturesSection!(dict, actual_platform_arguments, default_platform_types) + + if (startswith(api_string, "CUDA")) return Tuple{api_type,dt,dt,dt,dt,dt,dt} + elseif (startswith(api_string, "OpenCL")) return Tuple{dt,api_type,dt,dt,dt,dt,dt} + elseif (startswith(api_string, "OpenACC")) return Tuple{dt,dt,api_type,dt,dt,dt,dt} + elseif (startswith(api_string, "OneAPI")) return Tuple{dt,dt,dt,api_type,dt,dt,dt} + elseif (startswith(api_string, "OpenGL")) return Tuple{dt,dt,dt,dt,api_type,dt,dt} + elseif (startswith(api_string, "Vulkan")) return Tuple{dt,dt,dt,dt,dt,api_type,dt} + elseif (startswith(api_string, "DirectX")) return Tuple{dt,dt,dt,dt,dt,dt,api_type} + else return Tuple{dt,dt,dt,dt,dt,dt} + end + + + #Tuple{Any,Any,Any,Any,Any,Any,Any} + + + end + +function get_api_qualifier(api_string, platform_feature_default) + + apis = split(api_string,';') + + if length(apis) == 1 + return identifyAPI_oldversion(api_string) + end + + cuda_api = get_qualifier(apis[1] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[1]) + opencl_api = get_qualifier(apis[2] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[2]) + openacc_api = get_qualifier(apis[3] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[3]) + oneapi_api = get_qualifier(apis[4] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[4]) + opengl_api = get_qualifier(apis[5] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[5]) + vulkan_api = get_qualifier(apis[6] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[6]) + directx_api = get_qualifier(apis[7] in ["na","unset","unknown","ignore"] ? "AcceleratorBackend" : apis[7]) + + Tuple{cuda_api,opencl_api,openacc_api,oneapi_api,opengl_api,vulkan_api,directx_api} + #Tuple{Any,Any,Any,Any,Any,Any,Any} + + end + +function loadFeaturesSection!(dict, platform_feature, platform_feature_default) if ("0" in keys(dict)) dict = dict["0"] @@ -177,19 +238,19 @@ function loadFeaturesSection!(dict, actual_platform_arguments, default_platform_ for (parameter_id, feature) in dict p = Meta.parse(parameter_id) - v0 = check_blank_feature(p, feature, default_platform_types) + v0 = check_blank_feature(p, feature, platform_feature_default) v = if (isnothing(v0)) - feature_type[p] == qualifier ? get_qualifier(feature) : get_quantifier(feature) + feature_type[p] == qualifier ? get_qualifier(feature) : feature_type[p] == api_qualifier ? get_api_qualifier(feature, platform_feature_default) : get_quantifier(feature) else v0 end - actual_platform_arguments[p]= v + platform_feature[p]= v end end -function loadFeatures!(dict, default_platform_types, actual_platform_arguments) +function loadFeatures!(dict, platform_feature_default, platform_feature) loadDBs!() - for key in ["node","processor","accelerator","memory","storage","interconnection"] - loadFeaturesSection!(dict[key], actual_platform_arguments, default_platform_types) + for key in ["node", "processor", "accelerator", "memory", "storage", "interconnection"] + loadFeaturesSection!(dict[key], platform_feature, platform_feature_default) end -end +end \ No newline at end of file diff --git a/src/platforms/amd/amd_accelerators.jl b/src/features/qualifiers/amd/amd_accelerators.jl similarity index 100% rename from src/platforms/amd/amd_accelerators.jl rename to src/features/qualifiers/amd/amd_accelerators.jl diff --git a/src/platforms/amd/amd_processors.jl b/src/features/qualifiers/amd/amd_processors.jl similarity index 100% rename from src/platforms/amd/amd_processors.jl rename to src/features/qualifiers/amd/amd_processors.jl diff --git a/src/platforms/amd/db-accelerators.AMD.csv b/src/features/qualifiers/amd/db-accelerators.AMD.csv similarity index 99% rename from src/platforms/amd/db-accelerators.AMD.csv rename to src/features/qualifiers/amd/db-accelerators.AMD.csv index 617dc99..68e28d7 100644 --- a/src/platforms/amd/db-accelerators.AMD.csv +++ b/src/features/qualifiers/amd/db-accelerators.AMD.csv @@ -1,4 +1,4 @@ -,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memorysize,accelerator_tdp +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memory_size,accelerator_tdp ATI;Radeon;HD,5970,ATI_AMDRadeon_HD_5970,GPU,AMD,OpenCL_1_2,TeraScale2,2GB,294 ATI;Radeon;HD,5870,ATI_AMDRadeon_HD_5870,GPU,AMD,OpenCL_1_2,TeraScale2,1GB,188 ATI;Radeon;HD,5850,ATI_AMDRadeon_HD_5850,GPU,AMD,OpenCL_1_2,TeraScale2,1GB,151 diff --git a/src/platforms/amd/db-processors.AMD.csv b/src/features/qualifiers/amd/db-processors.AMD.csv similarity index 99% rename from src/platforms/amd/db-processors.AMD.csv rename to src/features/qualifiers/amd/db-processors.AMD.csv index 50c7fb0..b7ea994 100644 --- a/src/platforms/amd/db-processors.AMD.csv +++ b/src/features/qualifiers/amd/db-processors.AMD.csv @@ -1,4 +1,4 @@ -,,processor_core_count,processor_clock,processor_core_threadscount,processor_isa,processor_simd,processor_microarchitecture,processor,processor_manufacturer,processor_tdp,processor_core_L1_size,processor_core_L2_size,processor_L3_size,node_memory_bandwidth,node_memory_type +,,processor_core_count,processor_clock,processor_core_threads_count,processor_isa,processor_simd,processor_microarchitecture,processor,processor_manufacturer,processor_tdp,processor_core_L1_size,processor_core_L2_size,processor_L3_size,node_memory_bandwidth,node_memory_type AMD;Turion,TL64,2,2.2G,2,64-bit,MMX;Now3Dx;SSE;SSE2;SSE3,unset,AMDTurion_TL64,AMD,35,unset,1MB,unset,667M,DDR2 AMD;Turion,TL60,2,2.0G,2,64-bit,MMX;Now3Dx;SSE;SSE2;SSE3,unset,AMDTurion_TL60,AMD,31,unset,1MB,unset,667M,DDR2 AMD;Turion,TL56,2,1.8G,2,64-bit,MMX;Now3Dx;SSE;SSE2;SSE3,unset,AMDTurion_TL56,AMD,31,unset,unset,unset,unset,unset diff --git a/src/platforms/common.jl b/src/features/qualifiers/common.jl similarity index 72% rename from src/platforms/common.jl rename to src/features/qualifiers/common.jl index 45a3f26..d3d2e54 100644 --- a/src/platforms/common.jl +++ b/src/features/qualifiers/common.jl @@ -11,9 +11,32 @@ abstract type OpenCL_1_2 <: OpenCL_1_1 end abstract type OpenCL_2_0 <: OpenCL_1_2 end abstract type OpenCL_2_1 <: OpenCL_2_0 end abstract type OpenCL_2_2 <: OpenCL_2_1 end -abstract type OpenCL_3 <: OpenCL_2_2 end +abstract type OpenCL_3_0 <: OpenCL_2_2 end -export OpenCL_API, OpenCL_1_0, OpenCL_1_1, OpenCL_1_2, OpenCL_2_0, OpenCL_2_1, OpenCL_2_2, OpenCL_3 +export OpenCL_API, OpenCL_1_0, OpenCL_1_1, OpenCL_1_2, OpenCL_2_0, OpenCL_2_1, OpenCL_2_2, OpenCL_3_0 + +# OpenGL +abstract type OpenGL_API <: AcceleratorBackend end +abstract type OpenGL_4_6 <: OpenGL_API end + +export OpenGL_API, OpenGL_4_6 + +# Vulkan +abstract type Vulkan_API <: AcceleratorBackend end +abstract type Vulkan_1_1 <: Vulkan_API end +abstract type Vulkan_1_2 <: Vulkan_1_1 end +abstract type Vulkan_1_3 <: Vulkan_1_2 end + +export Vulkan_API, Vulkan_1_1, Vulkan_1_2, Vulkan_1_3 + +# DirectX + +abstract type DirectX_API <: AcceleratorBackend end +abstract type DirectX_11_0 <: DirectX_API end +abstract type DirectX_12_1 <: DirectX_11_0 end +abstract type DirectX_12_2 <: DirectX_12_1 end + +export DirectX_API, DirectX_11_0, DirectX_12_1, DirectX_12_2 # SIMD extensions @@ -90,6 +113,16 @@ abstract type ISA_x86_64_v4 <: ISA_x86_64_v3 end abstract type ISA_IA_64 <: ProcessorISA end - export ISA_x86_32, ISA_x86, ISA_x86_64, ISA_AMD_64, ISA_x86_64_v1, ISA_x86_64_v2, ISA_x86_64_v3, ISA_x86_64_v4, ISA_IA_64 + +abstract type WorkerCount end +abstract type NoCoworkers <: WorkerCount end +abstract type PerNode <: WorkerCount end +abstract type PerProcessor <: WorkerCount end +abstract type PerCore <: WorkerCount end +abstract type PerThread <: WorkerCount end +abstract type PerVCPU <: WorkerCount end +abstract type Unmapped <: WorkerCount end + +export PerNode, PerProcessor, PerCore, PerThread, PerVCPU \ No newline at end of file diff --git a/src/features/qualifiers/ec2/db-machinetypes.ec2.csv b/src/features/qualifiers/ec2/db-machinetypes.ec2.csv new file mode 100644 index 0000000..e26a3f9 --- /dev/null +++ b/src/features/qualifiers/ec2/db-machinetypes.ec2.csv @@ -0,0 +1,568 @@ +api_name,node_machinefamily,node_machinetype,node_machinesize,node_memory_size,node_vcpus_count,node_ecu_count,ecu_per_vcpu,memory_per_vcpu,accelerator_count,accelerator,processor,storage_size,storage_type,storage_bandwidth,network_performance,storage_throughput,storage_trim_support,storage_iops +a1.2xlarge,EC2Family_General,EC2Type_A1,EC2Type_A1_2xLarge,16.0G,8,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +a1.4xlarge,EC2Family_General,EC2Type_A1,EC2Type_A1_4xLarge,32.0G,16,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +a1.large,EC2Family_General,EC2Type_A1,EC2Type_A1_Large,4.0G,2,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +a1.medium,EC2Family_General,EC2Type_A1,EC2Type_A1_Medium,2.0G,1,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +a1.metal,EC2Family_General,EC2Type_A1,EC2Type_A1_Metal,32.0G,16,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +a1.xlarge,EC2Family_General,EC2Type_A1,EC2Type_A1_xLarge,8.0G,4,0,0,2.00G,0,na,AWS Graviton,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +c1.medium,EC2Family_Compute,EC2Type_C1,EC2Type_C1_Medium,1.7G,2,5,2.5,0.85G,0,na,Intel Xeon Family,350G,HDD,unset,Moderate,0M,na,0 +c1.xlarge,EC2Family_Compute,EC2Type_C1,EC2Type_C1_xLarge,7.0G,8,20,2.5,0.88G,0,na,Intel Xeon Family,1680G,HDD,1000.0M,High,125.0M,na,8000 +c3.2xlarge,EC2Family_Compute,EC2Type_C3,EC2Type_C3_2xLarge,15.0G,8,28,3.5,1.88G,0,na,Intel Xeon E5-2680 v2,160G,SSD,1000.0M,High,125.0M,No,8000 +c3.4xlarge,EC2Family_Compute,EC2Type_C3,EC2Type_C3_4xLarge,30.0G,16,55,3.438,1.88G,0,na,Intel Xeon E5-2680 v2,320G,SSD,2000.0M,High,250.0M,No,16000 +c3.8xlarge,EC2Family_Compute,EC2Type_C3,EC2Type_C3_8xLarge,60.0G,32,108,3.375,1.88G,0,na,Intel Xeon E5-2680 v2,640G,SSD,unset,10G,0M,No,0 +c3.large,EC2Family_Compute,EC2Type_C3,EC2Type_C3_Large,3.75G,2,7,3.5,1.88G,0,na,Intel Xeon E5-2680 v2,32G,SSD,unset,Moderate,0M,No,0 +c3.xlarge,EC2Family_Compute,EC2Type_C3,EC2Type_C3_xLarge,7.5G,4,14,3.5,1.88G,0,na,Intel Xeon E5-2680 v2,80G,SSD,500.0M,Moderate,62.5M,No,4000 +c4.2xlarge,EC2Family_Compute,EC2Type_C4,EC2Type_C4_2xLarge,15.0G,8,31,3.875,1.88G,0,na,Intel Xeon E5-2666 v3,EBS only,na,1000.0M,High,125.0M,na,8000 +c4.4xlarge,EC2Family_Compute,EC2Type_C4,EC2Type_C4_4xLarge,30.0G,16,62,3.875,1.88G,0,na,Intel Xeon E5-2666 v3,EBS only,na,2000.0M,High,250.0M,na,16000 +c4.8xlarge,EC2Family_Compute,EC2Type_C4,EC2Type_C4_8xLarge,60.0G,36,132,3.667,1.67G,0,na,Intel Xeon E5-2666 v3,EBS only,na,4000.0M,10G,500.0M,na,32000 +c4.large,EC2Family_Compute,EC2Type_C4,EC2Type_C4_Large,3.75G,2,8,4,1.88G,0,na,Intel Xeon E5-2666 v3,EBS only,na,500.0M,Moderate,62.5M,na,4000 +c4.xlarge,EC2Family_Compute,EC2Type_C4,EC2Type_C4_xLarge,7.5G,4,16,4,1.88G,0,na,Intel Xeon E5-2666 v3,EBS only,na,750.0M,High,93.75M,na,6000 +c5.12xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_12xLarge,96.0G,48,188,3.917,2.00G,0,na,Intel Xeon Platinum 8275L,EBS only,na,9500.0M,12G,1187.5M,na,40000 +c5.18xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_18xLarge,144.0G,72,281,3.903,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,19000.0M,25G,2375.0M,na,80000 +c5.24xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_24xLarge,192.0G,96,375,3.906,2.00G,0,na,Intel Xeon Platinum 8275L,EBS only,na,19000.0M,25G,2375.0M,na,80000 +c5.2xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_2xLarge,16.0G,8,39,4.875,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c5.4xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_4xLarge,32.0G,16,73,4.562,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c5.9xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_9xLarge,72.0G,36,139,3.861,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,9500.0M,10G,1187.5M,na,40000 +c5.large,EC2Family_Compute,EC2Type_C5,EC2Type_C5_Large,4.0G,2,10,5,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c5.metal,EC2Family_Compute,EC2Type_C5,EC2Type_C5_Metal,192.0G,96,375,3.906,2.00G,0,na,Intel Xeon Platinum 8275L,EBS only,na,19000.0M,25G,2375.0M,na,80000 +c5.xlarge,EC2Family_Compute,EC2Type_C5,EC2Type_C5_xLarge,8.0G,4,20,5,2.00G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c5a.12xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_12xLarge,96.0G,48,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,4750.0M,12G,594.0M,na,20000 +c5a.16xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_16xLarge,128.0G,64,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,6300.0M,20G,788.0M,na,26700 +c5a.24xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_24xLarge,192.0G,96,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,9500.0M,20G,1188.0M,na,40000 +c5a.2xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_2xLarge,16.0G,8,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,3170.0M,Up to 10G,396.0M,na,13300 +c5a.4xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_4xLarge,32.0G,16,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,3170.0M,Up to 10G,396.0M,na,13300 +c5a.8xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_8xLarge,64.0G,32,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,3170.0M,10G,396.0M,na,13300 +c5a.large,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_Large,4.0G,2,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,3170.0M,Up to 10G,396.0M,na,13300 +c5a.xlarge,EC2Family_Compute,EC2Type_C5A,EC2Type_C5A_xLarge,8.0G,4,0,0,2.00G,0,na,AMD EPYC 7R32,EBS only,na,3170.0M,Up to 10G,396.0M,na,13300 +c5ad.12xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_12xLarge,96.0G,48,0,0,2.00G,0,na,AMD EPYC 7R32,1800G,NVMe SSD,4750.0M,12G,594.0M,Yes,20000 +c5ad.16xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_16xLarge,128.0G,64,0,0,2.00G,0,na,AMD EPYC 7R32,2400G,NVMe SSD,6300.0M,20G,788.0M,Yes,26700 +c5ad.24xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_24xLarge,192.0G,96,0,0,2.00G,0,na,AMD EPYC 7R32,3800G,NVMe SSD,9500.0M,20G,1188.0M,Yes,40000 +c5ad.2xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_2xLarge,16.0G,8,0,0,2.00G,0,na,AMD EPYC 7R32,300G,SSD,3170.0M,Up to 10G,396.0M,Yes,13300 +c5ad.4xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_4xLarge,32.0G,16,0,0,2.00G,0,na,AMD EPYC 7R32,600G,NVMe SSD,3170.0M,Up to 10G,396.0M,Yes,13300 +c5ad.8xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_8xLarge,64.0G,32,0,0,2.00G,0,na,AMD EPYC 7R32,1200G,NVMe SSD,3170.0M,10G,396.0M,Yes,13300 +c5ad.large,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_Large,4.0G,2,0,0,2.00G,0,na,AMD EPYC 7R32,75G,SSD,3170.0M,Up to 10G,396.0M,Yes,13300 +c5ad.xlarge,EC2Family_Compute,EC2Type_C5AD,EC2Type_C5AD_xLarge,8.0G,4,0,0,2.00G,0,na,AMD EPYC 7R32,150G,SSD,3170.0M,Up to 10G,396.0M,Yes,13300 +c5d.12xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_12xLarge,96.0G,48,188,3.917,2.00G,0,na,Intel Xeon Platinum 8275L,1800G,NVMe SSD,9500.0M,12G,1187.5M,Yes,40000 +c5d.18xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_18xLarge,144.0G,72,281,3.903,2.00G,0,na,Intel Xeon Platinum 8124M,1800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +c5d.24xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_24xLarge,192.0G,96,375,3.906,2.00G,0,na,Intel Xeon Platinum 8275L,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +c5d.2xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_2xLarge,16.0G,8,39,4.875,2.00G,0,na,Intel Xeon Platinum 8124M,200G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c5d.4xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_4xLarge,32.0G,16,73,4.562,2.00G,0,na,Intel Xeon Platinum 8124M,400G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c5d.9xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_9xLarge,72.0G,36,139,3.861,2.00G,0,na,Intel Xeon Platinum 8124M,900G,SSD,9500.0M,10G,1187.5M,Yes,40000 +c5d.large,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_Large,4.0G,2,10,5,2.00G,0,na,Intel Xeon Platinum 8124M,50G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c5d.metal,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_Metal,192.0G,96,375,3.906,2.00G,0,na,Intel Xeon Platinum 8275L,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +c5d.xlarge,EC2Family_Compute,EC2Type_C5D,EC2Type_C5D_xLarge,8.0G,4,20,5,2.00G,0,na,Intel Xeon Platinum 8124M,100G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c5n.18xlarge,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_18xLarge,192.0G,72,281,3.903,2.67G,0,na,Intel Xeon Platinum 8124M,EBS only,na,19000.0M,100G,2375.0M,na,80000 +c5n.2xlarge,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_2xLarge,21.0G,8,39,4.875,2.62G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +c5n.4xlarge,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_4xLarge,42.0G,16,73,4.562,2.62G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +c5n.9xlarge,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_9xLarge,96.0G,36,139,3.861,2.67G,0,na,Intel Xeon Platinum 8124M,EBS only,na,9500.0M,50G,1187.5M,na,40000 +c5n.large,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_Large,5.25G,2,10,5,2.62G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +c5n.metal,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_Metal,192.0G,72,0,0,2.67G,0,na,Intel Xeon Platinum 8124M,EBS only,na,19000.0M,100G,2375.0M,na,80000 +c5n.xlarge,EC2Family_Compute,EC2Type_C5N,EC2Type_C5N_xLarge,10.5G,4,20,5,2.62G,0,na,Intel Xeon Platinum 8124M,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +c6a.12xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_12xLarge,96.0G,48,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,10000.0M,18.75G,1250.0M,na,40000 +c6a.16xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_16xLarge,128.0G,64,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,13300.0M,25G,1662.5M,na,53333 +c6a.24xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_24xLarge,192.0G,96,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,20000.0M,37.5G,2500.0M,na,80000 +c6a.2xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_2xLarge,16.0G,8,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +c6a.32xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_32xLarge,256.0G,128,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,26666.664M,50G,3333.333M,na,100000 +c6a.48xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_48xLarge,384.0G,192,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +c6a.4xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_4xLarge,32.0G,16,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +c6a.8xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_8xLarge,64.0G,32,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,12.5G,833.333M,na,26667 +c6a.large,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_Large,4.0G,2,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +c6a.metal,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_Metal,384.0G,192,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +c6a.xlarge,EC2Family_Compute,EC2Type_C6A,EC2Type_C6A_xLarge,8.0G,4,0,0,2.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +c6g.12xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_12xLarge,96.0G,48,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,14250.0M,20G,1781.25M,na,50000 +c6g.16xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_16xLarge,128.0G,64,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +c6g.2xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_2xLarge,16.0G,8,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c6g.4xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_4xLarge,32.0G,16,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c6g.8xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_8xLarge,64.0G,32,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,12G,1187.5M,na,40000 +c6g.large,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_Large,4.0G,2,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c6g.medium,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_Medium,2.0G,1,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c6g.metal,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_Metal,128.0G,64,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +c6g.xlarge,EC2Family_Compute,EC2Type_C6G,EC2Type_C6G_xLarge,8.0G,4,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +c6gd.12xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_12xLarge,96.0G,48,0,0,2.00G,0,na,AWS Graviton2,2850G,NVMe SSD,14250.0M,20G,1781.25M,Yes,50000 +c6gd.16xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_16xLarge,128.0G,64,0,0,2.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +c6gd.2xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_2xLarge,16.0G,8,0,0,2.00G,0,na,AWS Graviton2,474G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c6gd.4xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_4xLarge,32.0G,16,0,0,2.00G,0,na,AWS Graviton2,950G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c6gd.8xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_8xLarge,64.0G,32,0,0,2.00G,0,na,AWS Graviton2,1900G,SSD,9500.0M,12G,1187.5M,Yes,40000 +c6gd.large,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_Large,4.0G,2,0,0,2.00G,0,na,AWS Graviton2,118G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c6gd.medium,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_Medium,2.0G,1,0,0,2.00G,0,na,AWS Graviton2,59G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c6gd.metal,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_Metal,128.0G,64,0,0,2.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +c6gd.xlarge,EC2Family_Compute,EC2Type_C6GD,EC2Type_C6GD_xLarge,8.0G,4,0,0,2.00G,0,na,AWS Graviton2,237G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +c6gn.12xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_12xLarge,96.0G,48,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,28500.0M,75G,3562.5M,na,120000 +c6gn.16xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_16xLarge,128.0G,64,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,38000.0M,100G,4750.0M,na,160000 +c6gn.2xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_2xLarge,16.0G,8,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,Up to 25G,1187.5M,na,40000 +c6gn.4xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_4xLarge,32.0G,16,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,Up to 25G,1187.5M,na,40000 +c6gn.8xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_8xLarge,64.0G,32,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,50G,2375.0M,na,80000 +c6gn.large,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_Large,4.0G,2,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,Up to 25G,1187.5M,na,40000 +c6gn.medium,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_Medium,2.0G,1,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,Up to 16G,1187.5M,na,40000 +c6gn.xlarge,EC2Family_Compute,EC2Type_C6GN,EC2Type_C6GN_xLarge,8.0G,4,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,Up to 25G,1187.5M,na,40000 +c6i.12xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_12xLarge,96.0G,48,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,15000.0M,18.75G,1875.0M,na,60000 +c6i.16xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_16xLarge,128.0G,64,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,20000.0M,25G,2500.0M,na,80000 +c6i.24xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_24xLarge,192.0G,96,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,30000.0M,37.5G,3750.0M,na,120000 +c6i.2xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_2xLarge,16.0G,8,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c6i.32xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_32xLarge,256.0G,128,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +c6i.4xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_4xLarge,32.0G,16,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c6i.8xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_8xLarge,64.0G,32,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,12.5G,1250.0M,na,40000 +c6i.large,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_Large,4.0G,2,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c6i.metal,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_Metal,256.0G,128,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +c6i.xlarge,EC2Family_Compute,EC2Type_C6I,EC2Type_C6I_xLarge,8.0G,4,0,0,2.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c6id.12xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_12xLarge,96.0G,48,0,0,2.00G,0,na,Intel Xeon 8375C,2850G,NVMe SSD,15000.0M,18.75G,1875.0M,Yes,60000 +c6id.16xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_16xLarge,128.0G,64,0,0,2.00G,0,na,Intel Xeon 8375C,3800G,NVMe SSD,20000.0M,25G,2500.0M,Yes,80000 +c6id.24xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_24xLarge,192.0G,96,0,0,2.00G,0,na,Intel Xeon 8375C,5700G,NVMe SSD,30000.0M,37.5G,3750.0M,Yes,120000 +c6id.2xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_2xLarge,16.0G,8,0,0,2.00G,0,na,Intel Xeon 8375C,474G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +c6id.32xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_32xLarge,256.0G,128,0,0,2.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +c6id.4xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_4xLarge,32.0G,16,0,0,2.00G,0,na,Intel Xeon 8375C,950G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +c6id.8xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_8xLarge,64.0G,32,0,0,2.00G,0,na,Intel Xeon 8375C,1900G,SSD,10000.0M,12.5G,1250.0M,Yes,40000 +c6id.large,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_Large,4.0G,2,0,0,2.00G,0,na,Intel Xeon 8375C,118G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +c6id.metal,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_Metal,256.0G,128,0,0,2.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +c6id.xlarge,EC2Family_Compute,EC2Type_C6ID,EC2Type_C6ID_xLarge,8.0G,4,0,0,2.00G,0,na,Intel Xeon 8375C,237G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +c7g.12xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_12xLarge,96.0G,48,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,15000.0M,22.5G,1875.0M,na,60000 +c7g.16xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_16xLarge,128.0G,64,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,20000.0M,30G,2500.0M,na,80000 +c7g.2xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_2xLarge,16.0G,8,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,Up to 15G,1250.0M,na,40000 +c7g.4xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_4xLarge,32.0G,16,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,Up to 15G,1250.0M,na,40000 +c7g.8xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_8xLarge,64.0G,32,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,15G,1250.0M,na,40000 +c7g.large,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_Large,4.0G,2,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c7g.medium,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_Medium,2.0G,1,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +c7g.xlarge,EC2Family_Compute,EC2Type_C7G,EC2Type_C7G_xLarge,8.0G,4,0,0,2.00G,0,na,AWS Graviton3,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +cc2.8xlarge,N/A,EC2Type_CC2,EC2Type_CC2_8xLarge,60.5G,32,88,2.75,1.89G,0,na,Intel Xeon E5-2670,3360G,HDD,unset,10G,0M,na,0 +cr1.8xlarge,N/A,EC2Type_CR1,EC2Type_CR1_8xLarge,244.0G,32,88,2.75,7.62G,0,na,Intel Xeon E5-2670,240G,SSD,unset,10G,0M,No,0 +d2.2xlarge,EC2Family_Storage,EC2Type_D2,EC2Type_D2_2xLarge,61.0G,8,28,3.5,7.62G,0,na,Intel Xeon E5-2676 v3,12000G,HDD,1000.0M,High,125.0M,na,8000 +d2.4xlarge,EC2Family_Storage,EC2Type_D2,EC2Type_D2_4xLarge,122.0G,16,56,3.5,7.62G,0,na,Intel Xeon E5-2676 v3,24000G,HDD,2000.0M,High,250.0M,na,16000 +d2.8xlarge,EC2Family_Storage,EC2Type_D2,EC2Type_D2_8xLarge,244.0G,36,116,3.222,6.78G,0,na,Intel Xeon E5-2676 v3,48000G,HDD,4000.0M,10G,500.0M,na,32000 +d2.xlarge,EC2Family_Storage,EC2Type_D2,EC2Type_D2_xLarge,30.5G,4,14,3.5,7.62G,0,na,Intel Xeon E5-2676 v3,6000G,HDD,750.0M,Moderate,93.75M,na,6000 +d3.2xlarge,EC2Family_Storage,EC2Type_D3,EC2Type_D3_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon Platinum 8259,11880G,HDD,2800.0M,Up to 15G,350.0M,na,15000 +d3.4xlarge,EC2Family_Storage,EC2Type_D3,EC2Type_D3_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon Platinum 8259,23760G,HDD,2800.0M,Up to 15G,350.0M,na,15000 +d3.8xlarge,EC2Family_Storage,EC2Type_D3,EC2Type_D3_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon Platinum 8259,47520G,HDD,5000.0M,25G,625.0M,na,30000 +d3.xlarge,EC2Family_Storage,EC2Type_D3,EC2Type_D3_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon Platinum 8259,5940G,HDD,2800.0M,Up to 15G,350.0M,na,15000 +d3en.12xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon Platinum 8259,335520G,HDD,7000.0M,75G,875.0M,na,40000 +d3en.2xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon Platinum 8259,55920G,HDD,2800.0M,Up to 25G,350.0M,na,15000 +d3en.4xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_4xLarge,64.0G,16,0,0,4.00G,0,na,Intel Xeon Platinum 8259,111840G,HDD,2800.0M,25G,350.0M,na,15000 +d3en.6xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_6xLarge,96.0G,24,0,0,4.00G,0,na,Intel Xeon Platinum 8259,167760G,HDD,unset,40G,0M,na,0 +d3en.8xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_8xLarge,128.0G,32,0,0,4.00G,0,na,Intel Xeon Platinum 8259,223680G,HDD,5000.0M,50G,625.0M,na,30000 +d3en.xlarge,EC2Family_Storage,EC2Type_D3EN,EC2Type_D3EN_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon Platinum 8259,27960G,HDD,2800.0M,Up to 25G,350.0M,na,15000 +dl1.24xlarge,EC2Family_Accelerated,EC2Type_DL1,EC2Type_DL1_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8275L,4TB,NVMe SSD,19000.0M,4x 100G,2375.0M,No,80000 +f1.16xlarge,EC2Family_Accelerated,EC2Type_F1,EC2Type_F1_16xLarge,976.0G,64,201,3.141,15.25G,8,Xilinx Virtex UltraScale+ VU9P,Intel Xeon E5-2686 v4,3760G,NVMe SSD,14000.0M,25G,1750.0M,Yes,75000 +f1.2xlarge,EC2Family_Accelerated,EC2Type_F1,EC2Type_F1_2xLarge,122.0G,8,31,3.875,15.25G,1,Xilinx Virtex UltraScale+ VU9P,Intel Xeon E5-2686 v4,470G,SSD,1700.0M,Up to 10G,212.5M,Yes,12000 +f1.4xlarge,EC2Family_Accelerated,EC2Type_F1,EC2Type_F1_4xLarge,244.0G,16,58,3.625,15.25G,2,Xilinx Virtex UltraScale+ VU9P,Intel Xeon E5-2686 v4,940G,SSD,3500.0M,Up to 10G,437.5M,Yes,44000 +g2.2xlarge,EC2Family_Accelerated,EC2Type_G2,EC2Type_G2_2xLarge,15.0G,8,26,3.25,1.88G,1,NVIDIA GRID K520,Intel Xeon E5-2670,60G,SSD,1000.0M,Moderate,125.0M,No,8000 +g2.8xlarge,EC2Family_Accelerated,EC2Type_G2,EC2Type_G2_8xLarge,60.0G,32,104,3.25,1.88G,4,NVIDIA GRID K520,Intel Xeon E5-2670,240G,SSD,unset,High,0M,No,0 +g3.16xlarge,EC2Family_Accelerated,EC2Type_G3,EC2Type_G3_16xLarge,488.0G,64,201,3.141,7.62G,4,NVIDIA Tesla M60,Intel Xeon E5-2686 v4,EBS only,na,14000.0M,25G,1750.0M,na,80000 +g3.4xlarge,EC2Family_Accelerated,EC2Type_G3,EC2Type_G3_4xLarge,122.0G,16,58,3.625,7.62G,1,NVIDIA Tesla M60,Intel Xeon E5-2686 v4,EBS only,na,3500.0M,Up to 10G,437.5M,na,20000 +g3.8xlarge,EC2Family_Accelerated,EC2Type_G3,EC2Type_G3_8xLarge,244.0G,32,97,3.031,7.62G,2,NVIDIA Tesla M60,Intel Xeon E5-2686 v4,EBS only,na,7000.0M,10G,875.0M,na,40000 +g3s.xlarge,EC2Family_Accelerated,EC2Type_G3S,EC2Type_G3S_xLarge,30.5G,4,13,3.25,7.62G,1,NVIDIA Tesla M60,Intel Xeon E5-2686 v4,EBS only,na,850.0M,Up to 10G,106.25M,na,5000 +g4ad.16xlarge,EC2Family_Accelerated,EC2Type_G4AD,EC2Type_G4AD_16xLarge,256.0G,64,0,0,4.00G,4,AMD Radeon Pro V520,AMD EPYC 7R32,2400G,NVMe SSD,6300.0M,25G,787.5M,Yes,26667 +g4ad.2xlarge,EC2Family_Accelerated,EC2Type_G4AD,EC2Type_G4AD_2xLarge,32.0G,8,0,0,4.00G,1,AMD Radeon Pro V520,AMD EPYC 7R32,300G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 +g4ad.4xlarge,EC2Family_Accelerated,EC2Type_G4AD,EC2Type_G4AD_4xLarge,64.0G,16,0,0,4.00G,1,AMD Radeon Pro V520,AMD EPYC 7R32,600G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 +g4ad.8xlarge,EC2Family_Accelerated,EC2Type_G4AD,EC2Type_G4AD_8xLarge,128.0G,32,0,0,4.00G,2,AMD Radeon Pro V520,AMD EPYC 7R32,1200G,SSD,3170.0M,15G,396.25M,Yes,13333 +g4ad.xlarge,EC2Family_Accelerated,EC2Type_G4AD,EC2Type_G4AD_xLarge,16.0G,4,0,0,4.00G,1,AMD Radeon Pro V520,AMD EPYC 7R32,150G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 +g4dn.12xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_12xLarge,192.0G,48,0,0,4.00G,4,NVIDIA T4 Tensor Core,Intel Xeon Family,900G,SSD,9500.0M,50G,1187.5M,Yes,40000 +g4dn.16xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_16xLarge,256.0G,64,0,0,4.00G,1,NVIDIA T4 Tensor Core,Intel Xeon Family,900G,SSD,9500.0M,50G,1187.5M,Yes,40000 +g4dn.2xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_2xLarge,32.0G,8,0,0,4.00G,1,NVIDIA T4 Tensor Core,Intel Xeon Family,225G,SSD,3500.0M,Up to 25G,437.5M,Yes,20000 +g4dn.4xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_4xLarge,64.0G,16,0,0,4.00G,1,NVIDIA T4 Tensor Core,Intel Xeon Family,225G,SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +g4dn.8xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_8xLarge,128.0G,32,0,0,4.00G,1,NVIDIA T4 Tensor Core,Intel Xeon Family,900G,SSD,9500.0M,50G,1187.5M,Yes,40000 +g4dn.metal,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_Metal,384.0G,96,0,0,4.00G,8,NVIDIA T4 Tensor Core,Intel Xeon Family,1800G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +g4dn.xlarge,EC2Family_Accelerated,EC2Type_G4DN,EC2Type_G4DN_xLarge,16.0G,4,0,0,4.00G,1,NVIDIA T4 Tensor Core,Intel Xeon Family,125G,SSD,3500.0M,Up to 25G,437.5M,Yes,20000 +g5.12xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_12xLarge,192.0G,48,0,0,4.00G,4,NVIDIA A10G,AMD EPYC 7R32,3800G,SSD,16000.0M,40G,2000.0M,Yes,65000 +g5.16xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_16xLarge,256.0G,64,0,0,4.00G,1,NVIDIA A10G,AMD EPYC 7R32,1900G,SSD,16000.0M,25G,2000.0M,Yes,65000 +g5.24xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_24xLarge,384.0G,96,0,0,4.00G,4,NVIDIA A10G,AMD EPYC 7R32,3800G,SSD,19000.0M,50G,2375.0M,Yes,80000 +g5.2xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_2xLarge,32.0G,8,0,0,4.00G,1,NVIDIA A10G,AMD EPYC 7R32,450G,SSD,3500.0M,Up to 10G,437.5M,Yes,15000 +g5.48xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_48xLarge,768.0G,192,0,0,4.00G,8,NVIDIA A10G,AMD EPYC 7R32,7600G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +g5.4xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_4xLarge,64.0G,16,0,0,4.00G,1,NVIDIA A10G,AMD EPYC 7R32,600G,SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +g5.8xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_8xLarge,128.0G,32,0,0,4.00G,1,NVIDIA A10G,AMD EPYC 7R32,900G,SSD,16000.0M,25G,2000.0M,Yes,65000 +g5.xlarge,EC2Family_Accelerated,EC2Type_G5,EC2Type_G5_xLarge,16.0G,4,0,0,4.00G,1,NVIDIA A10G,AMD EPYC 7R32,250G,SSD,3500.0M,Up to 10G,437.5M,Yes,15000 +g5g.16xlarge,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_16xLarge,128.0G,64,0,0,2.00G,2,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +g5g.2xlarge,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_2xLarge,16.0G,8,0,0,2.00G,1,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +g5g.4xlarge,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_4xLarge,32.0G,16,0,0,2.00G,1,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +g5g.8xlarge,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_8xLarge,64.0G,32,0,0,2.00G,1,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,9500.0M,12G,1187.5M,na,40000 +g5g.metal,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_Metal,128.0G,64,0,0,2.00G,2,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +g5g.xlarge,EC2Family_Accelerated,EC2Type_G5G,EC2Type_G5G_xLarge,8.0G,4,0,0,2.00G,1,NVIDIA T4G Tensor Core,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +h1.16xlarge,EC2Family_Storage,EC2Type_H1,EC2Type_H1_16xLarge,256.0G,64,201,3.141,4.00G,0,na,Intel Xeon E5-2686 v4,16000G,HDD,14000.0M,25G,1750.0M,na,80000 +h1.2xlarge,EC2Family_Storage,EC2Type_H1,EC2Type_H1_2xLarge,32.0G,8,31,3.875,4.00G,0,na,Intel Xeon E5-2686 v4,2000G,HDD,1750.0M,Up to 10G,218.75M,na,12000 +h1.4xlarge,EC2Family_Storage,EC2Type_H1,EC2Type_H1_4xLarge,64.0G,16,58,3.625,4.00G,0,na,Intel Xeon E5-2686 v4,4000G,HDD,3500.0M,Up to 10G,437.5M,na,20000 +h1.8xlarge,EC2Family_Storage,EC2Type_H1,EC2Type_H1_8xLarge,128.0G,32,97,3.031,4.00G,0,na,Intel Xeon E5-2686 v4,8000G,HDD,7000.0M,10G,875.0M,na,40000 +hpc6a.48xlarge,EC2Family_Compute,EC2Type_HPC6A,EC2Type_HPC6A_48xLarge,384.0G,96,,,4.00G,0,na,AMD EPYC 7R13,,,,25G,,, +hs1.8xlarge,EC2Family_Storage,EC2Type_HS1,EC2Type_HS1_8xLarge,117.0G,16,35,2.188,7.31G,0,na,Intel Xeon E5-2650,48000G,HDD,unset,10G,0M,na,0 +i2.2xlarge,EC2Family_Storage,EC2Type_I2,EC2Type_I2_2xLarge,61.0G,8,27,3.375,7.62G,0,na,Intel Xeon E5-2670 v2,1600G,SSD,1000.0M,High,125.0M,Yes,8000 +i2.4xlarge,EC2Family_Storage,EC2Type_I2,EC2Type_I2_4xLarge,122.0G,16,53,3.312,7.62G,0,na,Intel Xeon E5-2670 v2,3200G,SSD,2000.0M,High,250.0M,Yes,16000 +i2.8xlarge,EC2Family_Storage,EC2Type_I2,EC2Type_I2_8xLarge,244.0G,32,104,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,6400G,SSD,unset,10G,0M,Yes,0 +i2.large,EC2Family_Storage,EC2Type_I2,EC2Type_I2_Large,15.0G,2,7,3.5,7.50G,0,na,Intel Xeon E5-2670 v2,EBS only,na,unset,Moderate,0M,na,0 +i2.xlarge,EC2Family_Storage,EC2Type_I2,EC2Type_I2_xLarge,30.5G,4,14,3.5,7.62G,0,na,Intel Xeon E5-2670 v2,800G,SSD,500.0M,Moderate,62.5M,Yes,4000 +i3.16xlarge,EC2Family_Storage,EC2Type_I3,EC2Type_I3_16xLarge,488.0G,64,201,3.141,7.62G,0,na,Intel Xeon E5-2686 v4,15200G,NVMe SSD,14000.0M,25G,1750.0M,Yes,65000 +i3.2xlarge,EC2Family_Storage,EC2Type_I3,EC2Type_I3_2xLarge,61.0G,8,31,3.875,7.62G,0,na,Intel Xeon E5-2686 v4,1900G,SSD,1700.0M,Up to 10G,212.5M,Yes,12000 +i3.4xlarge,EC2Family_Storage,EC2Type_I3,EC2Type_I3_4xLarge,122.0G,16,58,3.625,7.62G,0,na,Intel Xeon E5-2686 v4,3800G,NVMe SSD,3500.0M,Up to 10G,437.5M,Yes,16000 +i3.8xlarge,EC2Family_Storage,EC2Type_I3,EC2Type_I3_8xLarge,244.0G,32,97,3.031,7.62G,0,na,Intel Xeon E5-2686 v4,7600G,NVMe SSD,7000.0M,10G,875.0M,Yes,32500 +i3.large,EC2Family_Storage,EC2Type_I3,EC2Type_I3_Large,15.25G,2,8,4,7.62G,0,na,Intel Xeon E5-2686 v4,475G,SSD,425.0M,Up to 10G,53.13M,Yes,3000 +i3.metal,EC2Family_Storage,EC2Type_I3,EC2Type_I3_Metal,512.0G,72,208,2.889,7.11G,0,na,Intel Xeon E5-2686 v4,15200G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +i3.xlarge,EC2Family_Storage,EC2Type_I3,EC2Type_I3_xLarge,30.5G,4,16,4,7.62G,0,na,Intel Xeon E5-2686 v4,950G,SSD,850.0M,Up to 10G,106.25M,Yes,6000 +i3en.12xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_12xLarge,384.0G,48,168,3.5,8.00G,0,na,Intel Xeon Platinum 8175,30000G,NVMe SSD,9500.0M,50G,1187.5M,Yes,40000 +i3en.24xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_24xLarge,768.0G,96,337,3.51,8.00G,0,na,Intel Xeon Platinum 8175,60000G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +i3en.2xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_2xLarge,64.0G,8,37,4.625,8.00G,0,na,Intel Xeon Platinum 8175,5000G,NVMe SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +i3en.3xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_3xLarge,96.0G,12,0,0,8.00G,0,na,Intel Xeon Platinum 8175,7500G,SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +i3en.6xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_6xLarge,192.0G,24,0,0,8.00G,0,na,Intel Xeon Platinum 8175,15000G,NVMe SSD,4750.0M,25G,593.75M,Yes,20000 +i3en.large,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_Large,16.0G,2,10,5,8.00G,0,na,Intel Xeon Platinum 8175,1250G,SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +i3en.metal,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_Metal,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8175,60000G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +i3en.xlarge,EC2Family_Storage,EC2Type_I3EN,EC2Type_I3EN_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon Platinum 8175,2500G,SSD,4750.0M,Up to 25G,593.75M,Yes,20000 +i4i.16xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon 8375C,15000G,NVMe SSD,20000.0M,37.5G,2500.0M,Yes,80000 +i4i.2xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon 8375C,1875G,SSD,10000.0M,Up to 12G,1250.0M,Yes,40000 +i4i.32xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_32xLarge,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,30000G,NVMe SSD,40000.0M,75G,5000.0M,Yes,160000 +i4i.4xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon 8375C,3750G,SSD,10000.0M,Up to 25G,1250.0M,Yes,40000 +i4i.8xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon 8375C,7500G,NVMe SSD,10000.0M,18.75G,1250.0M,Yes,40000 +i4i.large,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon 8375C,468G,SSD,10000.0M,Up to 10G,1250.0M,Yes,40000 +i4i.metal,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_Metal,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,30000G,NVMe SSD,40000.0M,75G,5000.0M,Yes,160000 +i4i.xlarge,EC2Family_Storage,EC2Type_I4I,EC2Type_I4I_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon 8375C,937G,SSD,10000.0M,Up to 10G,1250.0M,Yes,40000 +im4gn.16xlarge,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_16xLarge,256.0G,64,0,0,4.00G,0,na,AWS Graviton2,30000G,NVMe SSD,38000.0M,100G,4750.0M,Yes,160000 +im4gn.2xlarge,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_2xLarge,32.0G,8,0,0,4.00G,0,na,AWS Graviton2,3750G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +im4gn.4xlarge,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_4xLarge,64.0G,16,0,0,4.00G,0,na,AWS Graviton2,7500G,SSD,9500.0M,25G,1187.5M,Yes,40000 +im4gn.8xlarge,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_8xLarge,128.0G,32,0,0,4.00G,0,na,AWS Graviton2,15000G,NVMe SSD,19000.0M,50G,2375.0M,Yes,80000 +im4gn.large,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_Large,8.0G,2,0,0,4.00G,0,na,AWS Graviton2,937G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +im4gn.xlarge,EC2Family_Storage,EC2Type_IM4GN,EC2Type_IM4GN_xLarge,16.0G,4,0,0,4.00G,0,na,AWS Graviton2,1875G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +inf1.24xlarge,EC2Family_Accelerated,EC2Type_INF1,EC2Type_INF1_24xLarge,192.0G,96,0,0,2.00G,0,na,Intel Xeon Platinum 8275CL,EBS only,na,19000.0M,100G,2375.0M,na,80000 +inf1.2xlarge,EC2Family_Accelerated,EC2Type_INF1,EC2Type_INF1_2xLarge,16.0G,8,0,0,2.00G,0,na,Intel Xeon Platinum 8275CL,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +inf1.6xlarge,EC2Family_Accelerated,EC2Type_INF1,EC2Type_INF1_6xLarge,48.0G,24,0,0,2.00G,0,na,Intel Xeon Platinum 8275CL,EBS only,na,4750.0M,25G,593.75M,na,20000 +inf1.xlarge,EC2Family_Accelerated,EC2Type_INF1,EC2Type_INF1_xLarge,8.0G,4,0,0,2.00G,0,na,Intel Xeon Platinum 8275CL,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +is4gen.2xlarge,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_2xLarge,48.0G,8,0,0,6.00G,0,na,AWS Graviton2,7500G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +is4gen.4xlarge,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_4xLarge,96.0G,16,0,0,6.00G,0,na,AWS Graviton2,15000G,NVMe SSD,9500.0M,25G,1187.5M,Yes,40000 +is4gen.8xlarge,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_8xLarge,192.0G,32,0,0,6.00G,0,na,AWS Graviton2,30000G,NVMe SSD,19000.0M,50G,2375.0M,Yes,80000 +is4gen.large,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_Large,12.0G,2,0,0,6.00G,0,na,AWS Graviton2,1875G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +is4gen.medium,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_Medium,6.0G,1,0,0,6.00G,0,na,AWS Graviton2,937G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +is4gen.xlarge,EC2Family_Storage,EC2Type_IS4GEN,EC2Type_IS4GEN_xLarge,24.0G,4,0,0,6.00G,0,na,AWS Graviton2,3750G,SSD,9500.0M,Up to 25G,1187.5M,Yes,40000 +m1.large,EC2Family_General,EC2Type_M1,EC2Type_M1_Large,7.5G,2,4,2,3.75G,0,na,Intel Xeon Family,840G,HDD,500.0M,Moderate,62.5M,na,4000 +m1.medium,EC2Family_General,EC2Type_M1,EC2Type_M1_Medium,3.75G,1,2,2,3.75G,0,na,Intel Xeon Family,410G,HDD,unset,Moderate,0M,na,0 +m1.small,EC2Family_General,EC2Type_M1,EC2Type_M1_Small,1.7G,1,1,1,1.70G,0,na,Intel Xeon Family,160G,HDD,unset,Low,0M,na,0 +m1.xlarge,EC2Family_General,EC2Type_M1,EC2Type_M1_xLarge,15.0G,4,8,2,3.75G,0,na,Intel Xeon Family,1680G,HDD,1000.0M,High,125.0M,na,8000 +m2.2xlarge,EC2Family_General,EC2Type_M2,EC2Type_M2_2xLarge,34.2G,4,13,3.25,8.55G,0,na,Intel Xeon Family,850G,HDD,500.0M,Moderate,62.5M,na,4000 +m2.4xlarge,EC2Family_General,EC2Type_M2,EC2Type_M2_4xLarge,68.4G,8,26,3.25,8.55G,0,na,Intel Xeon Family,1680G,HDD,1000.0M,High,125.0M,na,8000 +m2.xlarge,EC2Family_General,EC2Type_M2,EC2Type_M2_xLarge,17.1G,2,6.5,3.25,8.55G,0,na,Intel Xeon Family,420G,HDD,unset,Moderate,0M,na,0 +m3.2xlarge,EC2Family_General,EC2Type_M3,EC2Type_M3_2xLarge,30.0G,8,26,3.25,3.75G,0,na,Intel Xeon E5-2670 v2,160G,SSD,1000.0M,High,125.0M,No,8000 +m3.large,EC2Family_General,EC2Type_M3,EC2Type_M3_Large,7.5G,2,6.5,3.25,3.75G,0,na,Intel Xeon E5-2670 v2,32G,SSD,unset,Moderate,0M,No,0 +m3.medium,EC2Family_General,EC2Type_M3,EC2Type_M3_Medium,3.75G,1,3,3,3.75G,0,na,Intel Xeon E5-2670 v2,4G,SSD,unset,Moderate,0M,No,0 +m3.xlarge,EC2Family_General,EC2Type_M3,EC2Type_M3_xLarge,15.0G,4,13,3.25,3.75G,0,na,Intel Xeon E5-2670 v2,80G,SSD,500.0M,High,62.5M,No,4000 +m4.10xlarge,EC2Family_General,EC2Type_M4,EC2Type_M4_10xLarge,160.0G,40,124.5,3.112,4.00G,0,na,Intel Xeon E5-2676 v3,EBS only,na,8000.0M,10G,500.0M,na,32000 +m4.16xlarge,EC2Family_General,EC2Type_M4,EC2Type_M4_16xLarge,256.0G,64,188,2.938,4.00G,0,na,Intel Xeon E5-2686 v4,EBS only,na,10000.0M,25G,1250.0M,na,65000 +m4.2xlarge,EC2Family_General,EC2Type_M4,EC2Type_M4_2xLarge,32.0G,8,26,3.25,4.00G,0,na,Intel Xeon E5-2676 v3,EBS only,na,1000.0M,High,125.0M,na,8000 +m4.4xlarge,EC2Family_General,EC2Type_M4,EC2Type_M4_4xLarge,64.0G,16,53.5,3.344,4.00G,0,na,Intel Xeon E5-2676 v3,EBS only,na,2000.0M,High,250.0M,na,16000 +m4.large,EC2Family_General,EC2Type_M4,EC2Type_M4_Large,8.0G,2,6.5,3.25,4.00G,0,na,Intel Xeon E5-2676 v3,EBS only,na,450.0M,Moderate,56.25M,na,3600 +m4.xlarge,EC2Family_General,EC2Type_M4,EC2Type_M4_xLarge,16.0G,4,13,3.25,4.00G,0,na,Intel Xeon E5-2676 v3,EBS only,na,750.0M,High,93.75M,na,6000 +m5.12xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_12xLarge,192.0G,48,168,3.5,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,9500.0M,10G,1187.5M,na,40000 +m5.16xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_16xLarge,256.0G,64,256,4,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,13600.0M,20G,1700.0M,na,60000 +m5.24xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_24xLarge,384.0G,96,337,3.51,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,19000.0M,25G,2375.0M,na,80000 +m5.2xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_2xLarge,32.0G,8,37,4.625,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +m5.4xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_4xLarge,64.0G,16,70,4.375,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +m5.8xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_8xLarge,128.0G,32,128,4,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,6800.0M,10G,850.0M,na,30000 +m5.large,EC2Family_General,EC2Type_M5,EC2Type_M5_Large,8.0G,2,10,5,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +m5.metal,EC2Family_General,EC2Type_M5,EC2Type_M5_Metal,384.0G,96,345,3.594,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,19000.0M,25G,2375.0M,na,80000 +m5.xlarge,EC2Family_General,EC2Type_M5,EC2Type_M5_xLarge,16.0G,4,16,4,4.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +m5a.12xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_12xLarge,192.0G,48,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,6780.0M,10G,847.5M,na,30000 +m5a.16xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_16xLarge,256.0G,64,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,9500.0M,12G,1187.5M,na,40000 +m5a.24xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_24xLarge,384.0G,96,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,13570.0M,20G,1696.25M,na,60000 +m5a.2xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_2xLarge,32.0G,8,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +m5a.4xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_4xLarge,64.0G,16,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +m5a.8xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_8xLarge,128.0G,32,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m5a.large,EC2Family_General,EC2Type_M5A,EC2Type_M5A_Large,8.0G,2,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +m5a.xlarge,EC2Family_General,EC2Type_M5A,EC2Type_M5A_xLarge,16.0G,4,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +m5ad.12xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_12xLarge,192.0G,48,0,0,4.00G,0,na,AMD EPYC 7571,1800G,NVMe SSD,6780.0M,10G,847.5M,Yes,30000 +m5ad.16xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_16xLarge,256.0G,64,0,0,4.00G,0,na,AMD EPYC 7571,2400G,NVMe SSD,9500.0M,12G,1187.5M,Yes,40000 +m5ad.24xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_24xLarge,384.0G,96,0,0,4.00G,0,na,AMD EPYC 7571,3600G,NVMe SSD,13570.0M,20G,1696.25M,Yes,60000 +m5ad.2xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_2xLarge,32.0G,8,0,0,4.00G,0,na,AMD EPYC 7571,300G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +m5ad.4xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_4xLarge,64.0G,16,0,0,4.00G,0,na,AMD EPYC 7571,600G,NVMe SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +m5ad.8xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_8xLarge,128.0G,32,0,0,4.00G,0,na,AMD EPYC 7571,1200G,NVMe SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m5ad.large,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_Large,8.0G,2,0,0,4.00G,0,na,AMD EPYC 7571,75G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +m5ad.xlarge,EC2Family_General,EC2Type_M5AD,EC2Type_M5AD_xLarge,16.0G,4,0,0,4.00G,0,na,AMD EPYC 7571,150G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +m5d.12xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_12xLarge,192.0G,48,168,3.5,4.00G,0,na,Intel Xeon Platinum 8175,1800G,NVMe SSD,9500.0M,10G,1187.5M,Yes,40000 +m5d.16xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_16xLarge,256.0G,64,256,4,4.00G,0,na,Intel Xeon Platinum 8175,2400G,NVMe SSD,13600.0M,20G,1700.0M,Yes,60000 +m5d.24xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_24xLarge,384.0G,96,337,3.51,4.00G,0,na,Intel Xeon Platinum 8175,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +m5d.2xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_2xLarge,32.0G,8,37,4.625,4.00G,0,na,Intel Xeon Platinum 8175,300G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +m5d.4xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_4xLarge,64.0G,16,70,4.375,4.00G,0,na,Intel Xeon Platinum 8175,600G,NVMe SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +m5d.8xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_8xLarge,128.0G,32,128,4,4.00G,0,na,Intel Xeon Platinum 8175,1200G,NVMe SSD,6800.0M,10G,850.0M,Yes,30000 +m5d.large,EC2Family_General,EC2Type_M5D,EC2Type_M5D_Large,8.0G,2,10,5,4.00G,0,na,Intel Xeon Platinum 8175,75G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +m5d.metal,EC2Family_General,EC2Type_M5D,EC2Type_M5D_Metal,384.0G,96,345,3.594,4.00G,0,na,Intel Xeon Platinum 8175,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +m5d.xlarge,EC2Family_General,EC2Type_M5D,EC2Type_M5D_xLarge,16.0G,4,16,4,4.00G,0,na,Intel Xeon Platinum 8175,150G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +m5dn.12xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon Platinum 8259,1800G,NVMe SSD,9500.0M,50G,1187.5M,Yes,40000 +m5dn.16xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_16xLarge,256.0G,64,0,0,4.00G,0,na,Intel Xeon Platinum 8259,2400G,NVMe SSD,13600.0M,75G,1700.0M,Yes,60000 +m5dn.24xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_24xLarge,384.0G,96,0,0,4.00G,0,na,Intel Xeon Platinum 8259,3600G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +m5dn.2xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon Platinum 8259,300G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +m5dn.4xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_4xLarge,64.0G,16,0,0,4.00G,0,na,Intel Xeon Platinum 8259,600G,NVMe SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +m5dn.8xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_8xLarge,128.0G,32,0,0,4.00G,0,na,Intel Xeon Platinum 8259,1200G,NVMe SSD,6800.0M,25G,850.0M,Yes,30000 +m5dn.large,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon Platinum 8259,75G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +m5dn.metal,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_Metal,384.0G,96,0,0,4.00G,0,na,Intel Xeon Platinum 8259,3600G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +m5dn.xlarge,EC2Family_General,EC2Type_M5DN,EC2Type_M5DN_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon Platinum 8259,150G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +m5n.12xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,9500.0M,50G,1187.5M,na,40000 +m5n.16xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_16xLarge,256.0G,64,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,13600.0M,75G,1700.0M,na,60000 +m5n.24xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_24xLarge,384.0G,96,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,19000.0M,100G,2375.0M,na,80000 +m5n.2xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +m5n.4xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_4xLarge,64.0G,16,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +m5n.8xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_8xLarge,128.0G,32,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,6800.0M,25G,850.0M,na,30000 +m5n.large,EC2Family_General,EC2Type_M5N,EC2Type_M5N_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +m5n.metal,EC2Family_General,EC2Type_M5N,EC2Type_M5N_Metal,384.0G,96,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,19000.0M,100G,2375.0M,na,80000 +m5n.xlarge,EC2Family_General,EC2Type_M5N,EC2Type_M5N_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +m5zn.12xlarge,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,19000.0M,100G,2375.0M,na,80000 +m5zn.2xlarge,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,3170.0M,Up to 25G,396.25M,na,13333 +m5zn.3xlarge,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_3xLarge,48.0G,12,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +m5zn.6xlarge,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_6xLarge,96.0G,24,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,9500.0M,50G,1187.5M,na,40000 +m5zn.large,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,3170.0M,Up to 25G,396.25M,na,13333 +m5zn.metal,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_Metal,192.0G,48,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,19000.0M,100G,2375.0M,na,80000 +m5zn.xlarge,EC2Family_General,EC2Type_M5ZN,EC2Type_M5ZN_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,3170.0M,Up to 25G,396.25M,na,13333 +m6a.12xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_12xLarge,192.0G,48,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,10000.0M,18.75G,1250.0M,na,40000 +m6a.16xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_16xLarge,256.0G,64,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,13300.0M,25G,1662.5M,na,53333 +m6a.24xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_24xLarge,384.0G,96,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,20000.0M,37.5G,2500.0M,na,80000 +m6a.2xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_2xLarge,32.0G,8,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.666664M,Up to 12.5G,833.333333M,na,26667 +m6a.32xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_32xLarge,512.0G,128,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,26666.666664M,50G,3333.333333M,na,100000 +m6a.48xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_48xLarge,768.0G,192,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +m6a.4xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_4xLarge,64.0G,16,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.666664M,Up to 12.5G,833.333333M,na,26667 +m6a.8xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_8xLarge,128.0G,32,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.666664M,12.5G,833.333333M,na,26667 +m6a.large,EC2Family_General,EC2Type_M6A,EC2Type_M6A_Large,8.0G,2,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.666664M,Up to 12.5G,833.333333M,na,26667 +m6a.metal,EC2Family_General,EC2Type_M6A,EC2Type_M6A_Metal,768.0G,192,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +m6a.xlarge,EC2Family_General,EC2Type_M6A,EC2Type_M6A_xLarge,16.0G,4,0,0,4.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.666664M,Up to 12.5G,833.333333M,na,26667 +m6g.12xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_12xLarge,192.0G,48,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,14250.0M,20G,1781.25M,na,50000 +m6g.16xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_16xLarge,256.0G,64,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +m6g.2xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_2xLarge,32.0G,8,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m6g.4xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_4xLarge,64.0G,16,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m6g.8xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_8xLarge,128.0G,32,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,12G,1187.5M,na,40000 +m6g.large,EC2Family_General,EC2Type_M6G,EC2Type_M6G_Large,8.0G,2,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m6g.medium,EC2Family_General,EC2Type_M6G,EC2Type_M6G_Medium,4.0G,1,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m6g.metal,EC2Family_General,EC2Type_M6G,EC2Type_M6G_Metal,256.0G,64,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +m6g.xlarge,EC2Family_General,EC2Type_M6G,EC2Type_M6G_xLarge,16.0G,4,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +m6gd.12xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_12xLarge,192.0G,48,0,0,4.00G,0,na,AWS Graviton2,2850G,NVMe SSD,14250.0M,20G,1781.25M,Yes,50000 +m6gd.16xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_16xLarge,256.0G,64,0,0,4.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +m6gd.2xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_2xLarge,32.0G,8,0,0,4.00G,0,na,AWS Graviton2,474G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m6gd.4xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_4xLarge,64.0G,16,0,0,4.00G,0,na,AWS Graviton2,950G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m6gd.8xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_8xLarge,128.0G,32,0,0,4.00G,0,na,AWS Graviton2,1900G,SSD,9500.0M,12G,1187.5M,Yes,40000 +m6gd.large,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_Large,8.0G,2,0,0,4.00G,0,na,AWS Graviton2,118G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m6gd.medium,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_Medium,4.0G,1,0,0,4.00G,0,na,AWS Graviton2,59G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m6gd.metal,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_Metal,256.0G,64,0,0,4.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +m6gd.xlarge,EC2Family_General,EC2Type_M6GD,EC2Type_M6GD_xLarge,16.0G,4,0,0,4.00G,0,na,AWS Graviton2,237G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +m6i.12xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,15000.0M,18.75G,1875.0M,na,60000 +m6i.16xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_16xLarge,256.0G,64,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,20000.0M,25G,2500.0M,na,80000 +m6i.24xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_24xLarge,384.0G,96,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,30000.0M,37.5G,3750.0M,na,120000 +m6i.2xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +m6i.32xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_32xLarge,512.0G,128,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +m6i.4xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_4xLarge,64.0G,16,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +m6i.8xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_8xLarge,128.0G,32,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,12.5G,1250.0M,na,40000 +m6i.large,EC2Family_General,EC2Type_M6I,EC2Type_M6I_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +m6i.metal,EC2Family_General,EC2Type_M6I,EC2Type_M6I_Metal,512.0G,128,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +m6i.xlarge,EC2Family_General,EC2Type_M6I,EC2Type_M6I_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +m6id.12xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_12xLarge,192.0G,48,0,0,4.00G,0,na,Intel Xeon 8375C,2850G,NVMe SSD,15000.0M,18.75G,1875.0M,Yes,60000 +m6id.16xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_16xLarge,256.0G,64,0,0,4.00G,0,na,Intel Xeon 8375C,3800G,NVMe SSD,20000.0M,25G,2500.0M,Yes,80000 +m6id.24xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_24xLarge,384.0G,96,0,0,4.00G,0,na,Intel Xeon 8375C,5700G,NVMe SSD,30000.0M,37.5G,3750.0M,Yes,120000 +m6id.2xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon 8375C,474G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +m6id.32xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_32xLarge,512.0G,128,0,0,4.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +m6id.4xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_4xLarge,64.0G,16,0,0,4.00G,0,na,Intel Xeon 8375C,950G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +m6id.8xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_8xLarge,128.0G,32,0,0,4.00G,0,na,Intel Xeon 8375C,1900G,SSD,10000.0M,12.5G,1250.0M,Yes,40000 +m6id.large,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon 8375C,118G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +m6id.metal,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_Metal,512.0G,128,0,0,4.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +m6id.xlarge,EC2Family_General,EC2Type_M6ID,EC2Type_M6ID_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon 8375C,237G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +mac1.metal,EC2Family_General,EC2Type_MAC1,EC2Type_MAC1_Metal,32.0G,12,0,0,2.67G,0,na,Intel Core i7-8700B,EBS only,na,8000.0M,25G,1000.0M,na,55000 +mac2.metal,EC2Family_General,EC2Type_MAC2,EC2Type_MAC2_Metal,16.0G,12,0,0,1.33G,0,na,"Apple M1 chip with 8-core, 8-core GPU, and 16-core Neural Engine",EBS only,na,unset,10G,0M,na,0 +p2.16xlarge,EC2Family_Accelerated,EC2Type_P2,EC2Type_P2_16xLarge,732.0G,64,201,3.141,11.44G,16,NVIDIA Tesla K80,Intel Xeon E5-2686 v4,EBS only,na,10000.0M,25G,1250.0M,na,65000 +p2.8xlarge,EC2Family_Accelerated,EC2Type_P2,EC2Type_P2_8xLarge,488.0G,32,97,3.031,15.25G,8,NVIDIA Tesla K80,Intel Xeon E5-2686 v4,EBS only,na,5000.0M,10G,625.0M,na,32500 +p2.xlarge,EC2Family_Accelerated,EC2Type_P2,EC2Type_P2_xLarge,61.0G,4,16,4,15.25G,1,NVIDIA Tesla K80,Intel Xeon E5-2686 v4,EBS only,na,750.0M,High,93.75M,na,6000 +p3.16xlarge,EC2Family_Accelerated,EC2Type_P3,EC2Type_P3_16xLarge,488.0G,64,201,3.141,7.62G,8,NVIDIA Tesla V100,Intel Xeon E5-2686 v4,EBS only,na,14000.0M,25G,1750.0M,na,80000 +p3.2xlarge,EC2Family_Accelerated,EC2Type_P3,EC2Type_P3_2xLarge,61.0G,8,31,3.875,7.62G,1,NVIDIA Tesla V100,Intel Xeon E5-2686 v4,EBS only,na,1750.0M,Up to 10G,218.75M,na,10000 +p3.8xlarge,EC2Family_Accelerated,EC2Type_P3,EC2Type_P3_8xLarge,244.0G,32,97,3.031,7.62G,4,NVIDIA Tesla V100,Intel Xeon E5-2686 v4,EBS only,na,7000.0M,10G,875.0M,na,40000 +p3dn.24xlarge,EC2Family_Accelerated,EC2Type_P3DN,EC2Type_P3DN_24xLarge,768.0G,96,337,3.51,8.00G,8,NVIDIA Tesla V100,Intel Xeon Platinum 8175,1800G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +p4d.24xlarge,EC2Family_Accelerated,EC2Type_P4D,EC2Type_P4D_24xLarge,1152.0G,96,345,3.594,12.00G,8,NVIDIA A100,Intel Xeon Platinum 8275L,8000G,NVMe SSD,19000.0M,4x 100G,2375.0M,Yes,80000 +p4de.24xlarge,EC2Family_Accelerated,EC2Type_P4DE,EC2Type_P4DE_24xLarge,1152.0G,96,345,3.594,12.00G,8,NVIDIA A100,Intel Xeon Platinum 8275L,8000G,NVMe SSD,19000.0M,400G,2375.0M,Yes,80000 +r3.2xlarge,EC2Family_Memory,EC2Type_R3,EC2Type_R3_2xLarge,61.0G,8,26,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,160G,SSD,1000.0M,High,125.0M,Yes,8000 +r3.4xlarge,EC2Family_Memory,EC2Type_R3,EC2Type_R3_4xLarge,122.0G,16,52,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,320G,SSD,2000.0M,High,250.0M,Yes,16000 +r3.8xlarge,EC2Family_Memory,EC2Type_R3,EC2Type_R3_8xLarge,244.0G,32,104,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,640G,SSD,unset,10G,0M,Yes,0 +r3.large,EC2Family_Memory,EC2Type_R3,EC2Type_R3_Large,15.25G,2,6.5,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,32G,SSD,unset,Moderate,0M,Yes,0 +r3.xlarge,EC2Family_Memory,EC2Type_R3,EC2Type_R3_xLarge,30.5G,4,13,3.25,7.62G,0,na,Intel Xeon E5-2670 v2,80G,SSD,500.0M,Moderate,62.5M,Yes,4000 +r4.16xlarge,EC2Family_Memory,EC2Type_R4,EC2Type_R4_16xLarge,488.0G,64,201,3.141,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,14000.0M,25G,1750.0M,na,75000 +r4.2xlarge,EC2Family_Memory,EC2Type_R4,EC2Type_R4_2xLarge,61.0G,8,31,3.875,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,1700.0M,Up to 10G,212.5M,na,12000 +r4.4xlarge,EC2Family_Memory,EC2Type_R4,EC2Type_R4_4xLarge,122.0G,16,58,3.625,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,3500.0M,Up to 10G,437.5M,na,18750 +r4.8xlarge,EC2Family_Memory,EC2Type_R4,EC2Type_R4_8xLarge,244.0G,32,97,3.031,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,7000.0M,10G,875.0M,na,37500 +r4.large,EC2Family_Memory,EC2Type_R4,EC2Type_R4_Large,15.25G,2,8,4,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,425.0M,Up to 10G,53.13M,na,3000 +r4.xlarge,EC2Family_Memory,EC2Type_R4,EC2Type_R4_xLarge,30.5G,4,16,4,7.62G,0,na,Intel Xeon E5-2686 v4,EBS only,na,850.0M,Up to 10G,106.25M,na,6000 +r5.12xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_12xLarge,384.0G,48,168,3.5,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,9500.0M,10G,1187.5M,na,40000 +r5.16xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_16xLarge,512.0G,64,256,4,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,13600.0M,20G,1700.0M,na,60000 +r5.24xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_24xLarge,768.0G,96,337,3.51,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,19000.0M,25G,2375.0M,na,80000 +r5.2xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_2xLarge,64.0G,8,37,4.625,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +r5.4xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_4xLarge,128.0G,16,70,4.375,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +r5.8xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_8xLarge,256.0G,32,128,4,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,6800.0M,10G,850.0M,na,30000 +r5.large,EC2Family_Memory,EC2Type_R5,EC2Type_R5_Large,16.0G,2,10,5,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +r5.metal,EC2Family_Memory,EC2Type_R5,EC2Type_R5_Metal,768.0G,96,347,3.615,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,19000.0M,25G,2375.0M,na,80000 +r5.xlarge,EC2Family_Memory,EC2Type_R5,EC2Type_R5_xLarge,32.0G,4,19,4.75,8.00G,0,na,Intel Xeon Platinum 8175,EBS only,na,4750.0M,Up to 10G,593.75M,na,18750 +r5a.12xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_12xLarge,384.0G,48,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,6780.0M,10G,847.5M,na,30000 +r5a.16xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_16xLarge,512.0G,64,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,9500.0M,12G,1187.5M,na,40000 +r5a.24xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_24xLarge,768.0G,96,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,13570.0M,20G,1696.25M,na,60000 +r5a.2xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_2xLarge,64.0G,8,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +r5a.4xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_4xLarge,128.0G,16,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +r5a.8xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_8xLarge,256.0G,32,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r5a.large,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_Large,16.0G,2,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +r5a.xlarge,EC2Family_Memory,EC2Type_R5A,EC2Type_R5A_xLarge,32.0G,4,0,0,8.00G,0,na,AMD EPYC 7571,EBS only,na,2880.0M,Up to 10G,360.0M,na,16000 +r5ad.12xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_12xLarge,384.0G,48,0,0,8.00G,0,na,AMD EPYC 7571,1800G,NVMe SSD,6780.0M,10G,847.5M,Yes,30000 +r5ad.16xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_16xLarge,512.0G,64,0,0,8.00G,0,na,AMD EPYC 7571,2400G,NVMe SSD,9500.0M,12G,1187.5M,Yes,40000 +r5ad.24xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_24xLarge,768.0G,96,0,0,8.00G,0,na,AMD EPYC 7571,3600G,NVMe SSD,13570.0M,20G,1696.25M,Yes,60000 +r5ad.2xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_2xLarge,64.0G,8,0,0,8.00G,0,na,AMD EPYC 7571,300G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +r5ad.4xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_4xLarge,128.0G,16,0,0,8.00G,0,na,AMD EPYC 7571,600G,NVMe SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +r5ad.8xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_8xLarge,256.0G,32,0,0,8.00G,0,na,AMD EPYC 7571,1200G,NVMe SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r5ad.large,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_Large,16.0G,2,0,0,8.00G,0,na,AMD EPYC 7571,75G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +r5ad.xlarge,EC2Family_Memory,EC2Type_R5AD,EC2Type_R5AD_xLarge,32.0G,4,0,0,8.00G,0,na,AMD EPYC 7571,150G,SSD,2880.0M,Up to 10G,360.0M,Yes,16000 +r5b.12xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_12xLarge,384.0G,48,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,30000.0M,10G,3750.0M,na,130000 +r5b.16xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,40000.0M,20G,5000.0M,na,173333 +r5b.24xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,60000.0M,25G,7500.0M,na,260000 +r5b.2xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,10000.0M,Up to 10G,1250.0M,na,43333 +r5b.4xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,10000.0M,Up to 10G,1250.0M,na,43333 +r5b.8xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,20000.0M,10G,2500.0M,na,86667 +r5b.large,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,10000.0M,Up to 10G,1250.0M,na,43333 +r5b.metal,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_Metal,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,60000.0M,25G,7500.0M,na,260000 +r5b.xlarge,EC2Family_Memory,EC2Type_R5B,EC2Type_R5B_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,10000.0M,Up to 10G,1250.0M,na,43333 +r5d.12xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_12xLarge,384.0G,48,168,3.5,8.00G,0,na,Intel Xeon Platinum 8175,1800G,NVMe SSD,9500.0M,10G,1187.5M,Yes,40000 +r5d.16xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_16xLarge,512.0G,64,256,4,8.00G,0,na,Intel Xeon Platinum 8175,2400G,NVMe SSD,13600.0M,20G,1700.0M,Yes,60000 +r5d.24xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_24xLarge,768.0G,96,337,3.51,8.00G,0,na,Intel Xeon Platinum 8175,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +r5d.2xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_2xLarge,64.0G,8,37,4.625,8.00G,0,na,Intel Xeon Platinum 8175,300G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +r5d.4xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_4xLarge,128.0G,16,70,4.375,8.00G,0,na,Intel Xeon Platinum 8175,600G,NVMe SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +r5d.8xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_8xLarge,256.0G,32,128,4,8.00G,0,na,Intel Xeon Platinum 8175,1200G,NVMe SSD,6800.0M,10G,850.0M,Yes,30000 +r5d.large,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_Large,16.0G,2,10,5,8.00G,0,na,Intel Xeon Platinum 8175,75G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +r5d.metal,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_Metal,768.0G,96,347,3.615,8.00G,0,na,Intel Xeon Platinum 8175,3600G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +r5d.xlarge,EC2Family_Memory,EC2Type_R5D,EC2Type_R5D_xLarge,32.0G,4,19,4.75,8.00G,0,na,Intel Xeon Platinum 8175,150G,SSD,4750.0M,Up to 10G,593.75M,Yes,18750 +r5dn.12xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_12xLarge,384.0G,48,0,0,8.00G,0,na,Intel Xeon Platinum 8259,1800G,NVMe SSD,9500.0M,50G,1187.5M,Yes,40000 +r5dn.16xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon Platinum 8259,2400G,NVMe SSD,13600.0M,75G,1700.0M,Yes,60000 +r5dn.24xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,3600G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +r5dn.2xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon Platinum 8259,300G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +r5dn.4xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon Platinum 8259,600G,NVMe SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +r5dn.8xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon Platinum 8259,1200G,NVMe SSD,6800.0M,25G,850.0M,Yes,30000 +r5dn.large,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon Platinum 8259,75G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +r5dn.metal,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_Metal,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,3600G,NVMe SSD,19000.0M,100G,2375.0M,Yes,80000 +r5dn.xlarge,EC2Family_Memory,EC2Type_R5DN,EC2Type_R5DN_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon Platinum 8259,150G,SSD,4750.0M,Up to 25G,593.75M,Yes,18750 +r5n.12xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_12xLarge,384.0G,48,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,9500.0M,50G,1187.5M,na,40000 +r5n.16xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,13600.0M,75G,1700.0M,na,60000 +r5n.24xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,19000.0M,100G,2375.0M,na,80000 +r5n.2xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +r5n.4xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +r5n.8xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,6800.0M,25G,850.0M,na,30000 +r5n.large,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +r5n.metal,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_Metal,768.0G,96,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,19000.0M,100G,2375.0M,na,80000 +r5n.xlarge,EC2Family_Memory,EC2Type_R5N,EC2Type_R5N_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon Platinum 8259,EBS only,na,4750.0M,Up to 25G,593.75M,na,18750 +r6a.12xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_12xLarge,384.0G,48,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,10000.0M,18.75G,1250.0M,na,40000 +r6a.16xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_16xLarge,512.0G,64,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,13300.0M,25G,1662.5M,na,53333 +r6a.24xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_24xLarge,768.0G,96,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,20000.0M,37.5G,2500.0M,na,80000 +r6a.2xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_2xLarge,64.0G,8,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +r6a.32xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_32xLarge,1024.0G,128,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,26666.664M,50G,3333.333M,na,100000 +r6a.48xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_48xLarge,1536.0G,192,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +r6a.4xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_4xLarge,128.0G,16,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +r6a.8xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_8xLarge,256.0G,32,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,12.5G,833.333M,na,26667 +r6a.large,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_Large,16.0G,2,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +r6a.metal,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_Metal,1536.0G,192,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,40000.0M,50G,5000.0M,na,160000 +r6a.xlarge,EC2Family_Memory,EC2Type_R6A,EC2Type_R6A_xLarge,32.0G,4,0,0,8.00G,0,na,AMD EPYC 7R13,EBS only,na,6666.664M,Up to 12.5G,833.333M,na,26667 +r6g.12xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_12xLarge,384.0G,48,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,14250.0M,20G,1781.25M,na,50000 +r6g.16xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_16xLarge,512.0G,64,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +r6g.2xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_2xLarge,64.0G,8,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r6g.4xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_4xLarge,128.0G,16,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r6g.8xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_8xLarge,256.0G,32,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,9500.0M,12G,1187.5M,na,40000 +r6g.large,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_Large,16.0G,2,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r6g.medium,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_Medium,8.0G,1,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r6g.metal,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_Metal,512.0G,64,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,19000.0M,25G,2375.0M,na,80000 +r6g.xlarge,EC2Family_Memory,EC2Type_R6G,EC2Type_R6G_xLarge,32.0G,4,0,0,8.00G,0,na,AWS Graviton2,EBS only,na,4750.0M,Up to 10G,593.75M,na,20000 +r6gd.12xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_12xLarge,384.0G,48,0,0,8.00G,0,na,AWS Graviton2,2850G,NVMe SSD,14250.0M,20G,1781.25M,Yes,50000 +r6gd.16xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_16xLarge,512.0G,64,0,0,8.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +r6gd.2xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_2xLarge,64.0G,8,0,0,8.00G,0,na,AWS Graviton2,474G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r6gd.4xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_4xLarge,128.0G,16,0,0,8.00G,0,na,AWS Graviton2,950G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r6gd.8xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_8xLarge,256.0G,32,0,0,8.00G,0,na,AWS Graviton2,1900G,SSD,9500.0M,12G,1187.5M,Yes,40000 +r6gd.large,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_Large,16.0G,2,0,0,8.00G,0,na,AWS Graviton2,118G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r6gd.medium,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_Medium,8.0G,1,0,0,8.00G,0,na,AWS Graviton2,59G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r6gd.metal,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_Metal,512.0G,64,0,0,8.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +r6gd.xlarge,EC2Family_Memory,EC2Type_R6GD,EC2Type_R6GD_xLarge,32.0G,4,0,0,8.00G,0,na,AWS Graviton2,237G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +r6i.12xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_12xLarge,384.0G,48,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,15000.0M,18.75G,1875.0M,na,60000 +r6i.16xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,20000.0M,25G,2500.0M,na,80000 +r6i.24xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,30000.0M,37.5G,3750.0M,na,120000 +r6i.2xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +r6i.32xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_32xLarge,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +r6i.4xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +r6i.8xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,12.5G,1250.0M,na,40000 +r6i.large,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +r6i.metal,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_Metal,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,40000.0M,50G,5000.0M,na,160000 +r6i.xlarge,EC2Family_Memory,EC2Type_R6I,EC2Type_R6I_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon 8375C,EBS only,na,10000.0M,Up to 12.5G,1250.0M,na,40000 +r6id.12xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_12xLarge,384.0G,48,0,0,8.00G,0,na,Intel Xeon 8375C,2850G,NVMe SSD,15000.0M,18.75G,1875.0M,Yes,60000 +r6id.16xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_16xLarge,512.0G,64,0,0,8.00G,0,na,Intel Xeon 8375C,3800G,NVMe SSD,20000.0M,25G,2500.0M,Yes,80000 +r6id.24xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_24xLarge,768.0G,96,0,0,8.00G,0,na,Intel Xeon 8375C,5700G,NVMe SSD,30000.0M,37.5G,3750.0M,Yes,120000 +r6id.2xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_2xLarge,64.0G,8,0,0,8.00G,0,na,Intel Xeon 8375C,474G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +r6id.32xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_32xLarge,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +r6id.4xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_4xLarge,128.0G,16,0,0,8.00G,0,na,Intel Xeon 8375C,950G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +r6id.8xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_8xLarge,256.0G,32,0,0,8.00G,0,na,Intel Xeon 8375C,1900G,SSD,10000.0M,12.5G,1250.0M,Yes,40000 +r6id.large,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_Large,16.0G,2,0,0,8.00G,0,na,Intel Xeon 8375C,118G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +r6id.metal,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_Metal,1024.0G,128,0,0,8.00G,0,na,Intel Xeon 8375C,7600G,NVMe SSD,40000.0M,50G,5000.0M,Yes,160000 +r6id.xlarge,EC2Family_Memory,EC2Type_R6ID,EC2Type_R6ID_xLarge,32.0G,4,0,0,8.00G,0,na,Intel Xeon 8375C,237G,SSD,10000.0M,Up to 12.5G,1250.0M,Yes,40000 +t1.micro,EC2Family_General,EC2Type_T1,EC2Type_T1_Micro,0.613G,1,0,0,0.61G,0,na,unknown,EBS only,na,unset,Very Low,0M,na,0 +t2.2xlarge,EC2Family_General,EC2Type_T2,EC2Type_T2_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Xeon Family,EBS only,na,unset,Moderate,0M,na,0 +t2.large,EC2Family_General,EC2Type_T2,EC2Type_T2_Large,8.0G,2,0,0,4.00G,0,na,Intel Xeon Family,EBS only,na,unset,Low to Moderate,0M,na,0 +t2.medium,EC2Family_General,EC2Type_T2,EC2Type_T2_Medium,4.0G,2,0,0,2.00G,0,na,Intel Xeon Family,EBS only,na,unset,Low to Moderate,0M,na,0 +t2.micro,EC2Family_General,EC2Type_T2,EC2Type_T2_Micro,1.0G,1,0,0,1.00G,0,na,Intel Xeon Family,EBS only,na,unset,Low to Moderate,0M,na,0 +t2.nano,EC2Family_General,EC2Type_T2,EC2Type_T2_Nano,0.5G,1,0,0,0.50G,0,na,Intel Xeon Family,EBS only,na,unset,Low to Moderate,0M,na,0 +t2.small,EC2Family_General,EC2Type_T2,EC2Type_T2_Small,2.0G,1,0,0,2.00G,0,na,Intel Xeon Family,EBS only,na,unset,Low to Moderate,0M,na,0 +t2.xlarge,EC2Family_General,EC2Type_T2,EC2Type_T2_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Xeon Family,EBS only,na,unset,Moderate,0M,na,0 +t3.2xlarge,EC2Family_General,EC2Type_T3,EC2Type_T3_2xLarge,32.0G,8,0,0,4.00G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t3.large,EC2Family_General,EC2Type_T3,EC2Type_T3_Large,8.0G,2,0,0,4.00G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t3.medium,EC2Family_General,EC2Type_T3,EC2Type_T3_Medium,4.0G,2,0,0,2.00G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3.micro,EC2Family_General,EC2Type_T3,EC2Type_T3_Micro,1.0G,2,0,0,0.50G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3.nano,EC2Family_General,EC2Type_T3,EC2Type_T3_Nano,0.5G,2,0,0,0.25G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3.small,EC2Family_General,EC2Type_T3,EC2Type_T3_Small,2.0G,2,0,0,1.00G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3.xlarge,EC2Family_General,EC2Type_T3,EC2Type_T3_xLarge,16.0G,4,0,0,4.00G,0,na,Intel Skylake E5 2686 v5,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t3a.2xlarge,EC2Family_General,EC2Type_T3A,EC2Type_T3A_2xLarge,32.0G,8,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t3a.large,EC2Family_General,EC2Type_T3A,EC2Type_T3A_Large,8.0G,2,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t3a.medium,EC2Family_General,EC2Type_T3A,EC2Type_T3A_Medium,4.0G,2,0,0,2.00G,0,na,AMD EPYC 7571,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3a.micro,EC2Family_General,EC2Type_T3A,EC2Type_T3A_Micro,1.0G,2,0,0,0.50G,0,na,AMD EPYC 7571,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3a.nano,EC2Family_General,EC2Type_T3A,EC2Type_T3A_Nano,0.5G,2,0,0,0.25G,0,na,AMD EPYC 7571,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3a.small,EC2Family_General,EC2Type_T3A,EC2Type_T3A_Small,2.0G,2,0,0,1.00G,0,na,AMD EPYC 7571,EBS only,na,2085.0M,Up to 5G,260.57M,na,11800 +t3a.xlarge,EC2Family_General,EC2Type_T3A,EC2Type_T3A_xLarge,16.0G,4,0,0,4.00G,0,na,AMD EPYC 7571,EBS only,na,2780.0M,Up to 5G,347.5M,na,15700 +t4g.2xlarge,EC2Family_General,EC2Type_T4G,EC2Type_T4G_2xLarge,32.0G,8,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,2780.0M,Up to 5G,434.37M,na,15700 +t4g.large,EC2Family_General,EC2Type_T4G,EC2Type_T4G_Large,8.0G,2,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,2780.0M,Up to 5G,434.37M,na,15700 +t4g.medium,EC2Family_General,EC2Type_T4G,EC2Type_T4G_Medium,4.0G,2,0,0,2.00G,0,na,AWS Graviton2,EBS only,na,2606.0M,Up to 5G,325.75M,na,11800 +t4g.micro,EC2Family_General,EC2Type_T4G,EC2Type_T4G_Micro,1.0G,2,0,0,0.50G,0,na,AWS Graviton2,EBS only,na,2606.0M,Up to 5G,325.75M,na,11800 +t4g.nano,EC2Family_General,EC2Type_T4G,EC2Type_T4G_Nano,0.5G,2,0,0,0.25G,0,na,AWS Graviton2,EBS only,na,2606.0M,Up to 5G,325.75M,na,11800 +t4g.small,EC2Family_General,EC2Type_T4G,EC2Type_T4G_Small,2.0G,2,0,0,1.00G,0,na,AWS Graviton2,EBS only,na,2606.0M,Up to 5G,325.75M,na,11800 +t4g.xlarge,EC2Family_General,EC2Type_T4G,EC2Type_T4G_xLarge,16.0G,4,0,0,4.00G,0,na,AWS Graviton2,EBS only,na,2780.0M,Up to 5G,434.37M,na,15700 +u-12tb1.112xlarge,EC2Family_Memory,EC2Type_U12TB1,EC2Type_U12TB1_112xLarge,12288.0G,448,0,0,27.43G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-12tb1.metal,EC2Family_Memory,EC2Type_U12TB1,EC2Type_U12TB1_Metal,12288.0G,448,0,0,27.43G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-18tb1.metal,EC2Family_Memory,EC2Type_U18TB1,EC2Type_U18TB1_Metal,18432.0G,448,0,0,41.14G,0,na,Intel Xeon Platinum 8280L,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-24tb1.metal,EC2Family_Memory,EC2Type_U24TB1,EC2Type_U24TB1_Metal,24576.0G,448,0,0,54.86G,0,na,Intel Xeon Platinum 8280L,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-3tb1.56xlarge,EC2Family_Memory,EC2Type_U3TB1,EC2Type_U3TB1_56xLarge,3072.0G,224,0,0,13.71G,0,na,Intel Xeon Scalable,EBS only,na,19000.0M,50G,2375.0M,na,80000 +u-6tb1.112xlarge,EC2Family_Memory,EC2Type_U6TB1,EC2Type_U6TB1_112xLarge,6144.0G,448,0,0,13.71G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-6tb1.56xlarge,EC2Family_Memory,EC2Type_U6TB1,EC2Type_U6TB1_56xLarge,6144.0G,224,0,0,27.43G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-6tb1.metal,EC2Family_Memory,EC2Type_U6TB1,EC2Type_U6TB1_Metal,6144.0G,448,0,0,13.71G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-9tb1.112xlarge,EC2Family_Memory,EC2Type_U9TB1,EC2Type_U9TB1_112xLarge,9216.0G,448,0,0,20.57G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +u-9tb1.metal,EC2Family_Memory,EC2Type_U9TB1,EC2Type_U9TB1_Metal,9216.0G,448,0,0,20.57G,0,na,Intel Xeon Scalable,EBS only,na,38000.0M,100G,4750.0M,na,160000 +vt1.24xlarge,EC2Family_Accelerated,EC2Type_VT1,EC2Type_VT1_24xLarge,192.0G,96,0,0,2.00G,0,na,Intel Xeon Platinum 8259CL,EBS only,na,19000.0M,25G,2375.0M,na,80000 +vt1.3xlarge,EC2Family_Accelerated,EC2Type_VT1,EC2Type_VT1_3xLarge,24.0G,12,0,0,2.00G,0,na,Intel Xeon Platinum 8259CL,EBS only,na,4750.0M,3.12G,593.75M,na,20000 +vt1.6xlarge,EC2Family_Accelerated,EC2Type_VT1,EC2Type_VT1_6xLarge,48.0G,24,0,0,2.00G,0,na,Intel Xeon Platinum 8259CL,EBS only,na,4750.0M,6.25G,593.75M,na,20000 +x1.16xlarge,EC2Family_Memory,EC2Type_X1,EC2Type_X1_16xLarge,976.0G,64,174.5,2.727,15.25G,0,na,Intel Xeon E7-8880 v3,1920G,SSD,7000.0M,10G,875.0M,No,40000 +x1.32xlarge,EC2Family_Memory,EC2Type_X1,EC2Type_X1_32xLarge,1952.0G,128,349,2.727,15.25G,0,na,Intel Xeon E7-8880 v3,3840G,SSD,14000.0M,25G,1750.0M,No,80000 +x1e.16xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_16xLarge,1952.0G,64,179,2.797,30.50G,0,na,Intel Xeon E7-8880 v3,1920G,SSD,7000.0M,10G,875.0M,No,40000 +x1e.2xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_2xLarge,244.0G,8,23,2.875,30.50G,0,na,Intel Xeon E7-8880 v3,240G,SSD,1000.0M,Up to 10G,125.0M,No,7400 +x1e.32xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_32xLarge,3904.0G,128,340,2.656,30.50G,0,na,Intel Xeon E7-8880 v3,3840G,SSD,14000.0M,25G,1750.0M,No,80000 +x1e.4xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_4xLarge,488.0G,16,47,2.938,30.50G,0,na,Intel Xeon E7-8880 v3,480G,SSD,1750.0M,Up to 10G,218.75M,No,10000 +x1e.8xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_8xLarge,976.0G,32,91,2.844,30.50G,0,na,Intel Xeon E7-8880 v3,960G,SSD,3500.0M,Up to 10G,437.5M,No,20000 +x1e.xlarge,EC2Family_Memory,EC2Type_X1E,EC2Type_X1E_xLarge,122.0G,4,12,3,30.50G,0,na,Intel Xeon E7-8880 v3,120G,SSD,500.0M,Up to 10G,62.5M,No,3700 +x2gd.12xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_12xLarge,768.0G,48,0,0,16.00G,0,na,AWS Graviton2,2850G,NVMe SSD,14250.0M,20G,1781.25M,Yes,60000 +x2gd.16xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_16xLarge,1024.0G,64,0,0,16.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +x2gd.2xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_2xLarge,128.0G,8,0,0,16.00G,0,na,AWS Graviton2,475G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +x2gd.4xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_4xLarge,256.0G,16,0,0,16.00G,0,na,AWS Graviton2,950G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +x2gd.8xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_8xLarge,512.0G,32,0,0,16.00G,0,na,AWS Graviton2,1900G,SSD,9500.0M,12G,1187.5M,Yes,40000 +x2gd.large,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_Large,32.0G,2,0,0,16.00G,0,na,AWS Graviton2,118G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +x2gd.medium,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_Medium,16.0G,1,0,0,16.00G,0,na,AWS Graviton2,59G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +x2gd.metal,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_Metal,1024.0G,64,0,0,16.00G,0,na,AWS Graviton2,3800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +x2gd.xlarge,EC2Family_Memory,EC2Type_X2GD,EC2Type_X2GD_xLarge,64.0G,4,0,0,16.00G,0,na,AWS Graviton2,237G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +x2idn.16xlarge,EC2Family_Memory,EC2Type_X2IDN,EC2Type_X2IDN_16xLarge,1024.0G,64,0,0,16.00G,0,na,Intel Xeon Scalable,1900G,SSD,40000.0M,50G,5000.0M,Yes,130000 +x2idn.24xlarge,EC2Family_Memory,EC2Type_X2IDN,EC2Type_X2IDN_24xLarge,1536.0G,96,0,0,16.00G,0,na,Intel Xeon Scalable,2850G,NVMe SSD,60000.0M,75G,7500.0M,Yes,195000 +x2idn.32xlarge,EC2Family_Memory,EC2Type_X2IDN,EC2Type_X2IDN_32xLarge,2048.0G,128,0,0,16.00G,0,na,Intel Xeon Scalable,3800G,NVMe SSD,80000.0M,100G,10000.0M,Yes,260000 +x2idn.metal,EC2Family_Memory,EC2Type_X2IDN,EC2Type_X2IDN_Metal,2048.0G,128,0,0,16.00G,0,na,Intel Xeon Scalable,3800G,NVMe SSD,80000.0M,100G,10000.0M,Yes,260000 +x2iedn.16xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_16xLarge,2048.0G,64,0,0,32.00G,0,na,Intel Xeon Scalable,1900G,SSD,40000.0M,50G,5000.0M,Yes,130000 +x2iedn.24xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_24xLarge,3072.0G,96,0,0,32.00G,0,na,Intel Xeon Scalable,2850G,NVMe SSD,60000.0M,75G,7500.0M,Yes,195000 +x2iedn.2xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_2xLarge,256.0G,8,0,0,32.00G,0,na,Intel Xeon Scalable,237G,SSD,20000.0M,Up to 25G,2500.0M,Yes,65000 +x2iedn.32xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_32xLarge,4096.0G,128,0,0,32.00G,0,na,Intel Xeon Scalable,3800G,NVMe SSD,80000.0M,100G,10000.0M,Yes,260000 +x2iedn.4xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_4xLarge,512.0G,16,0,0,32.00G,0,na,Intel Xeon Scalable,475G,SSD,20000.0M,Up to 25G,2500.0M,Yes,65000 +x2iedn.8xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_8xLarge,1024.0G,32,0,0,32.00G,0,na,Intel Xeon Scalable,950G,SSD,20000.0M,25G,2500.0M,Yes,65000 +x2iedn.metal,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_Metal,4096.0G,128,0,0,32.00G,0,na,Intel Xeon Scalable,3800G,NVMe SSD,80000.0M,100G,10000.0M,Yes,260000 +x2iedn.xlarge,EC2Family_Memory,EC2Type_X2IEDN,EC2Type_X2IEDN_xLarge,128.0G,4,0,0,32.00G,0,na,Intel Xeon Scalable,118G,SSD,20000.0M,Up to 25G,2500.0M,Yes,65000 +x2iezn.12xlarge,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_12xLarge,1536.0G,48,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,19000.0M,100G,2375.0M,na,80000 +x2iezn.2xlarge,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_2xLarge,256.0G,8,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,3170.0M,Up to 25G,396.25M,na,13333 +x2iezn.4xlarge,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_4xLarge,512.0G,16,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,4750.0M,Up to 25G,593.75M,na,20000 +x2iezn.6xlarge,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_6xLarge,768.0G,24,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,9500.0M,50G,1187.5M,na,40000 +x2iezn.8xlarge,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_8xLarge,1024.0G,32,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,12000.0M,75G,1500.0M,na,55000 +x2iezn.metal,EC2Family_Memory,EC2Type_X2IEZN,EC2Type_X2IEZN_Metal,1536.0G,48,0,0,32.00G,0,na,Intel Xeon Platinum 8252,EBS only,na,19000.0M,100G,2375.0M,na,80000 +z1d.12xlarge,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_12xLarge,384.0G,48,235,4.896,8.00G,0,na,Intel Xeon Platinum 8151,1800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +z1d.2xlarge,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_2xLarge,64.0G,8,45,5.625,8.00G,0,na,Intel Xeon Platinum 8151,300G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 +z1d.3xlarge,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_3xLarge,96.0G,12,64,5.333,8.00G,0,na,Intel Xeon Platinum 8151,450G,SSD,4750.0M,Up to 10G,593.75M,Yes,20000 +z1d.6xlarge,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_6xLarge,192.0G,24,116,4.833,8.00G,0,na,Intel Xeon Platinum 8151,900G,SSD,9500.0M,10G,1187.5M,Yes,40000 +z1d.large,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_Large,16.0G,2,12,6,8.00G,0,na,Intel Xeon Platinum 8151,75G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 +z1d.metal,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_Metal,384.0G,48,271,5.646,8.00G,0,na,Intel Xeon Platinum 8151,1800G,NVMe SSD,19000.0M,25G,2375.0M,Yes,80000 +z1d.xlarge,EC2Family_Memory,EC2Type_Z1D,EC2Type_Z1D_xLarge,32.0G,4,23,5.75,8.00G,0,na,Intel Xeon Platinum 8151,150G,SSD,3170.0M,Up to 10G,396.25M,Yes,13333 \ No newline at end of file diff --git a/src/features/qualifiers/ec2/ec2.jl b/src/features/qualifiers/ec2/ec2.jl new file mode 100644 index 0000000..0573ba1 --- /dev/null +++ b/src/features/qualifiers/ec2/ec2.jl @@ -0,0 +1,842 @@ +# ------------------------------------------------------------------ +# Licensed under the MIT License. See LICENCE in the project root. +# ------------------------------------------------------------------ + + +# maintainer types +abstract type AmazonEC2 <: CloudProvider end; export AmazonEC2 + +# locale types + + +# machine family types + +abstract type EC2Family <: MachineFamily end + +abstract type EC2Family_General <: EC2Family end +abstract type EC2Family_Compute <: EC2Family end +abstract type EC2Family_Accelerated <: EC2Family end +abstract type EC2Family_Memory <: EC2Family end +abstract type EC2Family_Storage <: EC2Family end + +# machine type types and sizes + +abstract type EC2Type <: MachineType end + +## general purpose instances + +abstract type EC2Type_MAC <: EC2Type end +abstract type EC2Type_MAC1 <: EC2Type_MAC end +abstract type EC2Type_MAC2 <: EC2Type_MAC end + +abstract type EC2Type_MAC1_Metal <: EC2Type_MAC1 end +abstract type EC2Type_MAC2_Metal <: EC2Type_MAC2 end + +abstract type EC2Type_T4G <: EC2Type end + +abstract type EC2Type_T4G_Nano <: EC2Type_T4G end +abstract type EC2Type_T4G_Micro <: EC2Type_T4G end +abstract type EC2Type_T4G_Small <: EC2Type_T4G end +abstract type EC2Type_T4G_Large <: EC2Type_T4G end +abstract type EC2Type_T4G_Medium <: EC2Type_T4G end +abstract type EC2Type_T4G_xLarge <: EC2Type_T4G end +abstract type EC2Type_T4G_2xLarge <: EC2Type_T4G end + +abstract type EC2Type_T3 <: EC2Type end +abstract type EC2Type_T3A <: EC2Type_T3 end + +abstract type EC2Type_T3_Nano <: EC2Type_T3 end +abstract type EC2Type_T3_Micro <: EC2Type_T3 end +abstract type EC2Type_T3_Small <: EC2Type_T3 end +abstract type EC2Type_T3_Large <: EC2Type_T3 end +abstract type EC2Type_T3_Medium <: EC2Type_T3 end +abstract type EC2Type_T3_xLarge <: EC2Type_T3 end +abstract type EC2Type_T3_2xLarge <: EC2Type_T3 end + +abstract type EC2Type_T3A_Nano <: EC2Type_T3A end +abstract type EC2Type_T3A_Micro <: EC2Type_T3A end +abstract type EC2Type_T3A_Small <: EC2Type_T3A end +abstract type EC2Type_T3A_Large <: EC2Type_T3A end +abstract type EC2Type_T3A_Medium <: EC2Type_T3A end +abstract type EC2Type_T3A_xLarge <: EC2Type_T3A end +abstract type EC2Type_T3A_2xLarge <: EC2Type_T3A end + +abstract type EC2Type_T2 <: EC2Type end + +abstract type EC2Type_T2_Nano <: EC2Type_T2 end +abstract type EC2Type_T2_Micro <: EC2Type_T2 end +abstract type EC2Type_T2_Small <: EC2Type_T2 end +abstract type EC2Type_T2_Large <: EC2Type_T2 end +abstract type EC2Type_T2_Medium <: EC2Type_T2 end +abstract type EC2Type_T2_xLarge <: EC2Type_T2 end +abstract type EC2Type_T2_2xLarge <: EC2Type_T2 end + +abstract type EC2Type_M6 <: EC2Type end +abstract type EC2Type_M6G <: EC2Type_M6 end +abstract type EC2Type_M6I <: EC2Type_M6 end +abstract type EC2Type_M6A <: EC2Type_M6 end +abstract type EC2Type_M6GD <: EC2Type_M6G end +abstract type EC2Type_M6ID <: EC2Type_M6I end + +abstract type EC2Type_M6G_Metal <: EC2Type_M6G end +abstract type EC2Type_M6G_Large <: EC2Type_M6G end +abstract type EC2Type_M6G_Medium <: EC2Type_M6G end +abstract type EC2Type_M6G_xLarge <: EC2Type_M6G end +abstract type EC2Type_M6G_2xLarge <: EC2Type_M6G end +abstract type EC2Type_M6G_4xLarge <: EC2Type_M6G end +abstract type EC2Type_M6G_8xLarge <: EC2Type_M6G end +abstract type EC2Type_M6G_12xLarge <: EC2Type_M6G end +abstract type EC2Type_M6G_16xLarge <: EC2Type_M6G end + +abstract type EC2Type_M6GD_Metal <: EC2Type_M6GD end +abstract type EC2Type_M6GD_Large <: EC2Type_M6GD end +abstract type EC2Type_M6GD_Medium <: EC2Type_M6GD end +abstract type EC2Type_M6GD_xLarge <: EC2Type_M6GD end +abstract type EC2Type_M6GD_2xLarge <: EC2Type_M6GD end +abstract type EC2Type_M6GD_4xLarge <: EC2Type_M6GD end +abstract type EC2Type_M6GD_8xLarge <: EC2Type_M6GD end +abstract type EC2Type_M6GD_12xLarge <: EC2Type_M6GD end +abstract type EC2Type_M6GD_16xLarge <: EC2Type_M6GD end + +abstract type EC2Type_M6I_Metal <: EC2Type_M6I end +abstract type EC2Type_M6I_Large <: EC2Type_M6I end +abstract type EC2Type_M6I_xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_2xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_4xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_8xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_12xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_16xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_24xLarge <: EC2Type_M6I end +abstract type EC2Type_M6I_32xLarge <: EC2Type_M6I end + +abstract type EC2Type_M6ID_Metal <: EC2Type_M6ID end +abstract type EC2Type_M6ID_Large <: EC2Type_M6ID end +abstract type EC2Type_M6ID_xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_2xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_4xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_8xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_12xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_16xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_24xLarge <: EC2Type_M6ID end +abstract type EC2Type_M6ID_32xLarge <: EC2Type_M6ID end + +abstract type EC2Type_M6A_Metal <: EC2Type_M6A end +abstract type EC2Type_M6A_Large <: EC2Type_M6A end +abstract type EC2Type_M6A_xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_2xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_4xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_8xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_12xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_16xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_24xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_32xLarge <: EC2Type_M6A end +abstract type EC2Type_M6A_48xLarge <: EC2Type_M6A end + +abstract type EC2Type_M5 <: EC2Type end +abstract type EC2Type_M5D <: EC2Type_M5 end +abstract type EC2Type_M5A <: EC2Type_M5 end +abstract type EC2Type_M5N <: EC2Type_M5 end +abstract type EC2Type_M5ZN <: EC2Type_M5 end +abstract type EC2Type_M5AD <: EC2Type_M5A end +abstract type EC2Type_M5DN <: EC2Type_M5N end + +abstract type EC2Type_M5_Metal <: EC2Type_M5 end +abstract type EC2Type_M5_Large <: EC2Type_M5 end +abstract type EC2Type_M5_xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_2xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_4xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_8xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_12xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_16xLarge <: EC2Type_M5 end +abstract type EC2Type_M5_24xLarge <: EC2Type_M5 end + +abstract type EC2Type_M5D_Metal <: EC2Type_M5D end +abstract type EC2Type_M5D_Large <: EC2Type_M5D end +abstract type EC2Type_M5D_xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_2xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_4xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_8xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_12xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_16xLarge <: EC2Type_M5D end +abstract type EC2Type_M5D_24xLarge <: EC2Type_M5D end + +abstract type EC2Type_M5A_Large <: EC2Type_M5A end +abstract type EC2Type_M5A_xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_2xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_4xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_8xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_12xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_16xLarge <: EC2Type_M5A end +abstract type EC2Type_M5A_24xLarge <: EC2Type_M5A end + +abstract type EC2Type_M5AD_Large <: EC2Type_M5AD end +abstract type EC2Type_M5AD_xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_2xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_4xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_8xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_12xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_16xLarge <: EC2Type_M5AD end +abstract type EC2Type_M5AD_24xLarge <: EC2Type_M5AD end + +abstract type EC2Type_M5N_Metal <: EC2Type_M5N end +abstract type EC2Type_M5N_Large <: EC2Type_M5N end +abstract type EC2Type_M5N_xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_2xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_4xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_8xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_12xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_16xLarge <: EC2Type_M5N end +abstract type EC2Type_M5N_24xLarge <: EC2Type_M5N end + +abstract type EC2Type_M5DN_Metal <: EC2Type_M5DN end +abstract type EC2Type_M5DN_Large <: EC2Type_M5DN end +abstract type EC2Type_M5DN_xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_2xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_4xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_8xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_12xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_16xLarge <: EC2Type_M5DN end +abstract type EC2Type_M5DN_24xLarge <: EC2Type_M5DN end + +abstract type EC2Type_M5ZN_Metal <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_Large <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_xLarge <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_2xLarge <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_3xLarge <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_6xLarge <: EC2Type_M5ZN end +abstract type EC2Type_M5ZN_12xLarge <: EC2Type_M5ZN end + +abstract type EC2Type_M4 <: EC2Type end + +abstract type EC2Type_M4_Large <: EC2Type_M4 end +abstract type EC2Type_M4_xLarge <: EC2Type_M4 end +abstract type EC2Type_M4_2xLarge <: EC2Type_M4 end +abstract type EC2Type_M4_4xLarge <: EC2Type_M4 end +abstract type EC2Type_M4_10xLarge <: EC2Type_M4 end +abstract type EC2Type_M4_16xLarge <: EC2Type_M4 end + +abstract type EC2Type_A1 <: EC2Type end + +abstract type EC2Type_A1_Metal <: EC2Type_A1 end +abstract type EC2Type_A1_Large <: EC2Type_A1 end +abstract type EC2Type_A1_Medium <: EC2Type_A1 end +abstract type EC2Type_A1_xLarge <: EC2Type_A1 end +abstract type EC2Type_A1_2xLarge <: EC2Type_A1 end +abstract type EC2Type_A1_4xLarge <: EC2Type_A1 end + +## compute optimized instances + +abstract type EC2Type_C7G <: EC2Type end + +abstract type EC2Type_C7G_Large <: EC2Type_C7G end +abstract type EC2Type_C7G_Medium <: EC2Type_C7G end +abstract type EC2Type_C7G_xLarge <: EC2Type_C7G end +abstract type EC2Type_C7G_2xLarge <: EC2Type_C7G end +abstract type EC2Type_C7G_4xLarge <: EC2Type_C7G end +abstract type EC2Type_C7G_8xLarge <: EC2Type_C7G end +abstract type EC2Type_C7G_12xLarge <: EC2Type_C7G end +abstract type EC2Type_C7G_16xLarge <: EC2Type_C7G end + +abstract type EC2Type_C6 <: EC2Type end +abstract type EC2Type_C6G <: EC2Type_C6 end +abstract type EC2Type_C6GN <: EC2Type_C6 end +abstract type EC2Type_C6I <: EC2Type_C6 end +abstract type EC2Type_C6A <: EC2Type_C6 end +abstract type EC2Type_C6GD <: EC2Type_C6G end +abstract type EC2Type_C6ID <: EC2Type_C6I end + +abstract type EC2Type_C6G_Metal <: EC2Type_C6G end +abstract type EC2Type_C6G_Large <: EC2Type_C6G end +abstract type EC2Type_C6G_Medium <: EC2Type_C6G end +abstract type EC2Type_C6G_xLarge <: EC2Type_C6G end +abstract type EC2Type_C6G_2xLarge <: EC2Type_C6G end +abstract type EC2Type_C6G_4xLarge <: EC2Type_C6G end +abstract type EC2Type_C6G_8xLarge <: EC2Type_C6G end +abstract type EC2Type_C6G_12xLarge <: EC2Type_C6G end +abstract type EC2Type_C6G_16xLarge <: EC2Type_C6G end + +abstract type EC2Type_C6GD_Metal <: EC2Type_C6GD end +abstract type EC2Type_C6GD_Large <: EC2Type_C6GD end +abstract type EC2Type_C6GD_Medium <: EC2Type_C6GD end +abstract type EC2Type_C6GD_xLarge <: EC2Type_C6GD end +abstract type EC2Type_C6GD_2xLarge <: EC2Type_C6GD end +abstract type EC2Type_C6GD_4xLarge <: EC2Type_C6GD end +abstract type EC2Type_C6GD_8xLarge <: EC2Type_C6GD end +abstract type EC2Type_C6GD_12xLarge <: EC2Type_C6G end +abstract type EC2Type_C6GD_16xLarge <: EC2Type_C6G end + +abstract type EC2Type_C6GN_Large <: EC2Type_C6GN end +abstract type EC2Type_C6GN_Medium <: EC2Type_C6GN end +abstract type EC2Type_C6GN_xLarge <: EC2Type_C6GN end +abstract type EC2Type_C6GN_2xLarge <: EC2Type_C6GN end +abstract type EC2Type_C6GN_4xLarge <: EC2Type_C6GN end +abstract type EC2Type_C6GN_8xLarge <: EC2Type_C6GN end +abstract type EC2Type_C6GN_12xLarge <: EC2Type_C6GN end +abstract type EC2Type_C6GN_16xLarge <: EC2Type_C6GN end + +abstract type EC2Type_C6I_Metal <: EC2Type_C6I end +abstract type EC2Type_C6I_Large <: EC2Type_C6I end +abstract type EC2Type_C6I_xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_2xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_4xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_8xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_12xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_16xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_24xLarge <: EC2Type_C6I end +abstract type EC2Type_C6I_32xLarge <: EC2Type_C6I end + +abstract type EC2Type_C6ID_Metal <: EC2Type_C6ID end +abstract type EC2Type_C6ID_Large <: EC2Type_C6ID end +abstract type EC2Type_C6ID_xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_2xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_4xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_8xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_12xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_16xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_24xLarge <: EC2Type_C6ID end +abstract type EC2Type_C6ID_32xLarge <: EC2Type_C6ID end + +abstract type EC2Type_C6A_Metal <: EC2Type_C6A end +abstract type EC2Type_C6A_Large <: EC2Type_C6A end +abstract type EC2Type_C6A_xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_2xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_4xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_8xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_12xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_16xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_24xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_32xLarge <: EC2Type_C6A end +abstract type EC2Type_C6A_48xLarge <: EC2Type_C6A end + +abstract type EC2Type_HPC6A <: EC2Type end + +abstract type EC2Type_HPC6A_48xLarge <: EC2Type_HPC6A end + +abstract type EC2Type_C5 <: EC2Type end +abstract type EC2Type_C5D <: EC2Type_C5 end +abstract type EC2Type_C5A <: EC2Type_C5 end +abstract type EC2Type_C5N <: EC2Type_C5 end +abstract type EC2Type_C5AD <: EC2Type_C5A end + +abstract type EC2Type_C5_Metal <: EC2Type_C5 end +abstract type EC2Type_C5_Large <: EC2Type_C5 end +abstract type EC2Type_C5_xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_2xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_4xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_9xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_12xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_18xLarge <: EC2Type_C5 end +abstract type EC2Type_C5_24xLarge <: EC2Type_C5 end + +abstract type EC2Type_C5D_Metal <: EC2Type_C5D end +abstract type EC2Type_C5D_Large <: EC2Type_C5D end +abstract type EC2Type_C5D_xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_2xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_4xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_9xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_12xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_18xLarge <: EC2Type_C5D end +abstract type EC2Type_C5D_24xLarge <: EC2Type_C5D end + +abstract type EC2Type_C5A_Large <: EC2Type_C5A end +abstract type EC2Type_C5A_xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_2xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_4xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_8xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_12xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_16xLarge <: EC2Type_C5A end +abstract type EC2Type_C5A_24xLarge <: EC2Type_C5A end + +abstract type EC2Type_C5AD_Large <: EC2Type_C5AD end +abstract type EC2Type_C5AD_xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_2xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_4xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_8xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_12xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_16xLarge <: EC2Type_C5AD end +abstract type EC2Type_C5AD_24xLarge <: EC2Type_C5AD end + +abstract type EC2Type_C5N_Metal <: EC2Type_C5N end +abstract type EC2Type_C5N_Large <: EC2Type_C5N end +abstract type EC2Type_C5N_xLarge <: EC2Type_C5N end +abstract type EC2Type_C5N_2xLarge <: EC2Type_C5N end +abstract type EC2Type_C5N_4xLarge <: EC2Type_C5N end +abstract type EC2Type_C5N_9xLarge <: EC2Type_C5N end +abstract type EC2Type_C5N_18xLarge <: EC2Type_C5N end + +abstract type EC2Type_C4 <: EC2Type end + +abstract type EC2Type_C4_Large <: EC2Type_C4 end +abstract type EC2Type_C4_xLarge <: EC2Type_C4 end +abstract type EC2Type_C4_2xLarge <: EC2Type_C4 end +abstract type EC2Type_C4_4xLarge <: EC2Type_C4 end +abstract type EC2Type_C4_8xLarge <: EC2Type_C4 end + +## memory optimized instances + +abstract type EC2Type_R6 <: EC2Type end +abstract type EC2Type_R6A <: EC2Type_R6 end +abstract type EC2Type_R6G <: EC2Type_R6 end +abstract type EC2Type_R6I <: EC2Type_R6 end +abstract type EC2Type_R6GD <: EC2Type_R6G end +abstract type EC2Type_R6ID <: EC2Type_R6I end + +abstract type EC2Type_R6A_Metal <: EC2Type_R6A end +abstract type EC2Type_R6A_Large <: EC2Type_R6A end +abstract type EC2Type_R6A_xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_2xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_4xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_8xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_12xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_16xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_24xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_32xLarge <: EC2Type_R6A end +abstract type EC2Type_R6A_48xLarge <: EC2Type_R6A end + +abstract type EC2Type_R6G_Metal <: EC2Type_R6G end +abstract type EC2Type_R6G_Large <: EC2Type_R6G end +abstract type EC2Type_R6G_Medium <: EC2Type_R6G end +abstract type EC2Type_R6G_xLarge <: EC2Type_R6G end +abstract type EC2Type_R6G_2xLarge <: EC2Type_R6G end +abstract type EC2Type_R6G_4xLarge <: EC2Type_R6G end +abstract type EC2Type_R6G_8xLarge <: EC2Type_R6G end +abstract type EC2Type_R6G_12xLarge <: EC2Type_R6G end +abstract type EC2Type_R6G_16xLarge <: EC2Type_R6G end + +abstract type EC2Type_R6GD_Metal <: EC2Type_R6GD end +abstract type EC2Type_R6GD_Large <: EC2Type_R6GD end +abstract type EC2Type_R6GD_Medium <: EC2Type_R6GD end +abstract type EC2Type_R6GD_xLarge <: EC2Type_R6GD end +abstract type EC2Type_R6GD_2xLarge <: EC2Type_R6GD end +abstract type EC2Type_R6GD_4xLarge <: EC2Type_R6GD end +abstract type EC2Type_R6GD_8xLarge <: EC2Type_R6GD end +abstract type EC2Type_R6GD_12xLarge <: EC2Type_R6GD end +abstract type EC2Type_R6GD_16xLarge <: EC2Type_R6GD end + +abstract type EC2Type_R6I_Metal <: EC2Type_R6I end +abstract type EC2Type_R6I_Large <: EC2Type_R6I end +abstract type EC2Type_R6I_xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_2xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_4xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_8xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_12xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_16xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_24xLarge <: EC2Type_R6I end +abstract type EC2Type_R6I_32xLarge <: EC2Type_R6I end + +abstract type EC2Type_R6ID_Metal <: EC2Type_R6ID end +abstract type EC2Type_R6ID_Large <: EC2Type_R6ID end +abstract type EC2Type_R6ID_xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_2xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_4xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_8xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_12xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_16xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_24xLarge <: EC2Type_R6ID end +abstract type EC2Type_R6ID_32xLarge <: EC2Type_R6ID end + +abstract type EC2Type_R5 <: EC2Type end +abstract type EC2Type_R5D <: EC2Type_R5 end +abstract type EC2Type_R5A <: EC2Type_R5 end +abstract type EC2Type_R5B <: EC2Type_R5 end +abstract type EC2Type_R5N <: EC2Type_R5 end +abstract type EC2Type_R5AD <: EC2Type_R5A end +abstract type EC2Type_R5DN <: EC2Type_R5N end + +abstract type EC2Type_R5_Metal <: EC2Type_R5 end +abstract type EC2Type_R5_Large <: EC2Type_R5 end +abstract type EC2Type_R5_xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_2xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_4xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_8xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_12xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_16xLarge <: EC2Type_R5 end +abstract type EC2Type_R5_24xLarge <: EC2Type_R5 end + +abstract type EC2Type_R5D_Metal <: EC2Type_R5D end +abstract type EC2Type_R5D_Large <: EC2Type_R5D end +abstract type EC2Type_R5D_xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_2xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_4xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_8xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_12xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_16xLarge <: EC2Type_R5D end +abstract type EC2Type_R5D_24xLarge <: EC2Type_R5D end + +abstract type EC2Type_R5A_Large <: EC2Type_R5A end +abstract type EC2Type_R5A_xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_2xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_4xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_8xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_12xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_16xLarge <: EC2Type_R5A end +abstract type EC2Type_R5A_24xLarge <: EC2Type_R5A end + +abstract type EC2Type_R5AD_Large <: EC2Type_R5AD end +abstract type EC2Type_R5AD_xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_2xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_4xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_8xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_12xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_16xLarge <: EC2Type_R5AD end +abstract type EC2Type_R5AD_24xLarge <: EC2Type_R5AD end + +abstract type EC2Type_R5B_Metal <: EC2Type_R5B end +abstract type EC2Type_R5B_Large <: EC2Type_R5B end +abstract type EC2Type_R5B_xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_2xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_4xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_8xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_12xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_16xLarge <: EC2Type_R5B end +abstract type EC2Type_R5B_24xLarge <: EC2Type_R5B end + +abstract type EC2Type_R5N_Metal <: EC2Type_R5N end +abstract type EC2Type_R5N_Large <: EC2Type_R5N end +abstract type EC2Type_R5N_xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_2xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_4xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_8xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_12xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_16xLarge <: EC2Type_R5N end +abstract type EC2Type_R5N_24xLarge <: EC2Type_R5N end + +abstract type EC2Type_R5DN_Metal <: EC2Type_R5DN end +abstract type EC2Type_R5DN_Large <: EC2Type_R5DN end +abstract type EC2Type_R5DN_xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_2xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_4xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_8xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_12xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_16xLarge <: EC2Type_R5DN end +abstract type EC2Type_R5DN_24xLarge <: EC2Type_R5DN end + +abstract type EC2Type_R4 <: EC2Type end + +abstract type EC2Type_R4_Large <: EC2Type_R4 end +abstract type EC2Type_R4_xLarge <: EC2Type_R4 end +abstract type EC2Type_R4_2xLarge <: EC2Type_R4 end +abstract type EC2Type_R4_4xLarge <: EC2Type_R4 end +abstract type EC2Type_R4_8xLarge <: EC2Type_R4 end +abstract type EC2Type_R4_16xLarge <: EC2Type_R4 end + +abstract type EC2Type_X2 <: EC2Type end +abstract type EC2Type_X2GD <: EC2Type_X2 end +abstract type EC2Type_X2IDN <: EC2Type_X2 end +abstract type EC2Type_X2IEDN <: EC2Type_X2 end +abstract type EC2Type_X2IEZN <: EC2Type_X2 end + +abstract type EC2Type_X2GD_Metal <: EC2Type_X2GD end +abstract type EC2Type_X2GD_Large <: EC2Type_X2GD end +abstract type EC2Type_X2GD_Medium <: EC2Type_X2GD end +abstract type EC2Type_X2GD_xLarge <: EC2Type_X2GD end +abstract type EC2Type_X2GD_2xLarge <: EC2Type_X2GD end +abstract type EC2Type_X2GD_4xLarge <: EC2Type_X2GD end +abstract type EC2Type_X2GD_8xLarge <: EC2Type_X2GD end +abstract type EC2Type_X2GD_12xLarge <: EC2Type_X2GD end +abstract type EC2Type_X2GD_16xLarge <: EC2Type_X2GD end + +abstract type EC2Type_X2IDN_Metal <: EC2Type_X2IDN end +abstract type EC2Type_X2IDN_16xLarge <: EC2Type_X2IDN end +abstract type EC2Type_X2IDN_24xLarge <: EC2Type_X2IDN end +abstract type EC2Type_X2IDN_32xLarge <: EC2Type_X2IDN end + +abstract type EC2Type_X2IEDN_Metal <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_2xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_4xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_8xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_16xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_24xLarge <: EC2Type_X2IEDN end +abstract type EC2Type_X2IEDN_32xLarge <: EC2Type_X2IEDN end + +abstract type EC2Type_X2IEZN_Metal <: EC2Type_X2IEZN end +abstract type EC2Type_X2IEZN_2xLarge <: EC2Type_X2IEZN end +abstract type EC2Type_X2IEZN_4xLarge <: EC2Type_X2IEZN end +abstract type EC2Type_X2IEZN_6xLarge <: EC2Type_X2IEZN end +abstract type EC2Type_X2IEZN_8xLarge <: EC2Type_X2IEZN end +abstract type EC2Type_X2IEZN_12xLarge <: EC2Type_X2IEZN end + +abstract type EC2Type_X1 <: EC2Type end +abstract type EC2Type_X1E <: EC2Type_X1 end + +abstract type EC2Type_X1E_xLarge <: EC2Type_X1E end +abstract type EC2Type_X1E_2xLarge <: EC2Type_X1E end +abstract type EC2Type_X1E_4xLarge <: EC2Type_X1E end +abstract type EC2Type_X1E_8xLarge <: EC2Type_X1E end +abstract type EC2Type_X1E_16xLarge <: EC2Type_X1E end +abstract type EC2Type_X1E_32xLarge <: EC2Type_X1E end + +abstract type EC2Type_X1_16xLarge <: EC2Type_X1 end +abstract type EC2Type_X1_32xLarge <: EC2Type_X1 end + +abstract type EC2Type_U <: EC2Type end +abstract type EC2Type_U3TB1 <: EC2Type_U end +abstract type EC2Type_U6TB1 <: EC2Type_U end +abstract type EC2Type_U9TB1 <: EC2Type_U end +abstract type EC2Type_U12TB1 <: EC2Type_U end +abstract type EC2Type_U18TB1 <: EC2Type_U end +abstract type EC2Type_U24TB1 <: EC2Type_U end + +abstract type EC2Type_U3TB1_56xLarge <: EC2Type_U3TB1 end + +abstract type EC2Type_U6TB1_Metal <: EC2Type_U6TB1 end +abstract type EC2Type_U6TB1_56xLarge <: EC2Type_U6TB1 end +abstract type EC2Type_U6TB1_112xLarge <: EC2Type_U6TB1 end + +abstract type EC2Type_U9TB1_Metal <: EC2Type_U9TB1 end +abstract type EC2Type_U9TB1_112xLarge <: EC2Type_U9TB1 end + +abstract type EC2Type_U12TB1_Metal <: EC2Type_U12TB1 end +abstract type EC2Type_U12TB1_112xLarge <: EC2Type_U12TB1 end + +abstract type EC2Type_U18TB1_Metal <: EC2Type_U18TB1 end + +abstract type EC2Type_U24TB1_Metal <: EC2Type_U24TB1 end + +abstract type EC2Type_Z1D <: EC2Type end + +abstract type EC2Type_Z1D_Metal <: EC2Type_Z1D end +abstract type EC2Type_Z1D_Large <: EC2Type_Z1D end +abstract type EC2Type_Z1D_xLarge <: EC2Type_Z1D end +abstract type EC2Type_Z1D_2xLarge <: EC2Type_Z1D end +abstract type EC2Type_Z1D_3xLarge <: EC2Type_Z1D end +abstract type EC2Type_Z1D_6xLarge <: EC2Type_Z1D end +abstract type EC2Type_Z1D_12xLarge <: EC2Type_Z1D end + +## accelerated computing instances +abstract type EC2Type_P4D <: EC2Type end +abstract type EC2Type_P4DE <: EC2Type_P4D end + +abstract type EC2Type_P4D_24xLarge <: EC2Type_P4D end +abstract type EC2Type_P4DE_24xLarge <: EC2Type_P4DE end # instance type in preview + +abstract type EC2Type_P3 <: EC2Type end +abstract type EC2Type_P3DN <: EC2Type_P3 end + +abstract type EC2Type_P3_2xLarge <: EC2Type_P3 end +abstract type EC2Type_P3_8xLarge <: EC2Type_P3 end +abstract type EC2Type_P3_16xLarge <: EC2Type_P3 end + +abstract type EC2Type_P3DN_24xLarge <: EC2Type_P3DN end + +abstract type EC2Type_P2 <: EC2Type end + +abstract type EC2Type_P2_xLarge <: EC2Type_P2 end +abstract type EC2Type_P2_8xLarge <: EC2Type_P2 end +abstract type EC2Type_P2_16xLarge <: EC2Type_P2 end + +abstract type EC2Type_DL1 <: EC2Type end + +abstract type EC2Type_DL1_24xLarge <: EC2Type_DL1 end + +abstract type EC2Type_INF1 <: EC2Type end + +abstract type EC2Type_INF1_xLarge <: EC2Type_INF1 end +abstract type EC2Type_INF1_2xLarge <: EC2Type_INF1 end +abstract type EC2Type_INF1_6xLarge <: EC2Type_INF1 end +abstract type EC2Type_INF1_24xLarge <: EC2Type_INF1 end + +abstract type EC2Type_G5 <: EC2Type end +abstract type EC2Type_G5G <: EC2Type_G5 end + +abstract type EC2Type_G5_xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_2xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_4xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_8xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_12xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_16xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_24xLarge <: EC2Type_G5 end +abstract type EC2Type_G5_48xLarge <: EC2Type_G5 end + +abstract type EC2Type_G5G_Metal <: EC2Type_G5G end +abstract type EC2Type_G5G_xLarge <: EC2Type_G5G end +abstract type EC2Type_G5G_2xLarge <: EC2Type_G5G end +abstract type EC2Type_G5G_4xLarge <: EC2Type_G5G end +abstract type EC2Type_G5G_8xLarge <: EC2Type_G5G end +abstract type EC2Type_G5G_16xLarge <: EC2Type_G5G end + +abstract type EC2Type_G4 <: EC2Type end +abstract type EC2Type_G4DN <: EC2Type_G4 end +abstract type EC2Type_G4AD <: EC2Type_G4 end + +abstract type EC2Type_G4DN_Metal <: EC2Type_G4DN end +abstract type EC2Type_G4DN_xLarge <: EC2Type_G4DN end +abstract type EC2Type_G4DN_2xLarge <: EC2Type_G4DN end +abstract type EC2Type_G4DN_4xLarge <: EC2Type_G4DN end +abstract type EC2Type_G4DN_8xLarge <: EC2Type_G4DN end +abstract type EC2Type_G4DN_12xLarge <: EC2Type_G4DN end +abstract type EC2Type_G4DN_16xLarge <: EC2Type_G4DN end + +abstract type EC2Type_G4AD_xLarge <: EC2Type_G4AD end +abstract type EC2Type_G4AD_2xLarge <: EC2Type_G4AD end +abstract type EC2Type_G4AD_4xLarge <: EC2Type_G4AD end +abstract type EC2Type_G4AD_8xLarge <: EC2Type_G4AD end +abstract type EC2Type_G4AD_16xLarge <: EC2Type_G4AD end + +abstract type EC2Type_G3 <: EC2Type end +abstract type EC2Type_G3S <: EC2Type_G3 end + +abstract type EC2Type_G3_4xLarge <: EC2Type_G3 end +abstract type EC2Type_G3_8xLarge <: EC2Type_G3 end +abstract type EC2Type_G3_16xLarge <: EC2Type_G3 end + +abstract type EC2Type_G3S_xLarge <: EC2Type_G3S end + +abstract type EC2Type_F1 <: EC2Type end + +abstract type EC2Type_F1_2xLarge <: EC2Type_F1 end +abstract type EC2Type_F1_4xLarge <: EC2Type_F1 end +abstract type EC2Type_F1_16xLarge <: EC2Type_F1 end + +abstract type EC2Type_VT1 <: EC2Type end + +abstract type EC2Type_VT1_3xLarge <: EC2Type_VT1 end +abstract type EC2Type_VT1_6xLarge <: EC2Type_VT1 end +abstract type EC2Type_VT1_24xLarge <: EC2Type_VT1 end + +## storage optimized instances + +abstract type EC2Type_IM4GN <: EC2Type end + +abstract type EC2Type_IM4GN_Large <: EC2Type_IM4GN end +abstract type EC2Type_IM4GN_xLarge <: EC2Type_IM4GN end +abstract type EC2Type_IM4GN_2xLarge <: EC2Type_IM4GN end +abstract type EC2Type_IM4GN_4xLarge <: EC2Type_IM4GN end +abstract type EC2Type_IM4GN_8xLarge <: EC2Type_IM4GN end +abstract type EC2Type_IM4GN_16xLarge <: EC2Type_IM4GN end + +abstract type EC2Type_IS4GEN <: EC2Type end + +abstract type EC2Type_IS4GEN_Large <: EC2Type_IS4GEN end +abstract type EC2Type_IS4GEN_Medium <: EC2Type_IS4GEN end +abstract type EC2Type_IS4GEN_xLarge <: EC2Type_IS4GEN end +abstract type EC2Type_IS4GEN_2xLarge <: EC2Type_IS4GEN end +abstract type EC2Type_IS4GEN_4xLarge <: EC2Type_IS4GEN end +abstract type EC2Type_IS4GEN_8xLarge <: EC2Type_IS4GEN end + +abstract type EC2Type_I4I <: EC2Type end + +abstract type EC2Type_I4I_Metal <: EC2Type_I4I end +abstract type EC2Type_I4I_Large <: EC2Type_I4I end +abstract type EC2Type_I4I_xLarge <: EC2Type_I4I end +abstract type EC2Type_I4I_2xLarge <: EC2Type_I4I end +abstract type EC2Type_I4I_4xLarge <: EC2Type_I4I end +abstract type EC2Type_I4I_8xLarge <: EC2Type_I4I end +abstract type EC2Type_I4I_16xLarge <: EC2Type_I4I end +abstract type EC2Type_I4I_32xLarge <: EC2Type_I4I end + +abstract type EC2Type_I3 <: EC2Type end +abstract type EC2Type_I3EN <: EC2Type_I3 end + +abstract type EC2Type_I3_Metal <: EC2Type_I3 end +abstract type EC2Type_I3_Large <: EC2Type_I3 end +abstract type EC2Type_I3_xLarge <: EC2Type_I3 end +abstract type EC2Type_I3_2xLarge <: EC2Type_I3 end +abstract type EC2Type_I3_4xLarge <: EC2Type_I3 end +abstract type EC2Type_I3_8xLarge <: EC2Type_I3 end +abstract type EC2Type_I3_16xLarge <: EC2Type_I3 end + +abstract type EC2Type_I3EN_Metal <: EC2Type_I3EN end +abstract type EC2Type_I3EN_Large <: EC2Type_I3EN end +abstract type EC2Type_I3EN_xLarge <: EC2Type_I3EN end +abstract type EC2Type_I3EN_2xLarge <: EC2Type_I3EN end +abstract type EC2Type_I3EN_3xLarge <: EC2Type_I3EN end +abstract type EC2Type_I3EN_6xLarge <: EC2Type_I3EN end +abstract type EC2Type_I3EN_12xLarge <: EC2Type_I3EN end +abstract type EC2Type_I3EN_24xLarge <: EC2Type_I3EN end + +abstract type EC2Type_D2 <: EC2Type end + +abstract type EC2Type_D2_xLarge <: EC2Type_D2 end +abstract type EC2Type_D2_2xLarge <: EC2Type_D2 end +abstract type EC2Type_D2_4xLarge <: EC2Type_D2 end +abstract type EC2Type_D2_8xLarge <: EC2Type_D2 end + +abstract type EC2Type_D3 <: EC2Type end +abstract type EC2Type_D3EN <: EC2Type_D3 end + +abstract type EC2Type_D3_xLarge <: EC2Type_D3 end +abstract type EC2Type_D3_2xLarge <: EC2Type_D3 end +abstract type EC2Type_D3_4xLarge <: EC2Type_D3 end +abstract type EC2Type_D3_8xLarge <: EC2Type_D3 end + +abstract type EC2Type_D3EN_xLarge <: EC2Type_D3EN end +abstract type EC2Type_D3EN_2xLarge <: EC2Type_D3EN end +abstract type EC2Type_D3EN_4xLarge <: EC2Type_D3EN end +abstract type EC2Type_D3EN_6xLarge <: EC2Type_D3EN end +abstract type EC2Type_D3EN_8xLarge <: EC2Type_D3EN end +abstract type EC2Type_D3EN_12xLarge <: EC2Type_D3EN end + +abstract type EC2Type_H1 <: EC2Type end + +abstract type EC2Type_H1_2xLarge <: EC2Type_H1 end +abstract type EC2Type_H1_4xLarge <: EC2Type_H1 end +abstract type EC2Type_H1_8xLarge <: EC2Type_H1 end +abstract type EC2Type_H1_16xLarge <: EC2Type_H1 end + +## +function get_instance_info(::Type{<:AmazonEC2}) + try + global instance_id = JSON.parse(String(HTTP.request("GET", "http://169.254.169.254/latest/dynamic/instance-identity/document").body)) + # return instance_info["instanceType"], instance_info["region"] + catch e + return nothing + end + + database_path = @get_scratch!("database_path") + machinetypedb_ec2_url = "https://raw.githubusercontent.com/PlatformAwareProgramming/PlatformAware.jl/aws_ec2/src/features/qualifiers/ec2/db-machinetypes.ec2.csv" + machinetypedb_ec2_fname = joinpath(database_path,basename(machinetypedb_ec2_url)) + try_download(machinetypedb_ec2_url, machinetypedb_ec2_fname) + machinetype_dict_ec2 = readDB2(machinetypedb_ec2_fname) + instance_info = machinetype_dict_ec2[instance_id["instanceType"]] + + return instance_info +end + + + + +# AWS EC2 locale types + +abstract type EC2Zone end +abstract type EC2Zone_US end +abstract type EC2Zone_Europe end + + +abstract type EC2Zone_USEast1 <: EC2Zone end # Norte da Vírginia + +abstract type EC2Zone_USEast1_bos_1a <: EC2Zone_USEast1 end # Boston +abstract type EC2Zone_USEast1_chi_1a <: EC2Zone_USEast1 end # ? +abstract type EC2Zone_USEast1_dfw_1a <: EC2Zone_USEast1 end # ? + + +function getInstanceLocaleType(::Type{<:AmazonEC2}, locale_desc) + EC2InstanceZoneDict[locale_desc] +end + + +EC2InstanceZoneDict = Dict( + "us-east-1" => EC2Zone_USEast1, + "us-east-1-bos-1a" => EC2Zone_USEast1_bos_1a, + "us-east-1-chi-1a" => EC2Zone_USEast1_chi_1a, + "us-east-1-dfw-1a" => EC2Zone_USEast1_dfw_1a + # ... + ) + +function getNodeFeatures(provider::Type{<:AmazonEC2}, node_features) + + instance_info = get_instance_info(provider) + if (!isnothing(instance_info)) + node_features["node_count"] = 1 + node_features["node_provider"] = "AmazonEC2" + node_features["node_virtual"] = "Yes" + node_features["node_dedicated"] = "Yes" # ??? + node_features["node_machinefamily"] = instance_info["node_machinefamily"] + node_features["node_machinetype"] = instance_info["node_machinesize"] + node_features["node_vcpus_count"] = instance_info["node_vcpus_count"] + end + + return instance_info +end + \ No newline at end of file diff --git a/src/platforms/gcp/gcp.jl b/src/features/qualifiers/gcp/gcp.jl similarity index 81% rename from src/platforms/gcp/gcp.jl rename to src/features/qualifiers/gcp/gcp.jl index d9dedc2..24c085b 100644 --- a/src/platforms/gcp/gcp.jl +++ b/src/features/qualifiers/gcp/gcp.jl @@ -15,3 +15,7 @@ abstract type GoogleCloud <: CloudProvider end; export GoogleCloud # machine size types + +function getNodeFeatures(provider::Type{<:GoogleCloud}, node_features) + nothing +end \ No newline at end of file diff --git a/src/features/qualifiers/general.jl b/src/features/qualifiers/general.jl new file mode 100644 index 0000000..f13a812 --- /dev/null +++ b/src/features/qualifiers/general.jl @@ -0,0 +1,101 @@ +# ------------------------------------------------------------------ +# Licensed under the MIT License. See LICENCE in the project root. +# ------------------------------------------------------------------ + + +# query + +abstract type Query <: QualifierFeature end +abstract type Yes <: Query end +abstract type No <: Query end + +# maintainer + +abstract type Provider <: QualifierFeature end +abstract type OnPremise <: Provider end +abstract type CloudProvider <: Provider end + +# machine + +abstract type MachineFamily <: QualifierFeature end +abstract type MachineType <: QualifierFeature end + +# locale + +abstract type Locale <: QualifierFeature end + +# manufacturer + +abstract type Manufacturer <: QualifierFeature end + +# processor + +abstract type ProcessorMicroarchitecture <: QualifierFeature end +abstract type ProcessorISA <: QualifierFeature end +abstract type ProcessorSIMD <: ProcessorISA end + +abstract type Processor end + +# accelerator + +abstract type AcceleratorType <: QualifierFeature end +abstract type AcceleratorArchitecture <: QualifierFeature end +abstract type AcceleratorBackend <: QualifierFeature end +abstract type AcceleratorProcessor <: QualifierFeature end +abstract type Accelerator <: QualifierFeature end + +abstract type XPU <: AcceleratorType end +abstract type GPU <: XPU end +abstract type TPU <: XPU end +abstract type IPU <: XPU end + +abstract type FPGA <: AcceleratorType end + +abstract type MIC <: AcceleratorType end + +#interconnection +abstract type InterconnectionTopology <: QualifierFeature end +abstract type Interconnection <: QualifierFeature end + +# storage + +abstract type StorageType <: QualifierFeature end +abstract type StorageInterface <: QualifierFeature end + +# memory system + +abstract type MemoryType <: QualifierFeature end + + +# cache + +abstract type CacheMapping <: QualifierFeature end + +function apitype(api, version_number) + + version = isnothing(version_number) ? "API" : string(version_number) + + version = replace(version, "." => "_") + + dt = AcceleratorBackend + + if (api == :CUDA) return Tuple{get_qualifier("CUDA_$version"),dt,dt,dt,dt,dt,dt} + elseif (api == :OpenCL) return Tuple{dt,get_qualifier("OpenCL_$version"),dt,dt,dt,dt,dt} + elseif (api == :OpenACC) return Tuple{dt,dt,get_qualifier("OpenACC_$version"),dt,dt,dt,dt} + elseif (api == :OneAPI) return Tuple{dt,dt,dt,get_qualifier("OneAPI_$version"),dt,dt,dt} + elseif (api == :OpenGL) return Tuple{dt,dt,dt,dt,get_qualifier("OpenGL_$version"),dt,dt} + elseif (api == :Vulkan) return Tuple{dt,dt,dt,dt,dt,get_qualifier("Vulkan_$version"),dt} + elseif (api == :DirectX) return Tuple{dt,dt,dt,dt,dt,dt,get_qualifier("DirectX_$version")} + else return Tuple{dt,dt,dt,dt,dt,dt} + end + +end + +macro api(api, version_number) + apitype(api,version_number) +end + +macro api(api) + apitype(api,nothing) +end + diff --git a/src/platforms/intel/db-accelerators.Intel.csv b/src/features/qualifiers/intel/db-accelerators.Intel.csv similarity index 60% rename from src/platforms/intel/db-accelerators.Intel.csv rename to src/features/qualifiers/intel/db-accelerators.Intel.csv index 9c9281f..0ed1b21 100644 --- a/src/platforms/intel/db-accelerators.Intel.csv +++ b/src/features/qualifiers/intel/db-accelerators.Intel.csv @@ -1,20 +1,20 @@ -,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memorysize,accelerator_tdp,#chips,chip -Intel;Xeon;Phi,7290F,IntelXeonPhi_7290F,MIC,Intel,OpenMP,KnightsLanding,16G,260,72,KnightsLanding -Intel;Xeon;Phi,7250F,IntelXeonPhi_7250F,MIC,Intel,OpenMP,KnightsLanding,16G,230,68,KnightsLanding -Intel;Xeon;Phi,7230F,IntelXeonPhi_7230F,MIC,Intel,OpenMP,KnightsLanding,16G,230,64,KnightsLanding -Intel;Xeon;Phi,7210F,IntelXeonPhi_7210F,MIC,Intel,OpenMP,KnightsLanding,16G,230,64,KnightsLanding -Intel;Xeon;Phi,7120X,IntelXeonPhi_7120X,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner -Intel;Xeon;Phi,7120P,IntelXeonPhi_7120P,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner -Intel;Xeon;Phi,7120D,IntelXeonPhi_7120D,MIC,Intel,OpenMP,KnightsCorner,16G,270,61,KnightsCorner -Intel;Xeon;Phi,7120A,IntelXeonPhi_7120A,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner -Intel;Xeon;Phi,5120D,IntelXeonPhi_5120D,MIC,Intel,OpenMP,KnightsCorner,8G,245,60,KnightsCorner -Intel;Xeon;Phi,5110P,IntelXeonPhi_5110P,MIC,Intel,OpenMP,KnightsCorner,8G,225,60,KnightsCorner -Intel;Xeon;Phi,3120P,IntelXeonPhi_3120P,MIC,Intel,OpenMP,KnightsCorner,6G,300,57,KnightsCorner -Intel;Xeon;Phi,3120A,IntelXeonPhi_3120A,MIC,Intel,OpenMP,KnightsCorner,6G,300,57,KnightsCorner -Intel;Xeon;Phi,7295,IntelXeonPhi_7295,MIC,Intel,OpenMP,KnightsMill,16G,320,72,KnightsMill -Intel;Xeon;Phi,7290,IntelXeonPhi_7290,MIC,Intel,OpenMP,KnightsLanding,16G,245,72,KnightsLanding -Intel;Xeon;Phi,7285,IntelXeonPhi_7285,MIC,Intel,OpenMP,KnightsMill,16G,250,68,KnightsLanding -Intel;Xeon;Phi,7250,IntelXeonPhi_7250,MIC,Intel,OpenMP,KnightsLanding,16G,215,68,KnightsLandingv -Intel;Xeon;Phi,7235,IntelXeonPhi_7235,MIC,Intel,OpenMP,KnightsMill,16G,250,64,KnightsLanding -Intel;Xeon;Phi,7230,IntelXeonPhi_7230,MIC,Intel,OpenMP,KnightsLanding,16G,215,64,KnightsLanding -Intel;Xeon;Phi,7210,IntelXeonPhi_7210,MIC,Intel,OpenMP,KnightsLanding,6G,215,64,KnightsLanding \ No newline at end of file +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memory_size,accelerator_tdp,accelerator_processor_count,accelerator_processor,accelerator_memory_type +Intel;Xeon;Phi,7290F,IntelXeonPhi_7290F,MIC,Intel,OpenMP,KnightsLanding,16G,260,72,KnightsLanding,DDR4 +Intel;Xeon;Phi,7250F,IntelXeonPhi_7250F,MIC,Intel,OpenMP,KnightsLanding,16G,230,68,KnightsLanding,DDR4 +Intel;Xeon;Phi,7230F,IntelXeonPhi_7230F,MIC,Intel,OpenMP,KnightsLanding,16G,230,64,KnightsLanding,DDR4 +Intel;Xeon;Phi,7210F,IntelXeonPhi_7210F,MIC,Intel,OpenMP,KnightsLanding,16G,230,64,KnightsLanding,DDR4 +Intel;Xeon;Phi,7120X,IntelXeonPhi_7120X,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner,DDR4 +Intel;Xeon;Phi,7120P,IntelXeonPhi_7120P,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner,DDR4 +Intel;Xeon;Phi,7120D,IntelXeonPhi_7120D,MIC,Intel,OpenMP,KnightsCorner,16G,270,61,KnightsCorner,DDR4 +Intel;Xeon;Phi,7120A,IntelXeonPhi_7120A,MIC,Intel,OpenMP,KnightsCorner,16G,300,61,KnightsCorner,DDR4 +Intel;Xeon;Phi,5120D,IntelXeonPhi_5120D,MIC,Intel,OpenMP,KnightsCorner,8G,245,60,KnightsCorner,GDDR5 +Intel;Xeon;Phi,5110P,IntelXeonPhi_5110P,MIC,Intel,OpenMP,KnightsCorner,8G,225,60,KnightsCorner,GDDR5 +Intel;Xeon;Phi,3120P,IntelXeonPhi_3120P,MIC,Intel,OpenMP,KnightsCorner,6G,300,57,KnightsCorner,GDDR5 +Intel;Xeon;Phi,3120A,IntelXeonPhi_3120A,MIC,Intel,OpenMP,KnightsCorner,6G,300,57,KnightsCorner,GDDR5 +Intel;Xeon;Phi,7295,IntelXeonPhi_7295,MIC,Intel,OpenMP,KnightsMill,16G,320,72,KnightsMill,DDR4 +Intel;Xeon;Phi,7290,IntelXeonPhi_7290,MIC,Intel,OpenMP,KnightsLanding,16G,245,72,KnightsLanding,DDR4 +Intel;Xeon;Phi,7285,IntelXeonPhi_7285,MIC,Intel,OpenMP,KnightsMill,16G,250,68,KnightsLanding,DDR4 +Intel;Xeon;Phi,7250,IntelXeonPhi_7250,MIC,Intel,OpenMP,KnightsLanding,16G,215,68,KnightsLandingv,DDR4 +Intel;Xeon;Phi,7235,IntelXeonPhi_7235,MIC,Intel,OpenMP,KnightsMill,16G,250,64,KnightsLanding,DDR4 +Intel;Xeon;Phi,7230,IntelXeonPhi_7230,MIC,Intel,OpenMP,KnightsLanding,16G,215,64,KnightsLanding,DDR4 +Intel;Xeon;Phi,7210,IntelXeonPhi_7210,MIC,Intel,OpenMP,KnightsLanding,6G,215,64,KnightsLanding,DDR4 \ No newline at end of file diff --git a/src/platforms/intel/db-processors.Intel.csv b/src/features/qualifiers/intel/db-processors.Intel.csv similarity index 99% rename from src/platforms/intel/db-processors.Intel.csv rename to src/features/qualifiers/intel/db-processors.Intel.csv index 4f536ab..da03882 100644 --- a/src/platforms/intel/db-processors.Intel.csv +++ b/src/features/qualifiers/intel/db-processors.Intel.csv @@ -1,4 +1,4 @@ -,,processor_core_count,processor_clock,processor_core_threadscount,processor_isa,processor_simd,processor_microarchitecture,processor,processor_manufacturer,processor_tdp,processor_core_L1_size,processor_core_L2_size,processor_L3_size +,,processor_core_count,processor_clock,processor_core_threads_count,processor_isa,processor_simd,processor_microarchitecture,processor,processor_manufacturer,processor_tdp,processor_core_L1_size,processor_core_L2_size,processor_L3_size Intel;Xeon;W,3275M,28,2.50G,56,64-bit,AVX-512,CascadeLake,IntelXeon_W_3275M,Intel,205,unset,unset,unset Intel;Xeon;W,3265M,24,2.70G,48,64-bit,AVX-512,CascadeLake,IntelXeon_W_3265M,Intel,205,unset,unset,unset Intel;Xeon;W,3245M,16,3.20G,32,64-bit,AVX-512,CascadeLake,IntelXeon_W_3245M,Intel,205,unset,unset,unset diff --git a/src/platforms/intel/intel.jl b/src/features/qualifiers/intel/intel.jl similarity index 100% rename from src/platforms/intel/intel.jl rename to src/features/qualifiers/intel/intel.jl diff --git a/src/platforms/intel/intel_accelerators_xeonphi.jl b/src/features/qualifiers/intel/intel_accelerators_xeonphi.jl similarity index 100% rename from src/platforms/intel/intel_accelerators_xeonphi.jl rename to src/features/qualifiers/intel/intel_accelerators_xeonphi.jl diff --git a/src/platforms/intel/intel_processors_atom.jl b/src/features/qualifiers/intel/intel_processors_atom.jl similarity index 100% rename from src/platforms/intel/intel_processors_atom.jl rename to src/features/qualifiers/intel/intel_processors_atom.jl diff --git a/src/platforms/intel/intel_processors_celeron.jl b/src/features/qualifiers/intel/intel_processors_celeron.jl similarity index 100% rename from src/platforms/intel/intel_processors_celeron.jl rename to src/features/qualifiers/intel/intel_processors_celeron.jl diff --git a/src/platforms/intel/intel_processors_core.jl b/src/features/qualifiers/intel/intel_processors_core.jl similarity index 100% rename from src/platforms/intel/intel_processors_core.jl rename to src/features/qualifiers/intel/intel_processors_core.jl diff --git a/src/features/qualifiers/intel/intel_processors_data.txt b/src/features/qualifiers/intel/intel_processors_data.txt new file mode 100644 index 0000000..84815b4 --- /dev/null +++ b/src/features/qualifiers/intel/intel_processors_data.txt @@ -0,0 +1,341009 @@ +[ + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Silver 4216 processor (16 Cores, 2.1Ghz, 100W ) CD8069504213901 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (2) Intel® Solid State Drive (SSD) DC P4610 1.6TB (2.5\" U.2 NVMe) SSDPE2KE016T801 (6) Intel® Solid State Drive (SSD) D3 S4510 1.92TB, (2.5” U.2 SATA) SSDSC2KB019T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (12) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "11.52TB Raw Storage (0.48TB boot device, 3.2TB Cache Tier, 11.52TB Capacity Tier)", + "MM#": "99A3JN", + "Ordering Code": "MCB2208WFAF4R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S2600WF0R, 2U1N, 8x2.5\", R2208WF0ZSR (2) Intel® Xeon Gold 5218R processor (20 Cores, 2.1Ghz, 125W ) CD8069504446300 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (2) Intel® Optane™ Solid State Drive (SSD) DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (4) Intel® Solid State Drive (SSD) DC P4510 4.0TB (2.5\" U.2 NVMe) SSDPE2KX040T801 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm Cable Kit A2U8PSWCXCXK1 (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (12) 16GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Intel® Optane™ DC 128GB Persistent Memory Module (1.0) 4 Pack NMA1XXD128GPSU4 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI - includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "512GB Raw Memory (192GB DDR4 RAM, 512GB DCPMM)", + "Included Storage": "16TB Raw Storage (0.48TB boot device, 0.75TB Cache Tier, 16TB Capacity Tier)", + "MM#": "99A3JJ", + "Ordering Code": "MCB2208WFAF8R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "Yes", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "85 W", + "System Board": "Intel® Compute Module HNS2600BPS24R", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) 2U Chassis (24x2.5\") H2224XXLR3 (4) Compute Module (w/TPM 2.0, 2x10GbE SFP+ & 1GbE ,RDMA) HNS2600BPS24R (8) Intel® Xeon® Silver 4210R processor (10 Cores, 2.4Ghz, 100W ) CD8069504344500 (4) Bridge Board - 12G, IT mode-only AHWBPBGB24 (4) Intel® Remote Management Module Lite 2 Accessory Key AXXRMM4LITE2 (4) Intel® Solid State Drive (SSD) DC P4101 256GB (M.2, 80mm) SSDPEKKA256G801 (8) Intel® Solid State Drive (SSD) D3 S4610 960GB (2.5\" U.2 SATA) SSDSC2KG960G801 (16) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (4 DIMMs per node/16 DIMMs per system) (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "Hybrid Storage Profile", + "Included Memory": "128GB (node) / 512GB (system) DDR4 RAM Raw Memory", + "Included Storage": "4 x 0.25TB boot device 7.6TB Cache TierCapacity Tier HDDs are customer supplied and NOT INCLUDED in the configuration. This model was certified with 16 x 2TB Seagate ST2000NX0243 drives", + "MM#": "99A3JV", + "Ordering Code": "MCB2224BPHY1R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Gold 5218R processor (20 Cores, 2.1Ghz, 125W ) CD8069504446300 (1) Intel® Optane™ DC 256GB Persistent Memory Module (1.0) 4 Pack NMA1XXD256GPSU4 (8) Intel® Solid State Drive (SSD) DC P4510 4.0TB (2.5\" U.2 NVMe) SSDPE2KX040T801 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm Cable Kit A2U8PSWCXCXK1 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (16) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI - includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "512GB DDR4 RAM Raw Memory", + "Included Storage": "32TB Raw Storage (0.48TB boot device, 1TB Cache Tier, 32TB Capacity Tier)", + "MM#": "99A3CH", + "Ordering Code": "MCB2208WFAF10R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Silver 4216 processor (16 Cores, 2.1Ghz, 100W ) CD8069504213901 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (2) Intel® Solid State Drive (SSD) DC P4610 1.6TB (2.5\" U.2 NVMe) SSDPE2KE016T801 (4) Intel® Solid State Drive (SSD) DC P4326 15.36TB (2.5\" U.2 NVMe) SSDPE2NV153T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm cable kit A2U8PSWCXCXK1 (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (12) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI - includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "30.4TB Raw Storage (0.48TB boot device, 3.2TB Cache Tier, 30.4TB Capacity Tier)", + "MM#": "99A3R9", + "Ordering Code": "MCB2208WFAF5R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Silver 4216 processor (16 Cores, 2.1Ghz, 100W ) CD8069504213901 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (8) Intel® Solid State Drive (SSD) DC P4510 2.0TB (2.5\" U.2 NVMe) SSDPE2KX020T801 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm Cable Kit A2U8PSWCXCXK1 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (12) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI - includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "16TB Raw Storage (0.48TB boot device, 16TB Capacity Tier)", + "MM#": "99A3JL", + "Ordering Code": "MCB2208WFAF6R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Gold 5218R processor (20 Cores, 2.1Ghz, 125W ) CD8069504446300 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (2) Intel® Solid State Drive (SSD) DC P4610 1.6TB (2.5\" U.2 NVMe) SSDPE2KE016T801 (6) Intel® Solid State Drive (SSD) DC P4510 2.0TB (2.5\" U.2 NVMe) SSDPE2KX020T801 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm Cable Kit A2U8PSWCXCXK1 (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (12) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI - includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "12TB Raw Storage (0.48TB boot device, 3.2TB Cache Tier, 12TB Capacity Tier)", + "MM#": "99A3JK", + "Ordering Code": "MCB2208WFAF7R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon Gold 5218R processor (20 Cores, 2.1Ghz, 125W ) CD8069504446300 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (4) Intel® Optane™ Solid State Drive (SSD) DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (12) Intel® Solid State Drive (SSD) DC P4510 2.0TB (2.5\" U.2 NVMe) SSDPE2KX020T801 (2) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) 2U 8x2.5 Combo HSBP A2U8X25S3PHS (2) OCuLink Cable – 875mm Cable Kit A2U8PSWCXCXK2 (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (2) OCuLink Cable - 700mm AXXCBL700CVCR (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (24) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI- includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "768GB DDR4 RAM Raw Memory", + "Included Storage": "24TB Raw Storage (0.48TB boot device, 1.5TB Cache Tier, 24TB Capacity Tier)", + "MM#": "99A3JH", + "Ordering Code": "MCB2208WFAF9R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "Yes", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Compute Module HNS2600BPS24R", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) 2U Chassis (24x2.5\") H2224XXLR3 (4) Compute Module (w/TPM 2.0, 2x10GbE SFP+ & 1GbE, RDMA) HNS2600BPS24R (8) Intel® Xeon Gold 5218R processor (20 Cores, 2.1Ghz, 125W ) CD8069504446300 (4) Intel® Solid State Drive (SSD) DC P4101 256GB (M.2, 80mm NVMe) SSDPEKKA256G801 (24) Intel® Solid State Drive (SSD) D3 S4510 1.92TB (2.5\" U.2 SATA) SSDSC2KB019T801 (4) Bridge Board - 12G, IT mode only AHWBPBGB24 (4) Intel® Remote Management Module Lite 2 accessory key AXXRMM4LITE2 (32) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (8 DIMMs per node/32 DIMMs per system) (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "256GB(node)/1024GB(system) DDR4 RAM Raw Memory", + "Included Storage": "46.08TB Raw Storage (4x 0.25TB boot device, 46.08TB Capacity Tier)", + "MM#": "99A3JR", + "Ordering Code": "MCB2224BPAF3R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for Microsoft Azure Stack HCI", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Microsoft Windows Server 2019* Software-Defined Data Center (SDDC) Premium", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2312WF0NPR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System 2U1N, 12x3.5\" R2312WF0NPR (2) Intel® Xeon Silver 4210R processor (10 Cores, 2.4Ghz, 100W ) CD8069504344500 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2, 80mm) SSDSCKKB480G801 (2) Intel® Solid State Drive (SSD) D3 S4510 1.92TB (2.5\" U.2 SATA) SSDSC2KB019T801 (2) Intel® Solid State Drive (SSD) DC P4610 1.6TB (2.5\" U.2 NVMe) SSDPE2KE016T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) Intel® RAID Expander RES3FV288 RES3FV288 (1) OCuLink Cable – 600mm AXXCBL600CVCR (1) OCuLink Cable - 620mm AXXCBL620CRCR (2) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (4) 32GB Micron* DDR4 RDIMM, 288-pin, 2666MHz (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Microsoft* Azure* Stack HCI includes Server Board, Chassis, Processor, Solid State Drives and third-party memory, optimized for Storage Spaces Direct and built with Microsoft* Windows* Server 2019 certified ingredients", + "Storage Profile": "Hybrid Storage Profile", + "Included Memory": "128GB DDR4 RAM Raw Memory", + "Included Storage": "0.48TB boot device3.2TB Cache Tier 13.84TB Cache Tier 2Capacity Tier HDDs are customer supplied and NOT INCLUDED. This model was certified with 4 x 2TB Seagate ST2000NX0243.", + "MM#": "99A3JT", + "Ordering Code": "MCB2312WFHY2R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel® Server System R2208WF0ZSR (2) Intel® Xeon® Gold 6230 Processors (20c, 2.1G, 125W) CD8069504193701 (1) Intel® SSD D3-S4510 Series (480GB, M.2 80mm SATA 6Gb/s) SSDSCKKB480G801 (4) Intel® Optane™ SSD DC P4800X Series (375GB, 2.5in PCIe x4, 3D XPoint™) SSDPE21K375GA01 (12) Intel® SSD DC P4510 Series (2.0TB, 2.5in) SSDPE2KX020T801 (1) Remote Management Module 4 Lite 2 AXXRMM4LITE2 (1) 2U Hot-swap 8x2.5inch SAS/NVMe Combo Drive Bay Kit A2U8X25S3PHS (2) 8-Port PCIe Gen3 x8 Switch AIC AXXP3SWX08080 (2) Cable Kit OCuLink* 2U 8 Port Switch #2 A2U8PSWCXCXK2 (1) Oculink Cable Kit AXXCBL530CVCR (1) Oculink Cable Kit AXXCBL470CVCR (2) Oculink Cable Kit AXXCBL700CVCR (1) 1300W AC CRPS 80+ Titanium PSU AXX1300TCRPS (1) Intel® Ethernet Network Connection OCP X527-DA4 X527DA40CPG1P5 (8) Intel® Optane™ Persistent Memory 128GB Module (1.0) NMA1XXD128GPSU4 (12) RDIMM 32GB - DDR4, 288-pin, 2666MHz (1) Trusted Platform Module 2.0 AXXTPMENC8", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "1TB Raw Memory (384GB DDR4 RAM, 1TB DCPMM)", + "Included Storage": "24TB Raw Storage (0.48TB boot device, 1.5TB Cache Tier, 24TB Capacity Tier)", + "MM#": "999HF4", + "Ordering Code": "VRN2208WFAF84R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "85 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon® Gold 5215 processor (10 Cores, 2.5GHz, 85W ) CD8069504214002 (1) Intel® Solid State Drive D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (1) Intel® Optane™ SSD DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (4) Intel® Solid State Drive D3 S4510 960GB (2.5in SATA) SSDSC2KB960G80 (1) Intel Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (4) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "128GB DDR4 RAM Raw Memory", + "Included Storage": "3.84TB Raw Storage (0.48TB boot device, 0.37TB Cache Tier, 3.84TB Capacity Tier)", + "MM#": "999HF9", + "Ordering Code": "VRN2208WFAF41R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel Xeon® Gold 5218 (16 Cores, 2.3Ghz, 125W) CD8069504193301 (1) Intel® Solid State Drive (SSD) D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (2) Intel® Optane™ SSD DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (6) Intel® Solid State Drive D3 S4510 1.92TB (2.5\" U.2 SATA) SSDSC2KB019T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (8) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "256GB DDR4 RAM Raw Memory", + "Included Storage": "11.52TB Raw Storage (0.48TB boot device, 0.75TB Cache Tier, 11.52TB Capacity Tier)", + "MM#": "999HF8", + "Ordering Code": "VRN2208WFAF61R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel Xeon® Gold 5218 (16 Cores, 2.3Ghz, 125W) CD8069504193301 (1) Intel® Solid State Drive D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (2) Intel® Optane™ SSD DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (6) Intel® Solid State Drive D3 S4510 1.92TB (2.5\" U.2 SATA) SSDSC2KB019T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (12) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "11.52TB Raw Storage (0.48TB boot device, 0.75GB Cache Tier, 11.52TB Capacity Tier)", + "MM#": "999HF7", + "Ordering Code": "VRN2208WFAF81R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel Xeon® Gold 5218 (16 Cores, 2.3Ghz, 125W) CD8069504193301 (1) Intel® Solid State Drive D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (2) Intel® Optane™ SSD DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (6) Intel® Solid State Drive DC P4510 2TB (2.5\" U.2 NVMe) SSDPE2KX020T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (1) OCuLink Cable – 725mm Cable Kit A2U8PSWCXCXK1 (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (12) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "384GB DDR4 RAM Raw Memory", + "Included Storage": "12TB Raw Storage (0.48TB boot device, 0.75TB Cache Tier, 12TB Capacity Tier)", + "MM#": "999HF6", + "Ordering Code": "VRN2208WFAF82R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel Xeon® Gold 6230 (20 Cores, 2.1Ghz, 125W) CD8069504193701 (1) Intel® Solid State Drive D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (4) Intel® Optane™ SSD DC P4800X 375GB (2.5” U.2 NVMe) SSDPE21K375GA01 (12) Intel® Solid State Drive DC P4510 2TB (2.5\" U.2 NVMe) SSDPE2KX020T801 (1) Remote Management Module Lite 2 AXXRMM4LITE2 (1) 2U 8x2.5 Combo HSBP A2U8X25S3PHS (2) Intel® PCIe Switch AIC (8 ports) AXXP3SWX08080 (2) OCuLink Cable – 875mm Cable Kit A2U8PSWCXCXK2 (2) OCuLink Cable – 700mm AXXCBL700CVCR (1) OCuLink Cable – 530mm AXXCBL530CVCR (1) OCuLink Cable - 470mm AXXCBL470CVCR (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Quad SFP+ X527DA4OCPG1P5 (16) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "512GB DDR4 RAM Raw Memory", + "Included Storage": "24TB Raw Storage (0.48TB boot device, 1.5TB Cache Tier, 24TB Capacity Tier)", + "MM#": "999HF5", + "Ordering Code": "VRN2208WFAF83R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "No", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "85 W", + "System Board": "Intel® Server System R2208WF0ZSR", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) Intel Server System w/S260WFO, 2U1N, 8x2.5\" R2208WF0ZSR (2) Intel® Xeon® Gold 5215 processor (10 Cores, 2.5GHz, 85W ) CD8069504214002 (1) Intel® Solid State Drive D3 S4510 480GB (M.2 80mm SATA) SSDSCKKB480G801 (2) Intel® Solid State Drive D3 S4610 960GB (2.5\" U.2 SATA) SSDSC2KG960G801 (1) Intel Remote Management Module Lite 2 AXXRMM4LITE2 (1) Intel® RAID Controller RS3UC080J (IT Mode) RS3UC080J (1) 1300W AC Common Redundant Power Supply AXX1300TCRPS (1) Ethernet OCP Dual SFP+ X527DA2OCPG1P5 (8) RDIMM 32GB - DDR4, 288-pin, 2666MHz J47951-001 (1) Trusted Platform Module (TPM) 2.0 AXXTPMENC8 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "Hybrid Storage Profile", + "Included Memory": "256GB DDR4 RAM Raw Memory", + "Included Storage": "0.48TB boot device 1.92TB Cache Tier Capacity Tier HDDs are customer supplied and NOT INCLUDED in the configuration. This model was certified with 6 x 2TB Seagate ST2000NX0433 drives", + "MM#": "999HFA", + "Ordering Code": "VRN2208WFHY6R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "Yes", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "125 W", + "System Board": "Intel® Compute Module HNS2600BPS24R", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) 2U Chassis (24x2.5\") H2224XXLR3 (4) Compute Module (w/TPM 2.0, 2x10GbE SFP+ & 2x1GbE ,RDMA) HNS2600BPS24R (8) Intel® Xeon® Gold 5218 processor (16 Cores, 2.3GHz, 125W ) CD8069504193301 (4) Bridge Board - 12G, IT mode-only AHWBPBGB24 (4) Intel® Remote Management Module Lite 2 Accessory Key AXXRMM4LITE2 (4) Intel® Solid State Drive (SSD) DC P4101 256GB (M.2 80mm NVMe) SSDPEKKA256G801 (4) Intel® Optane™ SSD DC P4800X 375GB (2.5in U.2 NVMe) SSDPE21K375GA01 (20) Intel® Solid State Drive (SSD) D3 S4510 1.92TB (2.5\" U.2 SATA) SSDSC2KB019T801 (32) Micron* RDIMM 32GB – DDR4, 288-pin, 2666MHz (8 DIMMs per node/32 DIMMs per system) J47951-001 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "1.02TB DDR4 RAM Raw Memory", + "Included Storage": "38.4TB Raw Storage (4 x 0.25TB boot device, 1.5TB Cache Tier, 38.4TB Capacity Tier)", + "MM#": "999KFD", + "Ordering Code": "VRN2224BPAF6R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "Yes", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "85 W", + "System Board": "Intel® Compute Module HNS2600BPS24R", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) 2U Chassis (24x2.5\") H2224XXLR3 (4) Compute Module (w/TPM 2.0, 2x10GbE SFP+ & 2x1GbE ,RDMA) HNS2600BPS24R (8) Intel® Xeon® Gold 5215 processor (10 Cores, 2.5GHz, 85W ) CD8069504214002 (4) Bridge Board - 12G, IT mode-only AHWBPBGB24 (4) Intel® Remote Management Module Lite 2 Accessory Key AXXRMM4LITE2 (4) Intel® Solid State Drive (SSD) DC P4101 256GB (M.2 80mm NVMe) SSDPEKKA256G801 (4) Intel® Solid State Drive (SSD) D3 S4610 960GB (2.5\" U.2 SATA) SSDSC2KG960G801 (16) Micron* RDIMM 32GB – DDR4, 288-pin, 2666MHz (8) DIMMs per node/32 DIMMs per system) J47951-001 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory", + "Storage Profile": "Hybrid Storage Profile", + "Included Memory": "512GB DDR4 RAM Raw Memory", + "Included Storage": "4 x 0.25TB boot device 3.84TB Cache Tier Capacity Tier HDDs are customer supplied and NOT INCLUDED in the configuration. This model was certified with 16 x 1TB Seagate ST1000NX0453 drives", + "MM#": "999KFH", + "Ordering Code": "VRN2224BPHY4R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Data Center Systems for HCI, certified for VMware vSAN", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "ISV Certification": "Designed for VMware* Virtual SAN (VSAN)", + "Rack Rails Included": "Yes", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "TDP": "85 W", + "System Board": "Intel® Compute Module HNS2600BPS24R", + "Target Market": "Cloud/Datacenter", + "Included Items": "(1) 2U Chassis (24x2.5\") H2224XXLR3 (4) Compute Module (w/TPM 2.0, 2x10GbE SFP+ & 2x1GbE ,RDMA) HNS2600BPS24R (8) Intel® Xeon® Gold 5215 processor (10 Cores, 2.5GHz, 85W ) CD8069504214002 (4) Bridge Board - 12G, IT mode-only AHWBPBGB24 (4) Intel® Remote Management Module Lite 2 Accessory Key AXXRMM4LITE2 (4) Intel® Solid State Drive (SSD) DC P4101 256GB (M.2 80mm NVMe) SSDPEKKA256G801 (8) Intel® Solid State Drive (SSD) D3 S4610 960GB (2.5\" U.2 SATA) SSDSC2KG960G801 (32) Micron* RDIMM 32GB – DDR4, 288-pin, 2666MHz (8 DIMMs per node/32 DIMMs per system) J47951-001 (2) Power cable FPWRCABLENA (Only for systems shipped to USA & Canada)", + "Description": "Intel® Data Center Blocks for Cloud designed for VMware* Virtual SAN (vSAN) includes Server Board, Chassis, Processor, Solid State Drives and third-party memory.", + "Storage Profile": "Hybrid Storage Profile", + "Included Memory": "1.02TB DDR4 RAM Raw Memory", + "Included Storage": "4x 0.25TB boot device 7.68TB Cache Tier Capacity Tier HDDs are customer supplied and NOT INCLUDED in the configuration. This model was certified with 16 x 2TB Seagate ST2000NX0433 drives", + "MM#": "999KFG", + "Ordering Code": "VRN2224BPHY6R", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "MAX® II CPLD", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "180 nm", + "Equivalent Macrocells": "980", + "Pin-to-pin Delay": "6.2 ns", + "User Flash Memory": "8 Kb", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.5, 1.8, 2.5, 3.3, 5.0", + "I/O Power Banks": "4", + "Maximum Output Enables": "212", + "LVTTL/LVCMOS": "Yes", + "32 bit, 66 MHz PCI Compliant": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M256, F256, T144", + "Package Size": "11mm x 11mm, 17mm x 17mm, 22mm x 22mm", + "Additional Information": "View now", + "MM#": "974596", + "Spec Code": "SRBZQ", + "Ordering Code": "EPM1270M256C5N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "974594": "PCN", + "971374": "PCN", + "971371": "PCN", + "972839": "PCN", + "972838": "PCN", + "972836": "PCN", + "973368": "PCN", + "974596": "PCN", + "972143": "PCN", + "973366": "PCN", + "972846": "PCN", + "972844": "PCN", + "972841": "PCN", + "970371": "PCN", + "968055": "PCN", + "967512": "PCN", + "968054": "PCN", + "968052": "PCN" + }, + { + "Product Collection": "MAX® II CPLD", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "180 nm", + "Equivalent Macrocells": "1700", + "Pin-to-pin Delay": "7 ns", + "User Flash Memory": "8 Kb", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.5, 1.8, 2.5, 3.3, 5.0", + "I/O Power Banks": "4", + "Maximum Output Enables": "272", + "LVTTL/LVCMOS": "Yes", + "32 bit, 66 MHz PCI Compliant": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "F256, F324", + "Package Size": "17 mm x 17mm, 19mm x 19mm", + "Additional Information": "View now", + "MM#": "974599", + "Spec Code": "SRBZT", + "Ordering Code": "EPM2210GF324C4", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "971377": "PCN", + "968062": "PCN", + "970376": "PCN", + "968060": "PCN", + "972148": "PCN", + "974599": "PCN", + "972146": "PCN", + "971381": "PCN", + "974597": "PCN", + "971380": "PCN", + "972144": "PCN", + "971379": "PCN", + "967519": "PCN", + "973373": "PCN", + "973372": "PCN", + "970373": "PCN", + "968057": "PCN", + "972152": "PCN" + }, + { + "Product Collection": "MAX® II CPLD", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "180 nm", + "Equivalent Macrocells": "192", + "Pin-to-pin Delay": "7.5 ns", + "User Flash Memory": "8 Kb", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.5, 1.8, 2.5, 3.3", + "I/O Power Banks": "2", + "Maximum Output Enables": "80", + "LVTTL/LVCMOS": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M100, F100, T100", + "Package Size": "6mm x 6mm, 11mm x 11mm, 16mm x 16mm", + "Additional Information": "View now", + "MM#": "974601", + "Spec Code": "SRBZV", + "Ordering Code": "EPM240T100C3N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "968064": "PCN", + "974601": "PCN", + "972851": "PCN", + "974600": "PCN", + "971383": "PCN", + "967523": "PCN", + "972848": "PCN", + "967521": "PCN", + "970381": "PCN", + "971386": "PCN", + "971385": "PCN", + "972156": "PCN", + "972154": "PCN", + "973377": "PCN" + }, + { + "Product Collection": "MAX® II CPLD", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "180 nm", + "Equivalent Macrocells": "440", + "Pin-to-pin Delay": "9 ns", + "User Flash Memory": "8 Kb", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.5, 1.8, 2.5, 3.3", + "I/O Power Banks": "2", + "Maximum Output Enables": "160", + "LVTTL/LVCMOS": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M100, F100, M256, T100, F256, T144", + "Package Size": "6mmx6mm,11mmx11mm,11mmx11mm,16mmx16mm,17mmx17mm,22mmx22mm", + "Additional Information": "View now", + "MM#": "974614", + "Spec Code": "SRC08", + "Ordering Code": "EPM570GT100C5N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "972176": "PCN", + "972868": "PCN", + "973388": "PCN", + "972175": "PCN", + "972174": "PCN", + "973395": "PCN", + "973394": "PCN", + "967541": "PCN", + "971406": "PCN", + "972172": "PCN", + "972871": "PCN", + "972179": "PCN", + "973391": "PCN", + "973390": "PCN", + "972869": "PCN", + "973389": "PCN", + "971404": "PCN", + "971402": "PCN", + "970402": "PCN", + "971398": "PCN", + "967539": "PCN", + "967536": "PCN", + "970404": "PCN", + "970400": "PCN", + "970397": "PCN", + "968696": "PCN", + "968703": "PCN", + "968702": "PCN", + "974614": "PCN", + "968700": "PCN", + "968699": "PCN", + "974612": "PCN" + }, + { + "Product Collection": "MAX® II Z CPLD", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "180 nm", + "Equivalent Macrocells": "192", + "Pin-to-pin Delay": "4.7 ns", + "User Flash Memory": "8 Kb", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.5, 1.8, 2.5, 3.3", + "I/O Power Banks": "2", + "Maximum Output Enables": "80", + "LVTTL/LVCMOS": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M68, M100", + "Package Size": "5 mm x 5 mm, 6mm x 6mm", + "Additional Information": "View now" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11300H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.10 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9CC", + "Spec Code": "SRKH6", + "Ordering Code": "FH8069004600005", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9CC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1140G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GP", + "Spec Code": "SRK0F", + "Ordering Code": "FH8069004532303", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GP": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11370H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9C4", + "Spec Code": "SRKH5", + "Ordering Code": "FH8069004599910", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9C4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11375H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9C2", + "Spec Code": "SRKH4", + "Ordering Code": "FH8069004599909", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9C2": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1180G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.20 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GC", + "Spec Code": "SRK0D", + "Ordering Code": "FH8069004532104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GC": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1145G7E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LP", + "Spec Code": "SRK0Z", + "Ordering Code": "FH8069004542000", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1145GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267, In-Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LV", + "Spec Code": "SRK10", + "Ordering Code": "FH8069004542100", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1185G7E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LH", + "Spec Code": "SRK0X", + "Ordering Code": "FH8069004541800", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1185GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267, In-Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LL", + "Spec Code": "SRK0Y", + "Ordering Code": "FH8069004541900", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1130G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GX", + "Spec Code": "SRK0G", + "Ordering Code": "FH8069004532404", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GX": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DD", + "Spec Code": "SRK04", + "Ordering Code": "FH8069004530601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1160G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GM", + "Spec Code": "SRK0E", + "Ordering Code": "FH8069004532205", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GM": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3CX", + "Spec Code": "SRK01", + "Ordering Code": "FH8069004529905", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3CX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Iris® Xe MAX Dedicated Graphics Family", + "Code Name": "Products formerly DG1", + "Status": "Launched", + "Launch Date": "Q4'20", + "Graphics Max Dynamic Clock": "1650 MHz", + "PCI Express Configurations ‡": "Up to x4 Gen4", + "Graphics Memory Interface": "128 bit", + "Graphics Memory Bandwidth": "68 GB/s", + "Graphics Memory Speed": "4267 Gbps", + "DirectX* Support": "12.1", + "Vulkan* Support": "1", + "OpenGL* Support": "4.6", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP 1.4, DP 1.4 w/ HDR, HDMI 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 12-bit", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "2000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "108 Kb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "246", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "15", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "V36, U324, E144, M153, U169, U324", + "Additional Information": "View now", + "MM#": "99A9T6", + "Spec Code": "SRKJE", + "Ordering Code": "10M02SCU324I7G", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965253": "PCN", + "968096": "PCN", + "968095": "PCN", + "965480": "PCN", + "967746": "PCN", + "967745": "PCN", + "978978": "PCN", + "965576": "PCN", + "967126": "PCN", + "965252": "PCN", + "965251": "PCN", + "965250": "PCN", + "99A9T6": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "4000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "189 Kb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "246", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "15", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "F256, U324, E144, M153, U169, U324", + "Additional Information": "View now", + "MM#": "99AD6N", + "Spec Code": "SRKPB", + "Ordering Code": "10M04DCF256A7P", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968812": "PCN", + "965255": "PCN", + "965580": "PCN", + "965254": "PCN", + "965578": "PCN", + "983295": "PCN", + "965577": "PCN", + "99AD6N": "PCN", + "968814": "PCN", + "968813": "PCN", + "967747": "PCN", + "978981": "PCN", + "967750": "PCN", + "967749": "PCN", + "973663": "PCN", + "973662": "PCN", + "973661": "PCN", + "973660": "PCN", + "965483": "PCN", + "965482": "PCN", + "965481": "PCN", + "978970": "PCN", + "99A9T7": "PCN", + "99A9T8": "PCN", + "967129": "PCN", + "967128": "PCN", + "967127": "PCN", + "973665": "PCN", + "973664": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "8000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "378 Kb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "250", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "15", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "V81, F256, U324, F484, E144, M153, U169, U324", + "Additional Information": "View now", + "MM#": "99A9TA", + "Spec Code": "SRKJJ", + "Ordering Code": "10M08SCU324I7G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965259": "PCN", + "965582": "PCN", + "965257": "PCN", + "965256": "PCN", + "967762": "PCN", + "967761": "PCN", + "968819": "PCN", + "968818": "PCN", + "968817": "PCN", + "965586": "PCN", + "968816": "PCN", + "965584": "PCN", + "965583": "PCN", + "967756": "PCN", + "965487": "PCN", + "967755": "PCN", + "965486": "PCN", + "967754": "PCN", + "965485": "PCN", + "967753": "PCN", + "967752": "PCN", + "968101": "PCN", + "968098": "PCN", + "968097": "PCN", + "967131": "PCN", + "967130": "PCN", + "967751": "PCN", + "978985": "PCN", + "978983": "PCN", + "978982": "PCN", + "968102": "PCN", + "99A9T9": "PCN", + "99A9TA": "PCN", + "973669": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "16000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "549 Kb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR2 SDRAM, DDR3 SDRAM, LPDDR2, SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "320", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "22", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "F256, U324, F484, E144, U169, U324", + "Additional Information": "View now", + "MM#": "99A9TC", + "Spec Code": "SRKJK", + "Ordering Code": "10M16SAU324C8G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "967765": "PCN", + "967764": "PCN", + "967763": "PCN", + "965591": "PCN", + "968820": "PCN", + "965590": "PCN", + "965589": "PCN", + "999LGC": "PCN", + "965588": "PCN", + "965260": "PCN", + "978980": "PCN", + "99A3M5": "PCN", + "978993": "PCN", + "965610": "PCN", + "965609": "PCN", + "965608": "PCN", + "967139": "PCN", + "967138": "PCN", + "967134": "PCN", + "967132": "PCN", + "973673": "PCN", + "965542": "PCN", + "973672": "PCN", + "978988": "PCN", + "978974": "PCN", + "967140": "PCN", + "968107": "PCN", + "999PLG": "PCN", + "968106": "PCN", + "978971": "PCN", + "968104": "PCN", + "968103": "PCN", + "968823": "PCN", + "99A9TC": "PCN", + "968822": "PCN", + "968821": "PCN", + "973671": "PCN", + "973670": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "25000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "675 Kb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR2 SDRAM, DDR3 SDRAM, LPDDR2, SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "360", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "24", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "F256, F484, E144", + "Additional Information": "View now", + "MM#": "999LGA", + "Spec Code": "SRGNB", + "Ordering Code": "10M25DAF484A7G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965596": "PCN", + "967768": "PCN", + "965595": "PCN", + "967767": "PCN", + "965594": "PCN", + "968110": "PCN", + "968109": "PCN", + "967142": "PCN", + "967141": "PCN", + "968108": "PCN", + "965264": "PCN", + "973677": "PCN", + "999LGA": "PCN", + "965262": "PCN", + "973676": "PCN", + "999LG9": "PCN", + "973675": "PCN", + "965261": "PCN", + "965598": "PCN", + "967769": "PCN", + "973674": "PCN", + "965613": "PCN", + "965612": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "40000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.26 Mb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR2 SDRAM, DDR3 SDRAM, LPDDR2, SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "500", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "30", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "F256, F484, F672, E144", + "Additional Information": "View now", + "MM#": "999JFW", + "Spec Code": "SRGDK", + "Ordering Code": "10M40DAF484I6G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965618": "PCN", + "965617": "PCN", + "965616": "PCN", + "965615": "PCN", + "967770": "PCN", + "967145": "PCN", + "967144": "PCN", + "967143": "PCN", + "973681": "PCN", + "965614": "PCN", + "968113": "PCN", + "968112": "PCN", + "968111": "PCN", + "973680": "PCN", + "973679": "PCN", + "973678": "PCN", + "965600": "PCN", + "965599": "PCN", + "968114": "PCN", + "968826": "PCN", + "968825": "PCN", + "968824": "PCN", + "965268": "PCN", + "965267": "PCN", + "999JFW": "PCN" + }, + { + "Product Collection": "Intel® MAX® 10 FPGA", + "Status": "Launched", + "Launch Date": "2014", + "Lithography": "55 nm", + "Logic Elements (LE)": "50000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.638 Mb", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR2 SDRAM, DDR3 SDRAM, LPDDR2, SRAM", + "User-Flashable Memory": "Yes", + "Internal Configuration Storage": "Yes", + "Maximum User I/O Count†": "500", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.0 V to 3.3 V LVCMOS, PCI, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, PPDS, BLVDS, TMDS, Sub-LVDS, SLVS, HiSpi", + "Maximum LVDS Pairs": "30", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "Yes", + "Package Options": "F256, F484, F672, E144", + "Additional Information": "View now", + "MM#": "973687", + "Spec Code": "SRBKN", + "Ordering Code": "10M50SAE144C8G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965620": "PCN", + "965619": "PCN", + "967774": "PCN", + "967773": "PCN", + "967772": "PCN", + "967771": "PCN", + "965605": "PCN", + "967148": "PCN", + "973687": "PCN", + "973686": "PCN", + "967147": "PCN", + "973685": "PCN", + "967146": "PCN", + "973683": "PCN", + "973682": "PCN", + "965604": "PCN", + "965603": "PCN", + "965273": "PCN", + "968828": "PCN", + "965272": "PCN", + "965271": "PCN", + "965270": "PCN", + "967776": "PCN", + "967775": "PCN", + "968832": "PCN", + "968831": "PCN", + "968830": "PCN", + "965274": "PCN", + "968829": "PCN" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1001", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, extended temperature", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "934413", + "Spec Code": "SR1VB", + "Ordering Code": "DHQ1ETS", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "934413": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1011", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC, extended temperature", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "934415", + "Spec Code": "SR1VC", + "Ordering Code": "DHQ1ECCET", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "934415": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1020", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC, Secure Boot", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "934775", + "Spec Code": "SR1VW", + "Ordering Code": "DHQ1ECCSECCTS1", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934775": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1021", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC, Secure Boot, extended temperature", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "934943", + "Spec Code": "SR1WH", + "Ordering Code": "DHQ1ECCSECETS1", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934943": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1021D", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC, Secure Boot (Development Key), extended temperature", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "934411", + "Spec Code": "SR1VA", + "Ordering Code": "DHQ1ECCSECETS", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934411": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1010", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "930239", + "Spec Code": "SR1BZ", + "Ordering Code": "DH8066101555100", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "930239": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1020D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable, ECC, Secure Boot (Development Key)", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "930236", + "Spec Code": "SR1BX", + "Ordering Code": "DH8066101531900", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930236": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SoC X1000 Series", + "Code Name": "Products formerly Clanton", + "Vertical Segment": "Embedded", + "Processor Number": "X1000", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "32 nm", + "Use Conditions": "Industrial Commercial Temp, Communications, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "400 MHz", + "Cache": "16 KB", + "TDP": "2.2 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "32 bit, single core, single thread, Pentium ISA compatable", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "PCI Support": "PCI Express", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "2", + "Integrated IDE": "0", + "General Purpose IO": "16", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "0", + "Sockets Supported": "FCBGA393", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "15mm x 15mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® Smart Idle Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "930237", + "Spec Code": "SR1BY", + "Ordering Code": "DH8066101538300", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "930237": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ Microcontroller D1000 Series", + "Code Name": "Products formerly Silver Butte", + "Vertical Segment": "Embedded", + "Processor Number": "D1000", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Use Conditions": "Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp", + "Total Cores": "1", + "Processor Base Frequency": "33 MHz", + "Cache": "0 KB", + "TDP": "0.025 W", + "Configurable TDP-up Base Frequency": "32 MHz", + "Configurable TDP-up": "0.025 W", + "Configurable TDP-down Base Frequency": "1 MHz", + "Configurable TDP-down": "0.0016 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Datasheet describes all publicly disclosed specifications including electrical characteristics, mechanical, and component functionality, a list of major features, a functional description, and an architectural overview.", + "General Purpose IO": "SPI, I2C, 24GPIO", + "UART": "2", + "Sockets Supported": "QFN40", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "6mm x 6mm", + "Operating Temperature (Minimum)": "-40 °C", + "Instruction Set": "32-bit", + "MM#": "938719", + "Spec Code": "SLKMJ", + "Ordering Code": "DMNIAD01SLVBT", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8542310001", + "938719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ Microcontroller D2000 Series", + "Code Name": "Products formerly Mint Valley", + "Vertical Segment": "Embedded", + "Processor Number": "D2000", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "1", + "Processor Base Frequency": "32 MHz", + "Cache": "0 KB", + "Embedded Options Available": "Yes", + "Description": "32 bit,single core, single thread, Pentium ISA compatible microcontroller", + "Product Brief": "View now", + "General Purpose IO": "SPI, I2C, GPIO, SPI, Comparators, ADC, PWM, DMA", + "UART": "2", + "Sockets Supported": "LQFN40", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "6mm x 6mm", + "Operating Temperature (Minimum)": "-40 °C", + "Instruction Set": "32-bit", + "MM#": "946998", + "Spec Code": "SR2KF", + "Ordering Code": "FND2000", + "Stepping": "A0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8542310001", + "946998": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Quark™ SE C1000 Microcontroller Series", + "Code Name": "Products formerly AtlasPeak", + "Vertical Segment": "Embedded", + "Processor Number": "C1000", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Total Cores": "1", + "Processor Base Frequency": "32 MHz", + "Cache": "8 KB", + "Embedded Options Available": "Yes", + "Description": "32 bit, single processor core with sensor subsystem, Pentium ISA compatible microcontroller", + "Product Brief": "View now", + "General Purpose IO": "SPI, I2C, GPIO, Comp, ADC, PWM, DMA, I2S, USB", + "UART": "2", + "Sockets Supported": "VFBGA144, WL-CSP144", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "10mmX10mm", + "Operating Temperature (Minimum)": "-40 °C", + "Instruction Set": "32-bit", + "MM#": "951124", + "Spec Code": "SR2VT", + "Ordering Code": "EQCQ1000", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "951124": "PCN", + "949869": "PCN\n |\n MDDS" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "1270", + "Equivalent Macrocells": "980", + "Pin-to-pin Delay": "6.2 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V, 5.0 V", + "I/O Power Banks": "4", + "Maximum Output Enables": "271", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "32 bit, 66 MHz PCI Compliant": "1", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "F256, F324, T144", + "Package Size": "17mm x 17mm, 19mm x 19mm, 22mm x 22mm", + "Additional Information": "View now", + "MM#": "969124", + "Spec Code": "SR7NH", + "Ordering Code": "5M1270ZF324C5N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968255": "PCN", + "965734": "PCN", + "969124": "PCN", + "965733": "PCN", + "968258": "PCN", + "968257": "PCN", + "968396": "PCN", + "968256": "PCN" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "160", + "Equivalent Macrocells": "128", + "Pin-to-pin Delay": "7.5 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V", + "I/O Power Banks": "2", + "Maximum Output Enables": "79", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M68, M100, E64, T100", + "Package Size": "5mm x 5mm, 6mm x 6mm, 9mm x 9mm, 16mm x 16mm", + "Additional Information": "View now", + "MM#": "970648", + "Spec Code": "SR8VV", + "Ordering Code": "5M160ZM100C4N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965737": "PCN", + "969129": "PCN", + "966143": "PCN", + "966142": "PCN", + "968400": "PCN", + "970648": "PCN" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "2210", + "Equivalent Macrocells": "1700", + "Pin-to-pin Delay": "7 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V, 5.0 V", + "I/O Power Banks": "4", + "Maximum Output Enables": "271", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "32 bit, 66 MHz PCI Compliant": "1", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "F256, F324", + "Package Size": "17mm x 17mm, 19mm x 19mm", + "Additional Information": "View now", + "MM#": "973791", + "Spec Code": "SRBNL", + "Ordering Code": "5M2210ZF324I5", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965739": "PCN", + "968261": "PCN", + "973791": "PCN", + "968404": "PCN", + "968401": "PCN", + "969750": "PCN", + "970649": "PCN", + "965740": "PCN" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "240", + "Equivalent Macrocells": "192", + "Pin-to-pin Delay": "7.5 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V", + "I/O Power Banks": "2", + "Maximum Output Enables": "114", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M68, M100, T100, T144", + "Package Size": "5mm x 5mm, 6mm x 6mm, 16mm x 16mm, 22mm x 22mm", + "Additional Information": "View now", + "MM#": "999MPX", + "Spec Code": "SRGTX", + "Ordering Code": "5M240ZM68A5N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "966146": "PCN", + "968405": "PCN", + "968403": "PCN", + "969752": "PCN", + "969751": "PCN", + "999MPX": "PCN", + "970650": "PCN", + "969130": "PCN" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "40", + "Equivalent Macrocells": "32", + "Pin-to-pin Delay": "7.5 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V", + "I/O Power Banks": "2", + "Maximum Output Enables": "54", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M64, E64", + "Package Size": "4.5mm x 4.5mm, 9mm x 9mm", + "Additional Information": "View now" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "570", + "Equivalent Macrocells": "440", + "Pin-to-pin Delay": "9 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V", + "I/O Power Banks": "2", + "Maximum Output Enables": "159", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M100, T100, F256, T144", + "Package Size": "6mm x 6mm, 16mm x16mm, 17mm x 17mm, 22mm x 22mm", + "Additional Information": "View now", + "MM#": "985530", + "Spec Code": "SREUP", + "Ordering Code": "5M570ZM100I5", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965744": "PCN", + "968408": "PCN", + "985530": "PCN", + "978989": "PCN", + "969135": "PCN", + "969136": "PCN", + "969134": "PCN", + "970651": "PCN", + "968265": "PCN" + }, + { + "Product Collection": "MAX® V CPLD", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "180 nm", + "Logic Elements (LE)": "80", + "Equivalent Macrocells": "64", + "Pin-to-pin Delay": "7.5 ns", + "User Flash Memory": "8 Kb", + "Logic Convertible To Memory": "Yes", + "Internal Oscillator": "Yes", + "Fast Power-on Reset": "Yes", + "Boundary-scan JTAG": "Yes", + "JTAG ISP": "Yes", + "Fast Input Registers": "Yes", + "Programmable Register Power-up": "Yes", + "JTAG Translator": "Yes", + "Real-time ISP": "Yes", + "MultiVolt I/Os†": "1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.3 V", + "I/O Power Banks": "2", + "Maximum Output Enables": "54", + "LVTTL/LVCMOS": "Yes", + "Emulated LVDS Outputs": "Yes", + "Schmitt Triggers": "Yes", + "Programmable Slew Rate": "Yes", + "Programmable Pull-up Resistors": "Yes", + "Programmable GND Pins": "Yes", + "Open-drain Outputs": "Yes", + "Bus Hold": "Yes", + "Package Options": "M64, M68, E64, T100", + "Package Size": "4.5mm, x 4.5mm, 5mm x 5mm, 9mm x 9mm, 16mm x 16mm", + "Additional Information": "View now", + "MM#": "973799", + "Spec Code": "SRBNU", + "Ordering Code": "5M80ZM68I5N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "966149": "PCN", + "970654": "PCN", + "973799": "PCN", + "973798": "PCN" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q1'21", + "Vertical Segment": "Server", + "Cabling Type": "QSFP28 - DAC, Optics, and AOC's", + "Bracket Height": "Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Description": "Up to 200Gbps for bandwidth-intensive workloads.", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "100/50/25/10GbE (200GbE when ports bifurcated)", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x 16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "99AL14", + "Ordering Code": "E8102CQDA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "99AL14": "PCN" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q4'20", + "Vertical Segment": "Server", + "Cabling Type": "QSFP28 port - DAC, Optics, and AOC's", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "100/50/25/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x 16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "978312", + "Ordering Code": "E810CQDA1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "978312": "PCN" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q4'20", + "Vertical Segment": "Server", + "Cabling Type": "QSFP28 port - DAC", + "Bracket Height": "OCP 2.0", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Description": "Efficient workload-optimized performance at Ethernet speeds of 1 to 100Gbps", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "100/50/25/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x 16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 3.0 (8 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q1'21", + "Vertical Segment": "Server", + "Cabling Type": "QSFP28 port - DAC, Optics, AOC's", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "100/50/25/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x 16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "983092", + "Ordering Code": "E810CQDA1OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "983092": "PCN" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper, Fiber", + "Cabling Type": "QSFP28 ports - DAC, Optics, and AOC's", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "100/50/25/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "978322", + "Ordering Code": "E810CQDA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "978322": "PCN\n |\n MDDS" + }, + { + "Product Collection": "100GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cabling Type": "QSFP28 ports - DAC, Optics, AOC's", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "100/50/25/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x 16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "983581", + "Ordering Code": "E810CQDA2OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "983581": "PCN" + }, + { + "Product Collection": "25GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q1'22", + "Vertical Segment": "Server", + "Cable Medium": "Copper, Fiber", + "Cabling Type": "SFP28 ports - DAC, Optics, and AOCs", + "Bracket Height": "Full Height", + "Supported Operating Systems": "View now", + "Use Conditions": "Communications Commercial Temp", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "99AD9D", + "Ordering Code": "E810XXVDA4TG1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090" + }, + { + "Product Collection": "25GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'21", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 ports - DAC, Optics, And AOC's", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "983099", + "Ordering Code": "E810XXVDA4OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "983099": "PCN\n |\n MDDS" + }, + { + "Product Collection": "25GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 ports - DAC, Optics, and AOC's", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x8 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "978331", + "Ordering Code": "E810XXVDA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "978331": "PCN\n |\n MDDS" + }, + { + "Product Collection": "25GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 ports - DAC, Optics, And AOC's", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x8 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "983262", + "Ordering Code": "E810XXVDA2OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "983262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "25GbE Intel® Ethernet Network Adapter E810", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 ports - DAC, Optics, and AOC's", + "Bracket Height": "Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "16 GT/s x16 lanes", + "Controller": "Intel Ethernet Controller E810", + "System Interface Type": "PCIe 4.0 (16 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "978334", + "Ordering Code": "E810XXVDA4", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "978334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Arria® 10 GT FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "1150000", + "Adaptive Logic Modules (ALM)": "427200", + "Adaptive Logic Module (ALM) Registers": "1708800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "48", + "Maximum Embedded Memory": "65.7 Mb", + "Digital Signal Processing (DSP) Blocks": "1518", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM III, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "624", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "25.78 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1932", + "Additional Information": "View now", + "MM#": "965607", + "Spec Code": "SR4PB", + "Ordering Code": "10AT115S2F45E2SG", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "965607": "PCN", + "965546": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GT FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "900000", + "Adaptive Logic Modules (ALM)": "339620", + "Adaptive Logic Module (ALM) Registers": "1358480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "48", + "Maximum Embedded Memory": "56.2 Mb", + "Digital Signal Processing (DSP) Blocks": "1518", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM III, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "624", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "25.78 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1932", + "Additional Information": "View now", + "MM#": "973548", + "Spec Code": "SRBFT", + "Ordering Code": "10AT090S1F45E1SG", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "965440": "PCN", + "973548": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "1150000", + "Adaptive Logic Modules (ALM)": "427200", + "Adaptive Logic Module (ALM) Registers": "1708800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "48", + "Maximum Embedded Memory": "65.7 Mb", + "Digital Signal Processing (DSP) Blocks": "1518", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "768", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "384", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517, F1932", + "Additional Information": "View now", + "MM#": "99A8RF", + "Spec Code": "SRKFZ", + "Ordering Code": "10AX115N5F40I2SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "968204": "PCN", + "965459": "PCN", + "965458": "PCN", + "965457": "PCN", + "965456": "PCN", + "965455": "PCN", + "965454": "PCN", + "99A8RF": "PCN", + "965223": "PCN", + "967733": "PCN", + "967731": "PCN", + "965221": "PCN", + "967730": "PCN", + "965220": "PCN", + "967729": "PCN", + "965219": "PCN", + "967727": "PCN", + "967726": "PCN", + "965225": "PCN", + "965224": "PCN", + "965213": "PCN", + "967723": "PCN", + "965212": "PCN", + "967722": "PCN", + "965211": "PCN", + "967721": "PCN", + "965208": "PCN", + "965452": "PCN", + "967720": "PCN", + "965451": "PCN", + "965464": "PCN", + "967719": "PCN", + "965462": "PCN", + "967718": "PCN", + "965461": "PCN", + "965460": "PCN", + "965218": "PCN", + "965465": "PCN", + "965217": "PCN", + "967725": "PCN", + "967724": "PCN", + "967083": "PCN", + "967097": "PCN", + "967096": "PCN", + "967093": "PCN", + "967092": "PCN", + "973637": "PCN", + "973634": "PCN", + "967101": "PCN", + "967098": "PCN", + "973643": "PCN", + "968083": "PCN", + "973642": "PCN", + "968082": "PCN", + "973641": "PCN", + "967557": "PCN", + "973639": "PCN", + "973638": "PCN", + "967085": "PCN", + "968078": "PCN", + "968791": "PCN", + "968790": "PCN", + "968787": "PCN", + "968786": "PCN", + "965558": "PCN", + "968785": "PCN", + "965557": "PCN", + "968784": "PCN", + "968783": "PCN", + "973633": "PCN", + "973632": "PCN", + "973631": "PCN", + "973630": "PCN", + "973627": "PCN", + "967547": "PCN", + "973626": "PCN", + "973625": "PCN", + "968792": "PCN", + "965559": "PCN", + "968782": "PCN", + "968781": "PCN", + "965561": "PCN", + "965560": "PCN", + "967777": "PCN", + "965540": "PCN", + "965539": "PCN", + "965538": "PCN", + "966311": "PCN", + "966310": "PCN", + "966309": "PCN", + "966308": "PCN", + "966307": "PCN", + "968084": "PCN", + "967108": "PCN", + "967106": "PCN", + "967104": "PCN", + "967103": "PCN", + "973646": "PCN", + "967102": "PCN", + "967562": "PCN", + "973645": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "160000", + "Adaptive Logic Modules (ALM)": "61510", + "Adaptive Logic Module (ALM) Registers": "246040", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "10 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "973554", + "Spec Code": "SRBFZ", + "Ordering Code": "10AX016E4F29M3SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965079": "PCN", + "967627": "PCN", + "967626": "PCN", + "965321": "PCN", + "965320": "PCN", + "965389": "PCN", + "965388": "PCN", + "965387": "PCN", + "973554": "PCN", + "965547": "PCN", + "973553": "PCN", + "973552": "PCN", + "973551": "PCN", + "965110": "PCN", + "973550": "PCN", + "965109": "PCN", + "973549": "PCN", + "965108": "PCN", + "965386": "PCN", + "965551": "PCN", + "965550": "PCN", + "965549": "PCN", + "965548": "PCN", + "965086": "PCN", + "966315": "PCN", + "965082": "PCN", + "965081": "PCN", + "965080": "PCN", + "966199": "PCN", + "965090": "PCN", + "966267": "PCN", + "966320": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "220000", + "Adaptive Logic Modules (ALM)": "83730", + "Adaptive Logic Module (ALM) Registers": "334920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "12.8 Mb", + "Digital Signal Processing (DSP) Blocks": "192", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "973560", + "Spec Code": "SRBG5", + "Ordering Code": "10AX022E4F27E3LG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965326": "PCN", + "965325": "PCN", + "965324": "PCN", + "967630": "PCN", + "967629": "PCN", + "967628": "PCN", + "965322": "PCN", + "965393": "PCN", + "965392": "PCN", + "965391": "PCN", + "965390": "PCN", + "967153": "PCN", + "967152": "PCN", + "965323": "PCN", + "967151": "PCN", + "967060": "PCN", + "967059": "PCN", + "965111": "PCN", + "967057": "PCN", + "973560": "PCN", + "973559": "PCN", + "965156": "PCN", + "965155": "PCN", + "965154": "PCN", + "965552": "PCN", + "965153": "PCN", + "965152": "PCN", + "973558": "PCN", + "973557": "PCN", + "965091": "PCN", + "973556": "PCN", + "973555": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "270000", + "Adaptive Logic Modules (ALM)": "101620", + "Adaptive Logic Module (ALM) Registers": "406480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "17.4 Mb", + "Digital Signal Processing (DSP) Blocks": "830", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "384", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F672, F780, F1152", + "Additional Information": "View now", + "MM#": "973570", + "Spec Code": "SRBGF", + "Ordering Code": "10AX027H4F34E3VG", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965847": "PCN", + "965330": "PCN", + "965845": "PCN", + "965329": "PCN", + "965842": "PCN", + "965328": "PCN", + "965327": "PCN", + "965846": "PCN", + "965121": "PCN", + "965161": "PCN", + "965120": "PCN", + "965160": "PCN", + "965119": "PCN", + "965118": "PCN", + "965159": "PCN", + "965117": "PCN", + "965158": "PCN", + "965116": "PCN", + "965157": "PCN", + "965556": "PCN", + "965112": "PCN", + "965115": "PCN", + "965555": "PCN", + "965114": "PCN", + "965554": "PCN", + "965663": "PCN", + "965113": "PCN", + "965553": "PCN", + "967635": "PCN", + "967634": "PCN", + "967633": "PCN", + "965402": "PCN", + "967164": "PCN", + "965401": "PCN", + "967163": "PCN", + "965400": "PCN", + "967162": "PCN", + "965399": "PCN", + "967161": "PCN", + "965398": "PCN", + "967160": "PCN", + "965397": "PCN", + "967159": "PCN", + "965396": "PCN", + "967158": "PCN", + "967632": "PCN", + "967631": "PCN", + "965404": "PCN", + "965403": "PCN", + "973570": "PCN", + "973569": "PCN", + "973568": "PCN", + "965395": "PCN", + "967157": "PCN", + "965394": "PCN", + "967156": "PCN", + "967155": "PCN", + "967154": "PCN", + "973564": "PCN", + "973563": "PCN", + "973562": "PCN", + "973561": "PCN", + "973567": "PCN", + "973566": "PCN", + "973565": "PCN", + "965849": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "320000", + "Adaptive Logic Modules (ALM)": "118730", + "Adaptive Logic Module (ALM) Registers": "474920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "19.8 Mb", + "Digital Signal Processing (DSP) Blocks": "985", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "384", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F672, F780, F1152", + "Additional Information": "View now", + "MM#": "973579", + "Spec Code": "SRBGQ", + "Ordering Code": "10AX032H4F35I3LG", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965331": "PCN", + "967553": "PCN", + "965132": "PCN", + "965131": "PCN", + "965130": "PCN", + "965332": "PCN", + "965122": "PCN", + "965163": "PCN", + "965162": "PCN", + "967672": "PCN", + "965129": "PCN", + "965128": "PCN", + "965169": "PCN", + "967550": "PCN", + "965126": "PCN", + "965168": "PCN", + "965167": "PCN", + "965125": "PCN", + "965166": "PCN", + "965124": "PCN", + "965165": "PCN", + "965123": "PCN", + "965164": "PCN", + "967639": "PCN", + "967638": "PCN", + "967637": "PCN", + "967636": "PCN", + "967640": "PCN", + "967165": "PCN", + "965409": "PCN", + "965408": "PCN", + "965407": "PCN", + "965406": "PCN", + "967169": "PCN", + "965405": "PCN", + "967168": "PCN", + "967167": "PCN", + "967166": "PCN", + "973574": "PCN", + "973573": "PCN", + "973572": "PCN", + "973571": "PCN", + "965497": "PCN", + "965496": "PCN", + "973579": "PCN", + "973578": "PCN", + "973577": "PCN", + "973576": "PCN", + "973575": "PCN", + "966136": "PCN", + "966274": "PCN", + "966273": "PCN", + "965495": "PCN", + "965494": "PCN", + "965493": "PCN", + "965492": "PCN", + "965491": "PCN", + "965853": "PCN", + "965854": "PCN", + "965852": "PCN", + "965355": "PCN", + "965850": "PCN", + "965851": "PCN", + "965848": "PCN", + "966270": "PCN", + "967571": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "480000", + "Adaptive Logic Modules (ALM)": "181790", + "Adaptive Logic Module (ALM) Registers": "727160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "32.3 Mb", + "Digital Signal Processing (DSP) Blocks": "1368", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "492", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "222", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F780, F1152", + "Additional Information": "View now", + "MM#": "973584", + "Spec Code": "SRBGV", + "Ordering Code": "10AX048K2F35E2SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965136": "PCN", + "965135": "PCN", + "965134": "PCN", + "965133": "PCN", + "965175": "PCN", + "967688": "PCN", + "965174": "PCN", + "967687": "PCN", + "965173": "PCN", + "967686": "PCN", + "965172": "PCN", + "967684": "PCN", + "965171": "PCN", + "967683": "PCN", + "967682": "PCN", + "967690": "PCN", + "965176": "PCN", + "967689": "PCN", + "965139": "PCN", + "965416": "PCN", + "965138": "PCN", + "965415": "PCN", + "965137": "PCN", + "965414": "PCN", + "965413": "PCN", + "965412": "PCN", + "965411": "PCN", + "965410": "PCN", + "967645": "PCN", + "967644": "PCN", + "967643": "PCN", + "967642": "PCN", + "967641": "PCN", + "973584": "PCN", + "973583": "PCN", + "973582": "PCN", + "965498": "PCN", + "973581": "PCN", + "965504": "PCN", + "973580": "PCN", + "965503": "PCN", + "965502": "PCN", + "965501": "PCN", + "965499": "PCN", + "966278": "PCN", + "966277": "PCN", + "966276": "PCN", + "966275": "PCN", + "966279": "PCN", + "966282": "PCN", + "966281": "PCN", + "966280": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "570000", + "Adaptive Logic Modules (ALM)": "217080", + "Adaptive Logic Module (ALM) Registers": "868320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "40 Mb", + "Digital Signal Processing (DSP) Blocks": "1523", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "324", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "974699", + "Spec Code": "SRC2Q", + "Ordering Code": "10AX057N4F40M3SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965184": "PCN", + "967697": "PCN", + "965183": "PCN", + "967696": "PCN", + "965182": "PCN", + "967695": "PCN", + "965181": "PCN", + "967694": "PCN", + "967693": "PCN", + "967692": "PCN", + "965186": "PCN", + "965185": "PCN", + "967698": "PCN", + "974699": "PCN", + "974698": "PCN", + "965180": "PCN", + "965179": "PCN", + "965178": "PCN", + "967691": "PCN", + "965177": "PCN", + "965147": "PCN", + "965421": "PCN", + "965420": "PCN", + "965419": "PCN", + "965418": "PCN", + "965140": "PCN", + "965417": "PCN", + "967651": "PCN", + "967650": "PCN", + "967649": "PCN", + "967648": "PCN", + "967647": "PCN", + "967646": "PCN", + "965146": "PCN", + "965145": "PCN", + "965144": "PCN", + "965143": "PCN", + "965142": "PCN", + "965141": "PCN", + "965512": "PCN", + "965511": "PCN", + "973588": "PCN", + "965510": "PCN", + "973587": "PCN", + "965509": "PCN", + "973586": "PCN", + "965508": "PCN", + "973585": "PCN", + "965507": "PCN", + "965506": "PCN", + "973594": "PCN", + "965517": "PCN", + "965516": "PCN", + "965515": "PCN", + "965514": "PCN", + "965513": "PCN", + "965505": "PCN", + "973593": "PCN", + "973592": "PCN", + "973591": "PCN", + "973590": "PCN", + "973589": "PCN", + "966289": "PCN", + "966288": "PCN", + "966287": "PCN", + "966286": "PCN", + "966285": "PCN", + "966284": "PCN", + "966283": "PCN", + "966290": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "660000", + "Adaptive Logic Modules (ALM)": "250540", + "Adaptive Logic Module (ALM) Registers": "1002160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "47.7 Mb", + "Digital Signal Processing (DSP) Blocks": "1687", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "270", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "99A8R9", + "Spec Code": "SRKFV", + "Ordering Code": "10AX066N5F40E2SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965433": "PCN", + "965191": "PCN", + "967704": "PCN", + "967703": "PCN", + "965189": "PCN", + "967702": "PCN", + "967701": "PCN", + "967700": "PCN", + "965187": "PCN", + "965333": "PCN", + "967699": "PCN", + "965428": "PCN", + "965427": "PCN", + "965425": "PCN", + "965424": "PCN", + "965423": "PCN", + "965432": "PCN", + "965431": "PCN", + "965430": "PCN", + "965429": "PCN", + "974706": "PCN", + "974705": "PCN", + "965149": "PCN", + "965148": "PCN", + "99A8R8": "PCN", + "967657": "PCN", + "99A8R9": "PCN", + "965422": "PCN", + "965151": "PCN", + "965150": "PCN", + "965524": "PCN", + "965523": "PCN", + "973607": "PCN", + "965522": "PCN", + "973606": "PCN", + "965521": "PCN", + "973604": "PCN", + "967656": "PCN", + "965276": "PCN", + "967655": "PCN", + "965275": "PCN", + "967653": "PCN", + "967652": "PCN", + "973599": "PCN", + "973598": "PCN", + "973596": "PCN", + "973595": "PCN", + "965520": "PCN", + "973603": "PCN", + "965519": "PCN", + "973602": "PCN", + "973601": "PCN", + "973600": "PCN", + "965528": "PCN", + "965527": "PCN", + "965526": "PCN", + "965525": "PCN", + "966298": "PCN", + "966297": "PCN", + "966296": "PCN", + "966295": "PCN", + "966294": "PCN", + "966293": "PCN", + "966292": "PCN", + "966299": "PCN", + "966291": "PCN", + "965195": "PCN", + "967706": "PCN", + "965194": "PCN", + "967705": "PCN", + "965192": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "900000", + "Adaptive Logic Modules (ALM)": "339620", + "Adaptive Logic Module (ALM) Registers": "1358480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "48", + "Maximum Embedded Memory": "56.2 Mb", + "Digital Signal Processing (DSP) Blocks": "1518", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "768", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "384", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517, F1932", + "Additional Information": "View now", + "MM#": "973624", + "Spec Code": "SRBHZ", + "Ordering Code": "10AX090U3F45I2LG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965439": "PCN", + "965438": "PCN", + "965437": "PCN", + "965436": "PCN", + "965435": "PCN", + "965447": "PCN", + "965446": "PCN", + "965445": "PCN", + "965444": "PCN", + "965443": "PCN", + "965442": "PCN", + "965441": "PCN", + "967674": "PCN", + "967673": "PCN", + "967671": "PCN", + "967669": "PCN", + "966662": "PCN", + "967661": "PCN", + "967660": "PCN", + "966660": "PCN", + "967659": "PCN", + "967658": "PCN", + "967668": "PCN", + "967667": "PCN", + "967666": "PCN", + "967665": "PCN", + "967664": "PCN", + "967663": "PCN", + "967662": "PCN", + "965532": "PCN", + "965531": "PCN", + "965530": "PCN", + "965529": "PCN", + "966133": "PCN", + "965490": "PCN", + "965489": "PCN", + "965199": "PCN", + "967711": "PCN", + "965198": "PCN", + "967710": "PCN", + "965197": "PCN", + "967709": "PCN", + "965196": "PCN", + "967708": "PCN", + "965207": "PCN", + "965206": "PCN", + "965450": "PCN", + "965449": "PCN", + "967717": "PCN", + "965448": "PCN", + "967716": "PCN", + "965205": "PCN", + "965204": "PCN", + "966128": "PCN", + "965203": "PCN", + "967715": "PCN", + "965202": "PCN", + "967714": "PCN", + "965201": "PCN", + "966126": "PCN", + "967713": "PCN", + "965200": "PCN", + "967712": "PCN", + "965839": "PCN", + "967065": "PCN", + "967074": "PCN", + "973624": "PCN", + "973623": "PCN", + "973622": "PCN", + "973621": "PCN", + "967054": "PCN", + "973620": "PCN", + "973619": "PCN", + "973611": "PCN", + "973610": "PCN", + "973609": "PCN", + "967778": "PCN", + "973608": "PCN", + "965534": "PCN", + "965533": "PCN", + "965541": "PCN", + "973618": "PCN", + "973617": "PCN", + "973616": "PCN", + "973615": "PCN", + "965537": "PCN", + "973614": "PCN", + "965536": "PCN", + "965535": "PCN", + "973613": "PCN", + "973612": "PCN", + "965898": "PCN", + "966306": "PCN", + "966305": "PCN", + "966304": "PCN", + "966303": "PCN", + "966302": "PCN", + "966301": "PCN", + "966300": "PCN", + "966264": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "160000", + "Adaptive Logic Modules (ALM)": "61510", + "Adaptive Logic Module (ALM) Registers": "246040", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "10 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "964737", + "Spec Code": "SR42T", + "Ordering Code": "10AS016C4U19E3SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "964673": "PCN", + "964690": "PCN", + "964684": "PCN", + "964683": "PCN", + "964682": "PCN", + "964681": "PCN", + "964680": "PCN", + "964679": "PCN", + "964678": "PCN", + "964703": "PCN", + "964677": "PCN", + "964702": "PCN", + "964675": "PCN", + "964697": "PCN", + "964674": "PCN", + "964696": "PCN", + "964737": "PCN", + "964565": "PCN", + "964735": "PCN", + "964730": "PCN", + "964718": "PCN", + "964708": "PCN", + "964728": "PCN", + "964727": "PCN", + "964723": "PCN", + "964722": "PCN", + "964721": "PCN", + "964720": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "220000", + "Adaptive Logic Modules (ALM)": "83730", + "Adaptive Logic Module (ALM) Registers": "334920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "12.8 Mb", + "Digital Signal Processing (DSP) Blocks": "192", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "974665", + "Spec Code": "SRC1R", + "Ordering Code": "10AS022C3U19I2LP", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "973475": "PCN", + "973474": "PCN", + "973473": "PCN", + "973344": "PCN", + "973472": "PCN", + "973471": "PCN", + "964921": "PCN", + "964699": "PCN", + "973476": "PCN", + "964909": "PCN", + "964908": "PCN", + "964907": "PCN", + "964906": "PCN", + "965043": "PCN", + "964736": "PCN", + "965042": "PCN", + "965041": "PCN", + "964732": "PCN", + "964731": "PCN", + "964964": "PCN", + "964750": "PCN", + "964739": "PCN", + "964738": "PCN", + "964719": "PCN", + "974665": "PCN", + "964704": "PCN", + "965278": "PCN", + "964726": "PCN", + "965089": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "270000", + "Adaptive Logic Modules (ALM)": "101620", + "Adaptive Logic Module (ALM) Registers": "406480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "17.4 Mb", + "Digital Signal Processing (DSP) Blocks": "830", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "384", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F672, F780, F1152", + "Additional Information": "View now", + "MM#": "973480", + "Spec Code": "SRBDD", + "Ordering Code": "10AS027H4F35I3LG", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965334": "PCN", + "964972": "PCN", + "964969": "PCN", + "964968": "PCN", + "964967": "PCN", + "964966": "PCN", + "964965": "PCN", + "965288": "PCN", + "964971": "PCN", + "964970": "PCN", + "964938": "PCN", + "965285": "PCN", + "964937": "PCN", + "965284": "PCN", + "965085": "PCN", + "965283": "PCN", + "965084": "PCN", + "965282": "PCN", + "965281": "PCN", + "973480": "PCN", + "965280": "PCN", + "973479": "PCN", + "965279": "PCN", + "973478": "PCN", + "973477": "PCN", + "964945": "PCN", + "964944": "PCN", + "964943": "PCN", + "964942": "PCN", + "964941": "PCN", + "964940": "PCN", + "965287": "PCN", + "964939": "PCN", + "965286": "PCN", + "964929": "PCN", + "964928": "PCN", + "964927": "PCN", + "964926": "PCN", + "964925": "PCN", + "964924": "PCN", + "964923": "PCN", + "965265": "PCN", + "964922": "PCN", + "964932": "PCN", + "964931": "PCN", + "964930": "PCN", + "965051": "PCN", + "965050": "PCN", + "965049": "PCN", + "965048": "PCN", + "965047": "PCN", + "965046": "PCN", + "965045": "PCN", + "965052": "PCN", + "964831": "PCN", + "964820": "PCN", + "964811": "PCN", + "965040": "PCN", + "964800": "PCN", + "964784": "PCN", + "965044": "PCN", + "964783": "PCN", + "964765": "PCN", + "964759": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "320000", + "Adaptive Logic Modules (ALM)": "118730", + "Adaptive Logic Module (ALM) Registers": "474920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "19.8 Mb", + "Digital Signal Processing (DSP) Blocks": "985", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "484", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F672, F780, F1152", + "Additional Information": "View now", + "MM#": "973487", + "Spec Code": "SRBDL", + "Ordering Code": "10AS032H3F35I2SG", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965003": "PCN", + "965002": "PCN", + "965001": "PCN", + "965000": "PCN", + "964999": "PCN", + "964998": "PCN", + "965337": "PCN", + "965336": "PCN", + "965335": "PCN", + "964978": "PCN", + "964977": "PCN", + "964976": "PCN", + "964975": "PCN", + "964974": "PCN", + "964973": "PCN", + "964997": "PCN", + "964980": "PCN", + "964979": "PCN", + "965294": "PCN", + "965293": "PCN", + "965292": "PCN", + "965291": "PCN", + "965290": "PCN", + "965289": "PCN", + "964946": "PCN", + "964963": "PCN", + "965299": "PCN", + "965298": "PCN", + "965297": "PCN", + "965296": "PCN", + "965295": "PCN", + "973484": "PCN", + "973483": "PCN", + "973482": "PCN", + "964935": "PCN", + "973481": "PCN", + "964934": "PCN", + "973487": "PCN", + "973486": "PCN", + "973485": "PCN", + "965062": "PCN", + "965061": "PCN", + "965060": "PCN", + "965059": "PCN", + "964899": "PCN", + "965058": "PCN", + "965057": "PCN", + "965056": "PCN", + "965055": "PCN", + "965054": "PCN", + "965053": "PCN", + "964832": "PCN", + "964856": "PCN", + "964848": "PCN", + "964847": "PCN", + "964837": "PCN", + "965347": "PCN", + "965344": "PCN", + "965343": "PCN", + "965342": "PCN", + "965341": "PCN", + "965340": "PCN", + "965339": "PCN", + "965338": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "480000", + "Adaptive Logic Modules (ALM)": "181790", + "Adaptive Logic Module (ALM) Registers": "727160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "32.3 Mb", + "Digital Signal Processing (DSP) Blocks": "1368", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "492", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "222", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F780, F1152", + "Additional Information": "View now", + "MM#": "973521", + "Spec Code": "SRBF3", + "Ordering Code": "10AS048K4F35E3SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965005": "PCN", + "965066": "PCN", + "965004": "PCN", + "965065": "PCN", + "965064": "PCN", + "965063": "PCN", + "973521": "PCN", + "965351": "PCN", + "965350": "PCN", + "965006": "PCN", + "965067": "PCN", + "973516": "PCN", + "964903": "PCN", + "964902": "PCN", + "964901": "PCN", + "964900": "PCN", + "965306": "PCN", + "965305": "PCN", + "965304": "PCN", + "965303": "PCN", + "965301": "PCN", + "964910": "PCN", + "973520": "PCN", + "964984": "PCN", + "973518": "PCN", + "964983": "PCN", + "965068": "PCN", + "973517": "PCN", + "964982": "PCN", + "964981": "PCN", + "964905": "PCN", + "964904": "PCN", + "965036": "PCN", + "965300": "PCN", + "965033": "PCN", + "965010": "PCN", + "965083": "PCN", + "965009": "PCN", + "965354": "PCN", + "965008": "PCN", + "965353": "PCN", + "965007": "PCN", + "965352": "PCN", + "965035": "PCN", + "965034": "PCN", + "973488": "PCN", + "965349": "PCN", + "965087": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "570000", + "Adaptive Logic Modules (ALM)": "217080", + "Adaptive Logic Module (ALM) Registers": "868320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "40 Mb", + "Digital Signal Processing (DSP) Blocks": "1523", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "324", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "978979", + "Spec Code": "SRCYX", + "Ordering Code": "10AS057K4F40E3LG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "973527": "PCN", + "973526": "PCN", + "965841": "PCN", + "973525": "PCN", + "965840": "PCN", + "973523": "PCN", + "964986": "PCN", + "973522": "PCN", + "964985": "PCN", + "973528": "PCN", + "964996": "PCN", + "965309": "PCN", + "965308": "PCN", + "965307": "PCN", + "965312": "PCN", + "965311": "PCN", + "965310": "PCN", + "965545": "PCN", + "965097": "PCN", + "965544": "PCN", + "965096": "PCN", + "965543": "PCN", + "965095": "PCN", + "965094": "PCN", + "965313": "PCN", + "965659": "PCN", + "964936": "PCN", + "965093": "PCN", + "965092": "PCN", + "965277": "PCN", + "964917": "PCN", + "964915": "PCN", + "964914": "PCN", + "964913": "PCN", + "965074": "PCN", + "964912": "PCN", + "965073": "PCN", + "965072": "PCN", + "964911": "PCN", + "965071": "PCN", + "964920": "PCN", + "964919": "PCN", + "964918": "PCN", + "965488": "PCN", + "965378": "PCN", + "978979": "PCN", + "965377": "PCN", + "965376": "PCN", + "965375": "PCN", + "965070": "PCN", + "965069": "PCN", + "966145": "PCN", + "978972": "PCN", + "965014": "PCN", + "965013": "PCN", + "965358": "PCN", + "965012": "PCN", + "965357": "PCN", + "965011": "PCN", + "965019": "PCN", + "965018": "PCN", + "965017": "PCN", + "965016": "PCN", + "965015": "PCN" + }, + { + "Product Collection": "Intel® Arria® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "20 nm", + "Logic Elements (LE)": "660000", + "Adaptive Logic Modules (ALM)": "250540", + "Adaptive Logic Module (ALM) Registers": "1002160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "47.7 Mb", + "Digital Signal Processing (DSP) Blocks": "1687", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, QDR II, QDR II+, RLDRAM 3, HMC, MoSys, QDR IV, LPDDR3, DDR3L", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "270", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "99A8RD", + "Spec Code": "SRKFY", + "Ordering Code": "10AS066N5F40I2SG", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "964993": "PCN", + "964992": "PCN", + "964991": "PCN", + "964989": "PCN", + "973529": "PCN", + "965188": "PCN", + "964994": "PCN", + "965319": "PCN", + "967066": "PCN", + "965318": "PCN", + "965317": "PCN", + "965315": "PCN", + "965314": "PCN", + "967072": "PCN", + "965101": "PCN", + "965100": "PCN", + "965099": "PCN", + "965098": "PCN", + "99A8RC": "PCN", + "965107": "PCN", + "99A8RD": "PCN", + "967193": "PCN", + "966666": "PCN", + "965106": "PCN", + "965105": "PCN", + "965103": "PCN", + "967180": "PCN", + "965102": "PCN", + "965088": "PCN", + "967624": "PCN", + "965077": "PCN", + "965076": "PCN", + "965075": "PCN", + "965078": "PCN", + "965263": "PCN", + "965382": "PCN", + "965380": "PCN", + "965379": "PCN", + "978990": "PCN", + "965383": "PCN", + "965031": "PCN", + "965030": "PCN", + "978967": "PCN", + "965029": "PCN", + "965028": "PCN", + "965026": "PCN", + "965023": "PCN", + "965037": "PCN", + "965021": "PCN", + "973546": "PCN", + "965385": "PCN", + "965384": "PCN", + "973537": "PCN", + "973536": "PCN", + "965356": "PCN", + "973532": "PCN", + "973530": "PCN", + "965020": "PCN", + "973545": "PCN", + "973544": "PCN", + "973543": "PCN", + "973542": "PCN", + "966266": "PCN", + "973541": "PCN", + "973539": "PCN", + "973538": "PCN" + }, + { + "Product Collection": "Arria® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "156000", + "Adaptive Logic Modules (ALM)": "58900", + "Adaptive Logic Module (ALM) Registers": "235600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "11.471 Mb", + "Digital Signal Processing (DSP) Blocks": "396", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "416", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "150", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F672, F896", + "Additional Information": "View now", + "MM#": "965621", + "Spec Code": "SR4PR", + "Ordering Code": "5AGTMC3D3F27I5N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965621": "PCN", + "999FG7": "PCN", + "999FG6": "PCN", + "999FG5": "PCN", + "999FZW": "PCN" + }, + { + "Product Collection": "Arria® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "242000", + "Adaptive Logic Modules (ALM)": "91680", + "Adaptive Logic Module (ALM) Registers": "366720", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "15.108 Mb", + "Digital Signal Processing (DSP) Blocks": "800", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "544", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152", + "Additional Information": "View now", + "MM#": "999G00", + "Spec Code": "SRFKH", + "Ordering Code": "5AGTMC7G3F31I5G", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "999G00": "PCN", + "999FZZ": "PCN", + "968284": "PCN", + "999FFT": "PCN" + }, + { + "Product Collection": "Arria® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "362000", + "Adaptive Logic Modules (ALM)": "136880", + "Adaptive Logic Module (ALM) Registers": "547520", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "19.358 Mb", + "Digital Signal Processing (DSP) Blocks": "1045", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "973688", + "Spec Code": "SRBKP", + "Ordering Code": "5AGTFD3H3F35I3N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999G02": "PCN", + "999G01": "PCN", + "999F5G": "PCN", + "999FG4": "PCN", + "999FFW": "PCN", + "999FFV": "PCN", + "973688": "PCN" + }, + { + "Product Collection": "Arria® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "504000", + "Adaptive Logic Modules (ALM)": "190240", + "Adaptive Logic Module (ALM) Registers": "760960", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "27.046 Mb", + "Digital Signal Processing (DSP) Blocks": "1156", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "968834", + "Spec Code": "SR7DY", + "Ordering Code": "5AGTFD7K3F40I5", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "967780": "PCN", + "967779": "PCN", + "968286": "PCN", + "968834": "PCN", + "999X97": "PCN", + "999X96": "PCN", + "965858": "PCN", + "999X95": "PCN", + "999X94": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "75000", + "Adaptive Logic Modules (ALM)": "28302", + "Adaptive Logic Module (ALM) Registers": "113208", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "8.463 Mb", + "Digital Signal Processing (DSP) Blocks": "240", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "416", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "147", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F672, F896", + "Additional Information": "View now", + "MM#": "968852", + "Spec Code": "SR7EG", + "Ordering Code": "5AGXMA1D4F31I5", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "999G3A": "PCN", + "999G39": "PCN", + "999G38": "PCN", + "999G37": "PCN", + "999G36": "PCN", + "968116": "PCN", + "968852": "PCN", + "968851": "PCN", + "999G56": "PCN", + "965622": "PCN", + "99A486": "PCN", + "999G0A": "PCN", + "999G35": "PCN", + "999G08": "PCN", + "999G34": "PCN", + "999G07": "PCN", + "999G06": "PCN", + "999G05": "PCN", + "999G3D": "PCN", + "999G04": "PCN", + "999G3C": "PCN", + "967783": "PCN", + "999G03": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "156000", + "Adaptive Logic Modules (ALM)": "58900", + "Adaptive Logic Module (ALM) Registers": "235600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "11.471 Mb", + "Digital Signal Processing (DSP) Blocks": "396", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "416", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "147", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F672, F896", + "Additional Information": "View now", + "MM#": "968854", + "Spec Code": "SR7EJ", + "Ordering Code": "5AGXMA3D4F31I3N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "999G0K": "PCN", + "999G0J": "PCN", + "968145": "PCN", + "999G0H": "PCN", + "968144": "PCN", + "999G0G": "PCN", + "999G0F": "PCN", + "999G0D": "PCN", + "999G3P": "PCN", + "999G0C": "PCN", + "999G3N": "PCN", + "968854": "PCN", + "968853": "PCN", + "965624": "PCN", + "968119": "PCN", + "965920": "PCN", + "999G3M": "PCN", + "999G3L": "PCN", + "999G3K": "PCN", + "978994": "PCN", + "999G3J": "PCN", + "999G3G": "PCN", + "965645": "PCN", + "965643": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "190000", + "Adaptive Logic Modules (ALM)": "71698", + "Adaptive Logic Module (ALM) Registers": "286792", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "12.973 Mb", + "Digital Signal Processing (DSP) Blocks": "600", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "544", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F672, F896, F1152", + "Additional Information": "View now", + "MM#": "970567", + "Spec Code": "SR8TG", + "Ordering Code": "5AGXMA5G4F35C4N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965903": "PCN", + "999G10": "PCN", + "999G0Z": "PCN", + "999G0X": "PCN", + "999G3R": "PCN", + "999G0W": "PCN", + "967797": "PCN", + "999G0V": "PCN", + "999G41": "PCN", + "999G40": "PCN", + "999G12": "PCN", + "999G3Z": "PCN", + "999G11": "PCN", + "999G3X": "PCN", + "999G3W": "PCN", + "965636": "PCN", + "999G3T": "PCN", + "968150": "PCN", + "968149": "PCN", + "999G0T": "PCN", + "999G0R": "PCN", + "999G0P": "PCN", + "970567": "PCN", + "999G0M": "PCN", + "970566": "PCN", + "999G0L": "PCN", + "965891": "PCN", + "984217": "PCN", + "970029": "PCN", + "999G2D": "PCN", + "999G2G": "PCN", + "999G2F": "PCN", + "967818": "PCN", + "967817": "PCN", + "967816": "PCN", + "967815": "PCN", + "999G44": "PCN", + "999G43": "PCN", + "999G42": "PCN", + "965646": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "242000", + "Adaptive Logic Modules (ALM)": "91680", + "Adaptive Logic Module (ALM) Registers": "366720", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "15.108 Mb", + "Digital Signal Processing (DSP) Blocks": "800", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "544", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F672, F896, F1152", + "Additional Information": "View now", + "MM#": "973713", + "Spec Code": "SRBLE", + "Ordering Code": "5AGXMA7D4F27I5N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968132": "PCN", + "999G15": "PCN", + "999G13": "PCN", + "969553": "PCN", + "973713": "PCN", + "999FZV": "PCN", + "965905": "PCN", + "978995": "PCN", + "968310": "PCN", + "999FG2": "PCN", + "999G4M": "PCN", + "999G4L": "PCN", + "968856": "PCN", + "999G2J": "PCN", + "999G2H": "PCN", + "970556": "PCN", + "999G1G": "PCN", + "999G49": "PCN", + "999G1F": "PCN", + "999G48": "PCN", + "999G1D": "PCN", + "999G47": "PCN", + "999G45": "PCN", + "999G1C": "PCN", + "999G1A": "PCN", + "999G18": "PCN", + "999G17": "PCN", + "999G4J": "PCN", + "999G4H": "PCN", + "999G4G": "PCN", + "999G4F": "PCN", + "999G4D": "PCN", + "999G4C": "PCN", + "999G1K": "PCN", + "999G4A": "PCN", + "999G1J": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "300000", + "Adaptive Logic Modules (ALM)": "113208", + "Adaptive Logic Module (ALM) Registers": "452832", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "16.952 Mb", + "Digital Signal Processing (DSP) Blocks": "920", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "973718", + "Spec Code": "SRBLK", + "Ordering Code": "5AGXMB1G4F31I5", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "967802": "PCN", + "968133": "PCN", + "967800": "PCN", + "967799": "PCN", + "999G5W": "PCN", + "999G4R": "PCN", + "999G2V": "PCN", + "999G2T": "PCN", + "999G2R": "PCN", + "999G2P": "PCN", + "999G2N": "PCN", + "999G2L": "PCN", + "999G52": "PCN", + "968127": "PCN", + "999G51": "PCN", + "999G4Z": "PCN", + "999G4X": "PCN", + "999G4W": "PCN", + "999G4V": "PCN", + "999G4T": "PCN", + "968847": "PCN", + "999G20": "PCN", + "999G1Z": "PCN", + "999G4P": "PCN", + "999G1X": "PCN", + "999G4N": "PCN", + "999G1V": "PCN", + "999G1T": "PCN", + "999G2K": "PCN", + "965923": "PCN", + "968156": "PCN", + "968298": "PCN", + "973718": "PCN", + "999G1R": "PCN", + "965648": "PCN", + "999G1P": "PCN", + "999FFR": "PCN", + "999G1N": "PCN", + "999G1M": "PCN", + "999G1L": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "362000", + "Adaptive Logic Modules (ALM)": "136880", + "Adaptive Logic Module (ALM) Registers": "547520", + "Fabric and I/O Phase-Locked Loops (PLLs)": "12", + "Maximum Embedded Memory": "19.358 Mb", + "Digital Signal Processing (DSP) Blocks": "1045", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "973705", + "Spec Code": "SRBL6", + "Ordering Code": "5AGXFB3H4F40I5", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "965909": "PCN", + "965908": "PCN", + "999G54": "PCN", + "965638": "PCN", + "999G55": "PCN", + "999G2W": "PCN", + "970561": "PCN", + "970569": "PCN", + "999G53": "PCN", + "973705": "PCN", + "999G33": "PCN", + "999G31": "PCN", + "973703": "PCN", + "999G30": "PCN", + "999G2Z": "PCN", + "999G2X": "PCN", + "999FZM": "PCN", + "999G21": "PCN", + "999FZL": "PCN", + "999FZK": "PCN", + "999FZJ": "PCN", + "999G2C": "PCN", + "999FZH": "PCN", + "999G2A": "PCN", + "965650": "PCN", + "999FZF": "PCN", + "999G29": "PCN", + "999FZN": "PCN", + "967824": "PCN", + "968292": "PCN", + "999FZD": "PCN", + "999G27": "PCN", + "999FZC": "PCN", + "999G26": "PCN", + "968315": "PCN", + "999G25": "PCN", + "999G24": "PCN", + "999G23": "PCN", + "999G22": "PCN", + "968300": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "420000", + "Adaptive Logic Modules (ALM)": "158491", + "Adaptive Logic Module (ALM) Registers": "633964", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "23.072 Gb", + "Digital Signal Processing (DSP) Blocks": "1092", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "973708", + "Spec Code": "SRBL9", + "Ordering Code": "5AGXFB5K4F40I5", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999XAK": "PCN", + "999XAJ": "PCN", + "999XAH": "PCN", + "999XAG": "PCN", + "999XAF": "PCN", + "999X98": "PCN", + "967806": "PCN", + "967805": "PCN", + "999XAN": "PCN", + "999XAM": "PCN", + "999XA3": "PCN", + "999XA2": "PCN", + "967796": "PCN", + "999XA5": "PCN", + "999XA4": "PCN", + "965652": "PCN", + "999XA1": "PCN", + "999XA0": "PCN", + "999X9Z": "PCN", + "999X9X": "PCN", + "965640": "PCN", + "968293": "PCN", + "968162": "PCN", + "965926": "PCN", + "968301": "PCN", + "973724": "PCN", + "969893": "PCN", + "965913": "PCN", + "965900": "PCN", + "965912": "PCN", + "965899": "PCN", + "965911": "PCN", + "965910": "PCN", + "965897": "PCN", + "970571": "PCN", + "970570": "PCN", + "973708": "PCN", + "965639": "PCN", + "968861": "PCN", + "968860": "PCN", + "970563": "PCN", + "968849": "PCN", + "968850": "PCN", + "999X9J": "PCN", + "999X9H": "PCN", + "999X9G": "PCN", + "999X9D": "PCN", + "967825": "PCN", + "999X9C": "PCN", + "999X9A": "PCN", + "999X99": "PCN", + "968841": "PCN" + }, + { + "Product Collection": "Arria® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "504000", + "Adaptive Logic Modules (ALM)": "190240", + "Adaptive Logic Module (ALM) Registers": "760960", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "27.046 Gb", + "Digital Signal Processing (DSP) Blocks": "1156", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.5536 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "973710", + "Spec Code": "SRBLB", + "Ordering Code": "5AGXFB7H6F35C6N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999XAD": "PCN", + "999XAX": "PCN", + "967809": "PCN", + "999XAW": "PCN", + "967808": "PCN", + "999XAV": "PCN", + "999XAT": "PCN", + "967807": "PCN", + "999XAR": "PCN", + "999XAP": "PCN", + "999XAC": "PCN", + "999XAA": "PCN", + "999XA9": "PCN", + "999XA8": "PCN", + "999XA6": "PCN", + "968319": "PCN", + "968165": "PCN", + "999X9V": "PCN", + "999X9T": "PCN", + "999X9R": "PCN", + "999XH8": "PCN", + "999X9P": "PCN", + "999XH7": "PCN", + "968294": "PCN", + "965918": "PCN", + "965917": "PCN", + "968164": "PCN", + "968163": "PCN", + "965927": "PCN", + "968302": "PCN", + "965633": "PCN", + "965902": "PCN", + "970573": "PCN", + "970572": "PCN", + "968130": "PCN", + "965915": "PCN", + "965914": "PCN", + "968139": "PCN", + "968138": "PCN", + "973710": "PCN", + "965634": "PCN", + "973709": "PCN", + "968862": "PCN", + "999FZT": "PCN", + "968129": "PCN", + "999FZR": "PCN", + "999FZP": "PCN", + "999X9K": "PCN", + "968844": "PCN", + "999X9N": "PCN", + "999X9M": "PCN", + "999X9L": "PCN" + }, + { + "Product Collection": "Arria® V GZ FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "220000", + "Adaptive Logic Modules (ALM)": "83020", + "Adaptive Logic Module (ALM) Registers": "332080", + "Fabric and I/O Phase-Locked Loops (PLLs)": "20", + "Maximum Embedded Memory": "14.924 Mb", + "Digital Signal Processing (DSP) Blocks": "800", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "414", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "207", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2, PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "H780, F1152", + "Additional Information": "View now", + "MM#": "970576", + "Spec Code": "SR8TR", + "Ordering Code": "5AGZME1E3H29I4N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "970576": "PCN", + "965654": "PCN", + "970574": "PCN", + "968320": "PCN", + "999XHF": "PCN", + "999XHD": "PCN", + "999XHA": "PCN", + "999XH9": "PCN", + "999XHG": "PCN", + "999XC2": "PCN", + "999XC0": "PCN", + "999XAZ": "PCN", + "965928": "PCN", + "968865": "PCN" + }, + { + "Product Collection": "Arria® V GZ FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "360000", + "Adaptive Logic Modules (ALM)": "135840", + "Adaptive Logic Module (ALM) Registers": "543360", + "Fabric and I/O Phase-Locked Loops (PLLs)": "20", + "Maximum Embedded Memory": "23.385 Mb", + "Digital Signal Processing (DSP) Blocks": "1044", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "414", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "207", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2, PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "H780, F1152", + "Additional Information": "View now", + "MM#": "970578", + "Spec Code": "SR8TT", + "Ordering Code": "5AGZME3H2F35I3LN", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "999XC3": "PCN", + "965655": "PCN", + "965931": "PCN", + "999XCA": "PCN", + "999XC9": "PCN", + "999XC8": "PCN", + "999XC7": "PCN", + "999XC6": "PCN", + "970578": "PCN", + "999XC5": "PCN", + "999XC4": "PCN", + "965930": "PCN", + "965929": "PCN" + }, + { + "Product Collection": "Arria® V GZ FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "400000", + "Adaptive Logic Modules (ALM)": "150960", + "Adaptive Logic Module (ALM) Registers": "603840", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "33.518 Mb", + "Digital Signal Processing (DSP) Blocks": "1092", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "674", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "334", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2, PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "970581", + "Spec Code": "SR8TW", + "Ordering Code": "5AGZME5K2F40C3N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965656": "PCN", + "968322": "PCN", + "968167": "PCN", + "999XCC": "PCN", + "970581": "PCN", + "999XHK": "PCN", + "999XHH": "PCN", + "967827": "PCN", + "999XCF": "PCN", + "968869": "PCN", + "968868": "PCN", + "968867": "PCN", + "999XCK": "PCN", + "999XCJ": "PCN", + "999XCH": "PCN", + "999XCG": "PCN" + }, + { + "Product Collection": "Arria® V GZ FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "450000", + "Adaptive Logic Modules (ALM)": "169800", + "Adaptive Logic Module (ALM) Registers": "679200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "39.306 Mb", + "Digital Signal Processing (DSP) Blocks": "1139", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "674", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "334", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2, PCIe Gen3", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "973727", + "Spec Code": "SRBLU", + "Ordering Code": "5AGZME7H3F35C4N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968324": "PCN", + "999XCX": "PCN", + "999XCW": "PCN", + "965933": "PCN", + "999XCT": "PCN", + "999XCR": "PCN", + "970582": "PCN", + "965657": "PCN", + "967828": "PCN", + "999XCP": "PCN", + "999XCN": "PCN", + "999XCM": "PCN", + "973727": "PCN", + "999XCL": "PCN" + }, + { + "Product Collection": "Arria® V ST SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "28 nm", + "Logic Elements (LE)": "350000", + "Adaptive Logic Modules (ALM)": "132075", + "Adaptive Logic Module (ALM) Registers": "528300", + "Fabric and I/O Phase-Locked Loops (PLLs)": "14", + "Maximum Embedded Memory": "19.304 Mb", + "Digital Signal Processing (DSP) Blocks": "809", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "540", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "30", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "968871", + "Spec Code": "SR7F1", + "Ordering Code": "5ASTFD3K3F40I5N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "999XD0": "PCN", + "999XCZ": "PCN", + "968871": "PCN", + "968870": "PCN", + "999XD9": "PCN", + "967830": "PCN", + "968325": "PCN", + "999XD8": "PCN", + "967829": "PCN", + "999XD2": "PCN", + "999XD1": "PCN" + }, + { + "Product Collection": "Arria® V ST SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "28 nm", + "Logic Elements (LE)": "462000", + "Adaptive Logic Modules (ALM)": "174340", + "Adaptive Logic Module (ALM) Registers": "697360", + "Fabric and I/O Phase-Locked Loops (PLLs)": "14", + "Maximum Embedded Memory": "25.478 Mb", + "Digital Signal Processing (DSP) Blocks": "1090", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "540", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "30", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "970583", + "Spec Code": "SR8TY", + "Ordering Code": "5ASTFD5G3F35I3N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968873": "PCN", + "965935": "PCN", + "968872": "PCN", + "999XDC": "PCN", + "999XDA": "PCN", + "967831": "PCN", + "970583": "PCN", + "999XD7": "PCN", + "999XD5": "PCN", + "999XD4": "PCN", + "999XD3": "PCN" + }, + { + "Product Collection": "Arria® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "28 nm", + "Logic Elements (LE)": "350000", + "Adaptive Logic Modules (ALM)": "132075", + "Adaptive Logic Module (ALM) Registers": "528300", + "Fabric and I/O Phase-Locked Loops (PLLs)": "14", + "Maximum Embedded Memory": "19.304 Mb", + "Digital Signal Processing (DSP) Blocks": "809", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "540", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "30", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "973731", + "Spec Code": "SRBLY", + "Ordering Code": "5ASXMB3G6F40C6N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968332": "PCN", + "965668": "PCN", + "968171": "PCN", + "965667": "PCN", + "965937": "PCN", + "968170": "PCN", + "968169": "PCN", + "968177": "PCN", + "973731": "PCN", + "965661": "PCN", + "968176": "PCN", + "965660": "PCN", + "968175": "PCN", + "965669": "PCN", + "999XG5": "PCN", + "999XG4": "PCN", + "999XFN": "PCN", + "999XGF": "PCN", + "973729": "PCN", + "973728": "PCN", + "999XGD": "PCN", + "999XGC": "PCN", + "999XGA": "PCN", + "999XG9": "PCN", + "999XG8": "PCN", + "999XG6": "PCN", + "970588": "PCN", + "999XFA": "PCN", + "970586": "PCN", + "970585": "PCN", + "999XFM": "PCN", + "999XFL": "PCN", + "999XFK": "PCN", + "999XFJ": "PCN", + "999XFH": "PCN", + "999XFG": "PCN", + "999XFD": "PCN", + "970589": "PCN", + "999XFC": "PCN", + "968875": "PCN", + "999XDT": "PCN", + "968874": "PCN", + "968879": "PCN", + "968878": "PCN", + "968877": "PCN", + "999XDV": "PCN", + "967838": "PCN", + "999XDF": "PCN", + "999XDD": "PCN", + "967836": "PCN", + "967832": "PCN", + "999XDR": "PCN", + "999XDP": "PCN", + "999XDN": "PCN", + "999XDM": "PCN", + "999XDL": "PCN", + "999XDJ": "PCN", + "999XDH": "PCN", + "999XDG": "PCN" + }, + { + "Product Collection": "Arria® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "28 nm", + "Logic Elements (LE)": "462000", + "Adaptive Logic Modules (ALM)": "174340", + "Adaptive Logic Module (ALM) Registers": "697360", + "Fabric and I/O Phase-Locked Loops (PLLs)": "14", + "Maximum Embedded Memory": "25.478 Mb", + "Digital Signal Processing (DSP) Blocks": "1090", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR II+, DDR2, DDR3, LPDDR, LPDDR2, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "540", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "256", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "30", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "10.3125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896, F1152, F1517", + "Additional Information": "View now", + "MM#": "978996", + "Spec Code": "SRCZD", + "Ordering Code": "5ASXMB5G4F40C4", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968333": "PCN", + "968331": "PCN", + "968330": "PCN", + "968329": "PCN", + "968327": "PCN", + "968334": "PCN", + "999XGP": "PCN", + "999XGN": "PCN", + "965666": "PCN", + "965936": "PCN", + "999XGM": "PCN", + "965664": "PCN", + "968179": "PCN", + "999XGL": "PCN", + "999XGJ": "PCN", + "973732": "PCN", + "999XGH": "PCN", + "999XGG": "PCN", + "968326": "PCN", + "965662": "PCN", + "968174": "PCN", + "965670": "PCN", + "999XGT": "PCN", + "968172": "PCN", + "999XGR": "PCN", + "999ZZJ": "PCN", + "973730": "PCN", + "965938": "PCN", + "999XFT": "PCN", + "999XF9": "PCN", + "999XFR": "PCN", + "999XFP": "PCN", + "968883": "PCN", + "999XF8": "PCN", + "968880": "PCN", + "999XF7": "PCN", + "999XF6": "PCN", + "999XF5": "PCN", + "999XG3": "PCN", + "999XG2": "PCN", + "999XG1": "PCN", + "999XG0": "PCN", + "999XFZ": "PCN", + "999XFX": "PCN", + "999XFW": "PCN", + "978996": "PCN", + "999XF3": "PCN", + "999XF2": "PCN", + "999XF1": "PCN", + "999XDZ": "PCN", + "999XDX": "PCN", + "999XDW": "PCN", + "967835": "PCN", + "967834": "PCN", + "967840": "PCN", + "967839": "PCN" + }, + { + "Product Collection": "Intel® Itanium® Processor 9700 Series", + "Code Name": "Products formerly Kittson", + "Vertical Segment": "Server", + "Processor Number": "9720", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.73 GHz", + "Cache": "20 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95.0 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951886", + "Spec Code": "SR2ZS", + "Ordering Code": "CM8067901049809", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "951886": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9700 Series", + "Code Name": "Products formerly Kittson", + "Vertical Segment": "Server", + "Processor Number": "9740", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.13 GHz", + "Cache": "24 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95.0 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951882", + "Spec Code": "SR2ZP", + "Ordering Code": "CM8067901049718", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "951882": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9700 Series", + "Code Name": "Products formerly Kittson", + "Vertical Segment": "Server", + "Processor Number": "9750", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.53 GHz", + "Cache": "32 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95.0 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951885", + "Spec Code": "SR2ZR", + "Ordering Code": "CM8067901049811", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "951885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9700 Series", + "Code Name": "Products formerly Kittson", + "Vertical Segment": "Server", + "Processor Number": "9760", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.66 GHz", + "Cache": "32 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95.0 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951883", + "Spec Code": "SR2ZQ", + "Ordering Code": "CM8067901049720", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "951883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9500 Series", + "Code Name": "Products formerly Poulson", + "Vertical Segment": "Server", + "Processor Number": "9520", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.73 GHz", + "Cache": "20 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921338", + "Spec Code": "SR0SZ", + "Ordering Code": "CM8063101049806", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "921338": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9500 Series", + "Code Name": "Products formerly Poulson", + "Vertical Segment": "Server", + "Processor Number": "9540", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.13 GHz", + "Cache": "24 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921339", + "Spec Code": "SR0T0", + "Ordering Code": "CM8063101049718", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "921339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9500 Series", + "Code Name": "Products formerly Poulson", + "Vertical Segment": "Server", + "Processor Number": "9550", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "32 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921337", + "Spec Code": "SR0SY", + "Ordering Code": "CM8063101049807", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "921337": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9500 Series", + "Code Name": "Products formerly Poulson", + "Vertical Segment": "Server", + "Processor Number": "9560", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.53 GHz", + "Cache": "32 MB", + "Bus Speed": "6.4 GT/s", + "TDP": "170 W", + "Embedded Options Available": "No", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "LGA1248", + "TJUNCTION": "95 C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921340", + "Spec Code": "SR0T1", + "Ordering Code": "CM8063101049716", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "921340": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9300 Series", + "Code Name": "Products formerly Tukwila", + "Vertical Segment": "Server", + "Processor Number": "9310", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'2014", + "Lithography": "65 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "10 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "FSB Parity": "Yes", + "TDP": "130 W", + "Embedded Options Available": "No", + "Physical Address Extensions": "50-bit", + "Sockets Supported": "FCLGA1248", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "Itanium 64-bit", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "903770", + "Spec Code": "SLBMV", + "Ordering Code": "LW80603003243AA", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903770": "PCN\n |\n MDDS", + "910439": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9300 Series", + "Code Name": "Products formerly Tukwila", + "Vertical Segment": "Server", + "Processor Number": "9320", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'2014", + "Lithography": "65 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.47 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "16 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "155 W", + "Embedded Options Available": "No", + "Physical Address Extensions": "50-bit", + "Sockets Supported": "FCLGA1248", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "Itanium 64-bit", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "903774", + "Spec Code": "SLBN2", + "Ordering Code": "LW80603002550AB", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903774": "PCN\n |\n MDDS", + "910430": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9300 Series", + "Code Name": "Products formerly Tukwila", + "Vertical Segment": "Server", + "Processor Number": "9330", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'2014", + "Lithography": "65 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.60 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "20 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "155 W", + "Embedded Options Available": "No", + "Physical Address Extensions": "50-bit", + "Sockets Supported": "FCLGA1248", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "Itanium 64-bit", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "903766", + "Spec Code": "SLBMU", + "Ordering Code": "LW80603004728AA", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903766": "PCN\n |\n MDDS", + "910437": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9300 Series", + "Code Name": "Products formerly Tukwila", + "Vertical Segment": "Server", + "Processor Number": "9340", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'2014", + "Lithography": "65 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.73 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "20 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "185 W", + "Embedded Options Available": "No", + "Physical Address Extensions": "50-bit", + "Sockets Supported": "FCLGA1248", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "Itanium 64-bit", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "903771", + "Spec Code": "SLBMW", + "Ordering Code": "LW80603003240AA", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "910436": "PCN\n |\n MDDS", + "903771": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9300 Series", + "Code Name": "Products formerly Tukwila", + "Vertical Segment": "Server", + "Processor Number": "9350", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'2014", + "Lithography": "65 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.87 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "185 W", + "Embedded Options Available": "No", + "Physical Address Extensions": "50-bit", + "Sockets Supported": "FCLGA1248", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "Itanium 64-bit", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "903772", + "Spec Code": "SLBMX", + "Ordering Code": "LW80603002589AA", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903772": "PCN\n |\n MDDS", + "912201": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9110N", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "12 MB L3 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "75 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890611", + "Spec Code": "SLABA", + "Ordering Code": "NE80567KE025003", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890611": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9120N", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.42 GHz", + "Cache": "12 MB L3 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890612", + "Spec Code": "SLABB", + "Ordering Code": "NE80567KEB17003", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890612": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9130M", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890610", + "Spec Code": "SLAB9", + "Ordering Code": "NE80567KF0288M", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9140M", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890607", + "Spec Code": "SLAB5", + "Ordering Code": "NE80567KF028009", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890607": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9140N", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890609", + "Spec Code": "SLAB7", + "Ordering Code": "NE80567KE025009", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890609": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9150M", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890606", + "Spec Code": "SLAB4", + "Ordering Code": "NE80567KF028015", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890606": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9150N", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "890608", + "Spec Code": "SLAB6", + "Ordering Code": "NE80567KE025015", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "890608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Itanium® Processor 9100 Series", + "Code Name": "Products formerly Montvale", + "Vertical Segment": "Server", + "Processor Number": "9152M", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "Embedded Options Available": "No", + "TCASE": "76°C", + "Package Size": "113mm x 48.26mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Intel® Itanium® Processor 9000 Series", + "Code Name": "Products formerly Montecito", + "Vertical Segment": "Server", + "Processor Number": "9015", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Expected Discontinuance": "Q2'2008", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "104 W", + "VID Voltage Range": "1.0875V-1.25V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA611", + "TCASE": "76°C", + "Package Size": "113mm x 48.2mm", + "Processing Die Size": "596 mm2", + "# of Processing Die Transistors": "1720 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "Itanium 64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "885383", + "Spec Code": "SL9PC", + "Ordering Code": "BX805499015", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "880642": "PCN\n |\n MDDS", + "883776": "PCN\n |\n MDDS", + "883486": "PCN\n |\n MDDS", + "885383": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Celeron® Processor 7305 (8M Cache, 1.10 GHz)", + "Total Cores": "5", + "Total Threads": "5", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "4GB (single-channel), 8GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor 7000 Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "7305", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "5", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW79", + "Spec Code": "SRLFX", + "Ordering Code": "FJ8071504827300", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW79": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Core™ i3-1215U Processor (10M Cache, up to 4.40 GHz)", + "Total Cores": "6", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "8GB, 16GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1215U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "6", + "# of Performance-cores": "2", + "# of Efficient-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW76", + "Spec Code": "SRLFU", + "Ordering Code": "FJ8071504827101", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW76": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Core™ i5-1235U Processor (12M Cache, up to 4.40 GHz)", + "Total Cores": "10", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "8GB, 16GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1235U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6P", + "Spec Code": "SRLFR", + "Ordering Code": "FJ8071504826803", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6P": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Core™ i7-1255U Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "10", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "16GB, 32GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1255U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6M", + "Spec Code": "SRLFP", + "Ordering Code": "FJ8071504826607", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6M": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Core™ i5-1245U Processor (12M Cache, up to 4.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "10", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "8GB, 16GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1245U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6W", + "Spec Code": "SRLFS", + "Ordering Code": "FJ8071504826901", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AXXN": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Hard Bay", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "1H'25", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "Intel 7", + "Processor Included": "Intel® Core™ i7-1265U Processor (12M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "10", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Memory": "16GB, 32GB (dual-channel)", + "Memory Types": "LPDDR5-5200", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "16", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1265U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6L", + "Spec Code": "SRLFN", + "Ordering Code": "FJ8071504826502", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6L": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Eden Bay", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBi7", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® Z690 Chipset", + "Processor Included": "Intel® Core™ i7-12700 Processor (25M Cache, up to 4.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "12", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU), PCIe X16 Gen5 gold fingers", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "10GbE (AQC113)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "202 x 131 x 39mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "180 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGT", + "Spec Code": "SRL4Q", + "Ordering Code": "BXC8071512700", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVR": "PCN", + "99ARGG": "PCN", + "99ARGT": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Eden Bay", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBi9", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® Z690 Chipset", + "Processor Included": "Intel® Core™ i9-12900 Processor (30M Cache, up to 5.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "16", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU), PCIe X16 Gen5 gold fingers", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "10GbE (AQC113) + Intel® i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "202 x 131 x 39mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.40 GHz", + "Efficient-core Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "202 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGR", + "Spec Code": "SRL4K", + "Ordering Code": "BXC8071512900", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVC": "PCN", + "99ARGF": "PCN", + "99ARGR": "PCN" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly DRIVER BAY", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11DBBi7", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "65 W", + "Board Chipset": "Intel® WM590 Chipset", + "Processor Included": "Intel® Core™ i7-11700B Processor (24M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "3.20 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen3 slots (PCH), 1x M.2 PCIe X4 Gen4 slot (CPU), PCIe X16 Gen4 gold fingers", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX210", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX210(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "202 x 131 x 39mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8X5", + "Ordering Code": "BNUC11DBBI70000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8X4": "PCN\n |\n MDDS", + "99A8X5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700B", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "24 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Configurable TDP-up": "65 W", + "Configurable TDP-down": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 26.5mm", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly DRIVER BAY", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11DBBi9", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "65 W", + "Board Chipset": "Intel® WM590 Chipset", + "Processor Included": "Intel® Core™ i9-11900KB Processor (24M Cache, up to 4.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "3.30 GHz", + "Max Turbo Frequency": "4.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen3 slots (PCH), 1x M.2 PCIe X4 Gen4 slot (CPU), PCIe X16 Gen4 gold fingers", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX210", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX210(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "202 x 131 x 39mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8X3", + "Ordering Code": "BNUC11DBBI90000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8X2": "PCN\n |\n MDDS", + "99A8X3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900KB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "24 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Configurable TDP-up": "65 W", + "Configurable TDP-down": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 26.5mm", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFWD", + "Spec Code": "SRKU4", + "Ordering Code": "FH8069004610310", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFWD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Celeron® 6305 Processor (4M Cache, 1.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Intel® NUC 11 Compute Element with Intel® Celeron® processors gives you the choice and cost-effectiveness of a general-purpose system. Built-in and accessible I/O makes integration and customization easy.", + "Included Memory": "4GB (single-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99A8FW", + "Ordering Code": "BKCM11EBC4W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FW": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6305", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "2", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3G6", + "Spec Code": "SRK0B", + "Ordering Code": "FH8069004531901", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3G6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Platform benefits of 11th Gen Intel® Core™ processors include revolutionary Intel® Iris® Xe graphics and support for advanced wireless and wired connectivity with Intel® Wi-Fi 6 (Gig+) and Thunderbolt™ technology.", + "Included Memory": "8GB (dual-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99A8FV", + "Ordering Code": "BKCM11EBI38W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FV": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Platform benefits of 11th Gen Intel® Core™ processors include revolutionary Intel® Iris® Xe graphics and support for advanced wireless and wired connectivity with Intel® Wi-Fi 6 (Gig+) and Thunderbolt™ technology.", + "Included Memory": "8GB (dual-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99A8FT", + "Ordering Code": "BKCM11EBI58W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FT": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Platform benefits of 11th Gen Intel® Core™ processors include revolutionary Intel® Iris® Xe graphics and support for advanced wireless and wired connectivity with Intel® Wi-Fi 6 (Gig+) and Thunderbolt™ technology.", + "Included Memory": "16GB (dual-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99A8FP", + "Ordering Code": "BKCM11EBI716W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FP": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Platform benefits of 11th Gen Intel® Core™ processors include revolutionary Intel® Iris® Xe graphics and support for advanced wireless and wired connectivity with Intel® Wi-Fi 6 (Gig+) and Thunderbolt™ technology.", + "Included Memory": "8GB (dual-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A8FR", + "Ordering Code": "BKCM11EBV58W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly ELK BAY", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "10 nm SuperFin", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Platform benefits of 11th Gen Intel® Core™ processors include revolutionary Intel® Iris® Xe graphics and support for advanced wireless and wired connectivity with Intel® Wi-Fi 6 (Gig+) and Thunderbolt™ technology.", + "Included Memory": "16GB (dual-channel)", + "Memory Types": "LPDDR4x-4266", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (DP or HDMI), 1x DP/typeC, 1x eDP", + "# of Displays Supported ‡": "4", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 4 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A8FM", + "Ordering Code": "BKCM11EBV716W", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FM": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i5QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i5-9300H Processor (8M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), PCIe X16 gold fingers", + "M.2 Card Slot (storage)": "2x via PCH (SATA or NVMe)", + "# of USB Ports": "10", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "203 x 131 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LX1", + "Ordering Code": "BKNUC9I5QNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LX1": "PCN" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9300H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8R", + "Spec Code": "SRF6X", + "Ordering Code": "CL8068404121905", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXR": "PCN\n |\n MDDS", + "999A8R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i7QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), PCIe X16 gold fingers", + "M.2 Card Slot (storage)": "2x via PCH (SATA or NVMe)", + "# of USB Ports": "10", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "203 x 131 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LX0", + "Ordering Code": "BKNUC9I7QNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LX0": "PCN" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i9QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i9-9980HK Processor (16M Cache, up to 5.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "5.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), PCIe X16 gold fingers", + "M.2 Card Slot (storage)": "2x via PCH (SATA or NVMe)", + "# of USB Ports": "10", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "203 x 131 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LWZ", + "Ordering Code": "BKNUC9I9QNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LWZ": "PCN" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9980HK", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ5", + "Spec Code": "SRFD0", + "Ordering Code": "CL8068404068910", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Quartz Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9V7QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i7-9850H Processor (12M Cache, up to 4.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), PCIe X16 gold fingers", + "M.2 Card Slot (storage)": "2x via PCH (SATA or NVMe)", + "# of USB Ports": "10", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "203 x 131 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "Discrete 2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999LX3", + "Ordering Code": "BKNUC9V7QNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LX3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9850H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXK", + "Spec Code": "SRFCN", + "Ordering Code": "CL8068404069311", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Quartz Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9VXQNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Xeon® E-2286M Processor (16M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "5.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), PCIe X16 gold fingers", + "M.2 Card Slot (storage)": "2x via PCH (SATA or NVMe)", + "# of USB Ports": "10", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Internal Headers: 2x USB 3.2g2 via Type-C Key B, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "203 x 131 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "Discrete 2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999LX2", + "Ordering Code": "BKNUC9VXQNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LX2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2286M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ4", + "Spec Code": "SRFCZ", + "Ordering Code": "CL8068404068710", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Celeron® Processor 4305U (2M Cache, 2.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with Intel® Celeron® processors gives you the choice and cost-effectiveness of a general-purpose system. Built-in and accessible I/O makes integration and customization easy.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB", + "Memory Types": "LPDDR3-1866", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999M09", + "Ordering Code": "BKCM8CCB4R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999M09": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4305U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C35", + "Spec Code": "SRFA5", + "Ordering Code": "CL8068404066103", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C35": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Pentium® Gold 5405U Processor (2M Cache, 2.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with Intel® Pentium® Gold processors gives you the choice and cost-effectiveness of a general-purpose system. Built-in and accessible I/O makes integration and customization easy.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB", + "Memory Types": "LPDDR3-1866", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999M08", + "Ordering Code": "BKCM8PCB4R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999M08": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5405U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984529", + "Spec Code": "SRESL", + "Ordering Code": "CL8068404080703", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999FFH": "PCN\n |\n MDDS", + "984529": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i3-8145U Processor (4M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with 8th gen Intel® Core™ processors give the performance you demand in a manageable, flexible form factor. Plugs into Intel® NUC Board Elements so you can integrate compute and connectivity to quickly develop custom solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Memory": "4GB", + "Memory Types": "LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999M07", + "Ordering Code": "BKCM8I3CB4N", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999M07": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i5-8265U Processor (6M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with 8th gen Intel® Core™ processors give the performance you demand in a manageable, flexible form factor. Plugs into Intel® NUC Board Elements so you can integrate compute and connectivity to quickly develop custom solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Memory": "8GB", + "Memory Types": "LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999M06", + "Ordering Code": "BKCM8I5CB8N", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999M06": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8265U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "3EA0, 3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Deep Learning Boost (Intel® DL Boost)": "No", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FFA", + "Spec Code": "SRFFY", + "Ordering Code": "CL8068404064610", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982922": "PCN\n |\n MDDS", + "982921": "PCN\n |\n MDDS", + "999FFA": "PCN", + "999FF9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-8565U Processor (8M Cache, up to 4.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.80 GHz", + "Max Turbo Frequency": "4.60 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with 8th gen Intel® Core™ processors give the performance you demand in a manageable, flexible form factor. Plugs into Intel® NUC Board Elements so you can integrate compute and connectivity to quickly develop custom solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Memory": "8GB", + "Memory Types": "LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999MCL", + "Ordering Code": "BKCM8I7CB8N", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MCL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8565U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "982918", + "Spec Code": "SREJP", + "Ordering Code": "FJ8068404064405", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982918": "PCN\n |\n MDDS", + "999FF4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i5-8365U Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with 8th gen Intel® Core™ processors give the performance you demand in a manageable, flexible form factor. Plugs into Intel® NUC Board Elements so you can integrate compute and connectivity to quickly develop custom solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Memory": "8GB", + "Memory Types": "LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999M05", + "Ordering Code": "BKCM8V5CB8N", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999M05": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Compute Elements", + "Code Name": "Products formerly Chandler Bay", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 18.04 LTS*", + "Board Form Factor": "U-Series Compute Element (95 x 65 x 6 mm)", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-8665U Processor (8M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "Intel® NUC Compute Element with 8th gen Intel® Core™ processors give the performance you demand in a manageable, flexible form factor. Plugs into Intel® NUC Board Elements so you can integrate compute and connectivity to quickly develop custom solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Included Memory": "8GB", + "Memory Types": "LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x DDI (configurable as DP/HDMI), 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Configurations ‡": "1x PCIe x4 Gen 3 (NVMe/SATA) 1x PCIe x4 Gen 3 (NVMe) 1x PCIe x1 Gen 3", + "USB Configuration": "4x USB 3.2 Gen 2 3x USB 2.0", + "Integrated LAN": "Built-in GbE MAC (for i219 PHY)", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "HD Audio, DMIC, eSPI", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999MCK", + "Ordering Code": "BKCM8V7CB8N", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MCK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Monster Cove", + "Status": "Launched", + "Launch Date": "Q1'22", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "PCI Express Revision": "Gen 5", + "PCI Express Configurations ‡": "PCIe X16 Gen5 double-width slot" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Monster Cove", + "Status": "Launched", + "Launch Date": "Q3'21", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "PCI Express Revision": "Gen 4", + "PCI Express Configurations ‡": "PCIe X16 Gen4 double-width slot shared with PCIe X4 Gen4; PCIe X4 Gen4 M.2 22x80/110 NVMe slot", + "M.2 Card Slot (storage)": "1", + "MM#": "99A8X8", + "Ordering Code": "BKBBMC1B1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "99A8X8": "MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly GARDEN BEACH", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "TDP": "28 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Description": "The modular Intel® NUC Board Element is designed to take a range of Intel® NUC Compute Elements. Also available as modular carrier board with a built-in thermal solution. Ideal for providers creating embedded solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, DP 1.4a via Type C, eDP", + "# of Displays Supported ‡": "4", + "M.2 Card Slot (storage)": "2280 M-key (NVMe Gen4)", + "# of USB Ports": "4", + "USB Configuration": "1x rear USB 4 via Type C 4x rear USB 3.2 Gen2 (10Gbps) 2x USB 2.0 via internal headers", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "MM#": "99A8G1", + "Ordering Code": "BKCMB2GB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "99A8G1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q3'20", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The modular Intel® NUC Rugged Board designed for the Intel® NUC Rugged Chassis Element or for use in a third-party chassis and/or embedded solutions. The Six HDMI* ports are designed for digital signage and ideal for the QSR market or display walls.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Six HDMI, eDP", + "# of Displays Supported ‡": "6", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front port, 2x headers", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "200 x 136.4 mm", + "MM#": "999M8M", + "Ordering Code": "BKCMB1ABC", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M8M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly West Cove", + "Status": "Launched", + "Launch Date": "Q1'20", + "DC Input Voltage Supported": "12", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Baseboard for Intel Compute Element H-series", + "PCI Express Revision": "Gen 3", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "2", + "MM#": "999M2A", + "Ordering Code": "BKBBWC1B1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M2A": "PCN" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Butler Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The modular Intel® NUC Board Element designed to take a range of Intel® NUC Compute Elements. Also available as modular carrier board with built in thermal solution. Ideal for providers creating embedded solutions.", + "Product Brief": "View now", + "Additional Information": "View now", + "Memory Types": "Requires NUC Compute Element (U)", + "Graphics Output": "Dual HDMI 2.0, eDP", + "M.2 Card Slot (storage)": "2280 M-key (NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "4x rear USB 3.2 Gen2 (10Gbps) 2x USB 2.0 via internal headers", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V); Internal 2x2 power connector", + "MM#": "999M8T", + "Ordering Code": "BKCMB1BB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M8T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The modular Intel® NUC Rugged Board designed for the Intel® NUC Rugged Chassis Element or for use in a third-party chassis and/or embedded solutions. The expandable board – with two headers and serial DV9 - is designed for edge analytics.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI, eDP", + "# of Displays Supported ‡": "3", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front port, 2x headers", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "170 x 136.4 mm", + "MM#": "999M8C", + "Ordering Code": "BKCMB1ABA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M8C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The modular Intel® NUC Rugged Board designed for the Intel® NUC Rugged Chassis Element or for use in a third-party chassis and/or embedded solutions. The Dual LAN board – designed for IoT deployments – offers design flexibility.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI, eDP", + "# of Displays Supported ‡": "3", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front, 2x rear ports", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM & i211-AT GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "170 x 136.4 mm", + "MM#": "999M8F", + "Ordering Code": "BKCMB1ABB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M8F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Chassis Elements", + "Code Name": "Products formerly FORT BEACH", + "Status": "Launched", + "Launch Date": "Q3'20", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Memory Types": "Requires NUC Compute Element (U)", + "Graphics Output": "Dual HDMI Out", + "# of Displays Supported ‡": "2", + "M.2 Card Slot (storage)": "2280, 2242/80 M-key", + "# of USB Ports": "6", + "USB Configuration": "USB3.1g2: 1 front, 2 rear ports USB2.0: 1 front port & 2 rear ports", + "Integrated LAN": "Intel® i219-LM GbE and Intel® i211-AT GbE", + "Chassis Dimensions": "200 x 150 x 35mm (w/ rubber feet)", + "MM#": "99A2PD", + "Ordering Code": "BKCMCM2FB4", + "US HTS": "Varies By Product", + "ECCN": "EAR99", + "CCATS": "NA", + "99A2P2": "PCN\n |\n MDDS", + "99A2P3": "PCN\n |\n MDDS", + "99A2P6": "PCN\n |\n MDDS", + "99A2PC": "PCN\n |\n MDDS", + "99A2PD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Chassis Elements", + "Code Name": "Products formerly FORT BEACH", + "Status": "Launched", + "Launch Date": "Q3'20", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Memory Types": "Requires NUC Compute Element (U)", + "Graphics Output": "Dual HDMI Out", + "# of Displays Supported ‡": "2", + "M.2 Card Slot (storage)": "2280, 2242/80 M-key", + "# of USB Ports": "6", + "USB Configuration": "USB3.1g2: 1 front, 2 rear ports USB2.0: 1 front port & 2 rear ports", + "Integrated LAN": "Intel® i219-LM GbE and Intel® i211-AT GbE", + "Additional Headers": "CMCM2FBAV includes HDMI Capture with HDMI Passthrough", + "Chassis Dimensions": "200 x 150 x 35mm (w/ rubber feet)", + "MM#": "99A2P1", + "Ordering Code": "BKCMCM2FBAV4", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "99A2N5": "PCN\n |\n MDDS", + "99A2NJ": "PCN\n |\n MDDS", + "99A2NZ": "PCN\n |\n MDDS", + "99A2P0": "PCN\n |\n MDDS", + "99A2P1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Chassis Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q3'20", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The multi-HDMI Intel® NUC Rugged Chassis + Board Element is designed for harsh environments. The six HDMI* ports enable up to two triple-wide FHD landscape screens, targeting menu-board deployments particularly in the quick service restaurant market.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Up to dual 5760x1080 via six HDMI ports", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front port, 2x headers", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "254 x 152.4 x 36 mm (plus 4.8mm for rubber feet)", + "MM#": "999M9D", + "Ordering Code": "BKCMCR1ABC2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "999M9A": "PCN\n |\n MDDS", + "999M9C": "PCN\n |\n MDDS", + "999M9D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Chassis Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The expandable Intel® NUC Rugged Chassis + Board Element designed for harsh and extreme environments. The expandable board – with two headers and serial DV9 - is designed for edge analytics and offers design flexibility.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front port, 2x headers", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "254 x 152.4 x 36 mm (plus 4.8mm for rubber feet)", + "MM#": "999M95", + "Ordering Code": "BKCMCR1ABA2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M8V": "PCN\n |\n MDDS", + "999M93": "PCN\n |\n MDDS", + "999M95": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Chassis Elements", + "Code Name": "Products formerly Austin Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "The Dual LAN Intel® NUC Rugged Chassis + Board Element designed for harsh and extreme environments. The Dual LAN board – designed for IoT deployments – offers design flexibility.", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "M.2 Card Slot (storage)": "2280, 2242/80 (M-key)", + "USB Configuration": "USB 3.2g2: 1x front, 2x rear ports USB 3.1g1: 1x header USB 2.0: 1x front, 2x rear ports", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM GbE and Intel® i211-AT GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "254 x 152.4 x 36 mm (plus 4.8mm for rubber feet)", + "MM#": "999M98", + "Ordering Code": "BKCMCR1ABB2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M96": "PCN\n |\n MDDS", + "999M97": "PCN\n |\n MDDS", + "999M98": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Assembly Elements", + "Code Name": "Products formerly GARDEN BEACH", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "TDP": "28 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, DP 1.4a via Type C, eDP", + "# of Displays Supported ‡": "4", + "M.2 Card Slot (storage)": "2280 M-key (NVMe Gen4)", + "# of USB Ports": "4", + "USB Configuration": "1x rear USB 4 via Type C 4x rear USB 3.2 Gen2 (10Gbps) 2x USB 2.0 via internal headers", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Chassis Dimensions": "117 x 147 x 25 mm", + "MM#": "99A8G2", + "Ordering Code": "BKCMA2GB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "99A8G2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Assembly Elements", + "Code Name": "Products formerly Butler Beach", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "TDP": "15 W", + "DC Input Voltage Supported": "12V~24V", + "Warranty Period": "3 yrs", + "Datasheet": "View now", + "Description": "With a built-in thermal solution, the modular Intel® NUC Board + Assembly Element is designed to take a range of Intel® NUC Compute", + "Product Brief": "View now", + "Additional Information": "View now", + "Graphics Output": "Dual HDMI 2.0, eDP", + "M.2 Card Slot (storage)": "2280 M-key (NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "4x rear USB 3.2 Gen2 (10Gbps) 2x USB 2.0 via internal headers", + "Integrated LAN": "Intel® i219-LM GbE", + "Additional Headers": "Front panel (PWR_SW, PWR_LED, RST, HDD_Act, 5V); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 147 x 25 mm", + "MM#": "999M9F", + "Ordering Code": "BKCMA1BB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "999M9F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Laptop Elements", + "Code Name": "Products formerly Camden County", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Form Factor": "U-series Element Carrier Board", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Warranty Period": "2 yrs", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Included Storage": "Requires m.2 storage module", + "Memory Types": "Requires NUC Compute Element (U)", + "Graphics Output": "1x HDMI 2.0b, 1x miniDP 1.4a, 1x USB-C DP 1.4a", + "PCI Express Configurations ‡": "PCIe x4 Gen 4 (m.2)", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "3", + "USB Configuration": "2x USB 3.2 Gen2, 1x Thunderbolt™ 4", + "Integrated LAN": "Intel® Ethernet Connection I219-LM", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Chassis Dimensions": "304x230x16.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AGKP", + "Ordering Code": "BKCMCN1CC1DU6", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "99AGK6": "PCN\n |\n MDDS", + "99AGK8": "PCN\n |\n MDDS", + "99AGKF": "MDDS", + "99AGKH": "MDDS", + "99AGKJ": "MDDS", + "99AGKK": "MDDS", + "99AGKM": "MDDS", + "99AGKN": "MDDS", + "99AGKP": "MDDS" + }, + { + "Product Collection": "Intel® Server System M70KLP Family", + "Code Name": "Products formerly Kelton Pass", + "Launch Date": "Q1'21", + "Status": "Discontinued", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, March 7, 2022", + "Last Order": "Friday, May 6, 2022", + "Last Receipt Attributes": "Tuesday, July 5, 2022", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "841 mm x 435 mm x 87 mm", + "Board Form Factor": "610mm x 424mm, Thickness 2.34mm", + "Rack Rails Included": "Yes", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "P+", + "TDP": "250 W", + "Heat Sink": "(2) 2U Front CPU Heatsink (2) 2U Rear CPU Heatsink", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board M70KLP2SB", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Chassis M70KLP2UCHHH (1) Intel® Server Board M70KLP2SB (1) 2U PCIe Riser M.2 Connector KLP2UM2RISER (1) SlimSAS M.2 Cable KLPCBLSSM2 (1) 2U 8x2.5\" SAS/NVME Hot-Swap Backplane KLP08HSBP (1) DC Power Cable Mid-HSBP KLPCBLDCPM - 230mm (1) Comm Cable HSBP-Mid KLPCBLCOM224M - 820mm (6) 2U Fan Kit KLP2UFAN (1) Fan Bracket (8) 2.5\" Hot-Swap Drive Carrier KLP25HSCAR (2) 2000W AC Common Redundant Power Supply KLP2000CRPS (1) 2U Rail Kit (Full Extension) KLPRAILK (1) Front I/O Panel assembly (VGA+1x USB 3.0+1x USB 2.0) installed (1) 2U Server airduct (48) Blank DIMM slots (4) CPU heat sink + CPU Clips (2) Front Panel 8 Drive Filler Plate (1) PDB (1) PDB Cable Note: Risers supporting additional PCIe 3.0 cards, drive carriers and backplanes (for (16) or (24) 2.5” drive support) sold separately.", + "Description": "Integrated 2U server system supporting (4) 3rd Generation Intel® Xeon® Processors. (8) 2.5” drives (2) x16 Half Height Half Length PCIe 3.0 cards (4) x8 Half Height Half Length PCIe 3.0 cards.", + "Storage Profile": "Hybrid Storage Profile", + "Memory Types": "DDR4, RDIMMs, LDRIMMs and Intel® Optane™ Persistent Memory. 15 TB with Intel® Optane™ Persistent Memory", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "6 TB", + "Max Storage Capacity": "192 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "PCIe x8 Gen 3": "4", + "PCIe x16 Gen 3": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "40", + "Riser Slot 1: Included Slot Configuration(s)": "2x PCIe Gen3 x16 + 1x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "# of USB Ports": "5", + "USB Configuration": "One USB 2.0 port on front panel One USB 3.0 port on front panel Two USB 3.0 port on rear panel One USB 2.0 port on board", + "Total # of SATA Ports": "1", + "Max # of UPI Links": "6", + "RAID Configuration": "1, 5, 6, and 10", + "# of Serial Ports": "2", + "Max CPU Configuration": "4", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server M50CYP Family", + "Code Name": "Products formerly Coyote Pass", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2026", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "781 x 438 x 43 mm", + "Board Form Factor": "18.79” x 16.84”", + "Rack Rails Included": "No", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket-P4", + "TDP": "270 W", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board M50CYP2SB1U", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) 1U 2.5\"chassis with Quick Reference Label affixed to top cover – iPN K52548- xxx (1) Intel® Server Board M50CYP2SB1U (4) Hot-swap drive bays with drive mounting rails and blanks – iPN K53035-xxx (1) Front panel (left) with two USB ports – iPN K67061- xxx (1) Front control panel (right) with control/status buttons – iPN K48178- xxx (1) 1U Hot-swap backplane spare CYPHSBP1204 (1) Cable wall Assembly (Left) –iPN K72602- xxx (1) Cable wall Assembly (Right) – iPN K72603- xxx (1) 1U Spare PCIe Riser CYP1URISER1STD (16) DIMM Blank – iPN K91058- xxx (1) Splitter power cable from server board to HSBP, 445/720 mm – iPN K61358- xxx (1) I2C cable from server board to HSBP, 350 mm – iPN K63232- xxx (2) EVAC heat sink– iPN K67428- xxx (8) 1U Spare Fan Kit CYPFAN1UKIT (2) Processor carrier clip – iPN J98484- xxx NOTE: NO PSU included", + "Riser Card Included": "1U Spare PCIe Riser CYP1URISER1STD", + "Description": "Integrated 1U system featuring an Intel® Server Board M50CYP2SB1U, supporting two 3rd Generation Intel® Xeon® Scalable processors, (4) 2.5\" SSD with air cooling. NOTE: NO PSU included", + "Memory Types": "•DDR4 (RDIMM) •3DS-RDIMM •Load Reduced DDR4 (LRDIMM) •3DS-LRDIMM •Intel® Optane™ persistent memory 200 series", + "Max Memory Size (dependent on memory type)": "12 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-Swap 2.5\" SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "16", + "# of USB Ports": "6", + "USB Configuration": "•Three USB 3.0 on the back panel •One USB 3.0 + one USB 2.0 on the front panel •One USB 2.0 internal Type-A", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5/10", + "# of Serial Ports": "2", + "Integrated SAS Ports": "8", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM Version": "2.0", + "MM#": "99A3TX", + "Ordering Code": "M50CYP1UR204", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A3TX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server M50CYP Family", + "Code Name": "Products formerly Coyote Pass", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2026", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "781 x 438 x 43 mm", + "Board Form Factor": "18.79” x 16.84”", + "Rack Rails Included": "No", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket-P4", + "TDP": "205 W", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board M50CYP2SB1U", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) 1U 2.5\"chassis with Quick Reference Label affixed to top cover – iPN K52548- xxx (1) Intel® Server Board M50CYP2SB1U (12) Hot-swap drive bays with drive mounting rails and blanks – iPN K53035-xxx (1) Front panel (left) with two USB ports – iPN K67061- xxx (1) Front control panel (right) with control/status buttons – iPN K48178- xxx (1) 1U Hot-swap backplane spare CYPHSBP1212 (1) Cable wall Assembly (Left) –iPN K72602- xxx (1) Cable wall Assembly (Right) – iPN K72603- xxx (1) 1U Spare PCIe Riser CYP1URISER1STD (16) DIMM Blank – iPN K91058- xxx (1) Splitter power cable from server board to HSBP, 445/720 mm – iPN K61358- xxx (1) I2C cable from server board to HSBP, 250 mm – iPN K63232- xxx (2) Standard 1U heat sink- – iPN K39908-xxx (8) 1U Spare Fan Kit CYPFAN1UKIT (2) Processor carrier clip – iPN J98484- xxx NOTE: NO PSU included", + "Riser Card Included": "1U Spare PCIe Riser CYP1URISER1STD", + "Description": "Integrated 1U system featuring an Intel® Server Board M50CYP2SB1U, supporting two 3rd Generation Intel® Xeon® Scalable processors, (12) 2.5\" SSD with air cooling. NOTE: NO PSU included", + "Memory Types": "•DDR4 (RDIMM) •3DS-RDIMM •Load Reduced DDR4 (LRDIMM) •3DS-LRDIMM •Intel® Optane™ persistent memory 200 series", + "Max Memory Size (dependent on memory type)": "12 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-Swap 2.5\" SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "16", + "# of USB Ports": "6", + "USB Configuration": "•Three USB 3.0 on the back panel •One USB 3.0 + one USB 2.0 on the front panel •One USB 2.0 internal Type-A", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5/10", + "# of Serial Ports": "2", + "Integrated SAS Ports": "8", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM Version": "2.0", + "MM#": "99A3TW", + "Ordering Code": "M50CYP1UR212", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A3TW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server M50CYP Family", + "Code Name": "Products formerly Coyote Pass", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2026", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "770 x 446 x 87 mm", + "Board Form Factor": "18.79” x 16.84”", + "Rack Rails Included": "No", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket-P4", + "TDP": "270 W", + "Heat Sink Included": "No", + "System Board": "Intel® Server Board M50CYP2SBSTD", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "2100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U 2.5” Chassis with Quick Reference Label affixed to top cover - iPN K52544 (1) Intel® Server Board M50CYP2SBSTD (12) 2.5” hot-swap drive bays with drive mounting rails and blanks - iPN K53035 (1) Front I/O assembly w/ two USB ports, left side -K48177 (1) Front control panel (right) with control/status buttons -iPN K48178 (1) 2U Hot-swap backplane spare CYPHSBP2208 (16) DIMM Blank –iPN K91058 (1) Splitter power cable, server board connector to HSBP (1, 2, and 3) 2x6 to 3i_2x2- 455/565/720 mm – iPN K62572 (1) I2C cable, server board to- 350 mm –iPN K63232 (1) 2U Standard Air duct – iPN K52571 (6) 2U Spare Fan Kit CYPFAN2UKIT (2) Processor carrier clip -iPN J98484 NOTE: NO PSU included", + "Description": "Integrated 2U system featuring an Intel® Server Board M50CYP2SBSTD, supporting two 3rd Generation Intel® Xeon® Scalable processors, up to (24) 2.5\" SSD with air cooling. NOTE: NO PSU included", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series", + "Max # of DIMMs": "32", + "Max Memory Size (dependent on memory type)": "12 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-Swap 2.5\" SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "32", + "Riser Slot 3: Total # of Lanes": "16", + "# of USB Ports": "6", + "USB Configuration": "•Three USB 3.0 on the back panel •One USB 3.0 + one USB 2.0 on the front panel •One USB 2.0 internal Type-A", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5/10", + "# of Serial Ports": "2", + "Integrated SAS Ports": "8", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM Version": "2.0", + "MM#": "99A3TT", + "Ordering Code": "M50CYP2UR208", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A3TT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server M50CYP Family", + "Code Name": "Products formerly Coyote Pass", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2026", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "712 x 439 x 89 mm", + "Board Form Factor": "18.79” x 16.84”", + "Rack Rails Included": "No", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket-P4", + "TDP": "270 W", + "Heat Sink Included": "No", + "System Board": "Intel® Server Board M50CYP2SBSTD", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "2100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U 3.5” Chassis with -Quick Reference Label affixed to top cover - K52544 (1) Intel® Server Board M50CYP2SBSTD (1) Front I/O assembly w/ two USB ports, left side –iPN K48177 (1) Front control panel (right) with control/status buttons -iPN K48178 (1) 2U Hot-swap backplane spare CYPHSBP2312 (12) HDD/SSD drive carriers 3.5\" –iPN J36447 (16) DIMM Blank –iPN K91058 (1) Splitter power cable, server board connector to 3.5\" HSBP power connectors, 425/660 mm -iPN K67596 (1) I2C cable, server board to- 250 mm -iPN K63231 (1) 2U Standard Air duct -iPN K52571 (6) 2U Spare Fan Kit CYPFAN2UKIT (2) Processor carrier clip -iPN J98484 NOTE: NO PSU included", + "Description": "Integrated 2U system featuring an Intel® Server Board M50CYP2SBSTD, supporting two 3rd Generation Intel® Xeon® Scalable processors, (12) 3.5\" HDD with air cooling. NOTE: NO PSU included", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series", + "Max # of DIMMs": "32", + "Max Memory Size (dependent on memory type)": "12 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot Swap 3.5\"", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "32", + "Riser Slot 3: Total # of Lanes": "16", + "# of USB Ports": "6", + "USB Configuration": "•Three USB 3.0 on the back panel •One USB 3.0 + one USB 2.0 on the front panel •One USB 2.0 internal Type-A", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5/10", + "# of Serial Ports": "2", + "Integrated SAS Ports": "8", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM Version": "2.0", + "MM#": "99A3TV", + "Ordering Code": "M50CYP2UR312", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A3TV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System M20MYP Family", + "Code Name": "Products formerly Mystic Pass", + "Launch Date": "Q2'20", + "Status": "Discontinued", + "Expected Discontinuance": "2023", + "EOL Announce": "Thursday, April 7, 2022", + "Last Order": "Friday, July 1, 2022", + "Last Receipt Attributes": "Wednesday, August 31, 2022", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "660 x 438.5 x 43.2 mm (26” x 17.2” x 1.7”)", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "150 W", + "Heat Sink": "(2) AXXSTPHMKIT1U", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board MYP1USVB", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Chassis M20MYP (1) Intel® Server Board MYP1USVB (2) 1U PCIe x16 Riser Card MYP1URISER (1) 12 Gb SAS backplane FR1304S3HSBP (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2 (1) Pre-installed control panel (1) 350 mm backplane I2C cable J20956 -xxx (1) Mini SAS HD cable AXXCBL650HDHD (1) Backplane power cable (1) 1U Server airduct MYP1UADUCT (6) 40 x 28 mm managed system fans (1) 750W power supply module FXX750PCRPS (2) CPU passive heat sinks, 51 fins AXXSTPHMKIT1U (2) CPU heat sink “No CPU” label inserts (2) Standard CPU Carriers H72853 -xxx", + "Use Conditions": "Server/Enterprise", + "Description": "Integrated 1U system featuring an Intel® Server Board MYP1USVB, supporting two 2nd Generation Intel® Xeon® Scalable processors. Dual CPU support up to 150W TDP. Up to 165W for specific single CPU configurations.", + "Storage Profile": "Hybrid Storage Profile", + "Memory Types": "DDR4 RDIMM/LRDIMM, Up to 2933 MT/s, 1.2 V", + "Max # of DIMMs": "16", + "Max Memory Size (dependent on memory type)": "512 GB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "7", + "USB Configuration": "Two USB 2.0 ports on back panel Two USB 3.0 ports on back panel One internal USB 3.0 type-A connector Two USB 3.0 ports on front panel", + "Total # of SATA Ports": "6", + "Max # of UPI Links": "2", + "RAID Configuration": "0,1,5,10", + "# of Serial Ports": "1", + "Integrated LAN": "Yes", + "# of LAN Ports": "2", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q1'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Sunday, June 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "TDP": "80 W", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SP Family", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply": "450 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPOR, (1) Riser card assembly (AXX1UPCIEX16R2), (2) 450W redundant power supply, (1) Power Distribution Board, (8) 2.5 inch Hot-swap drive bays with (8) 2.5 inch Hot-swap drive trays (FXX25HSCAR2), and (1) 12Gb SAS Backplane (F1U8X25S3HSBP), (1) SATA data cable, (1) Backplane 12C cable, (1) SATA ODD data cable, (1) SAS Data cable, (3) System fans, (1) Standard control panel assembly, (1) Front I/O Panel assembly (1 x VGA & 2 x USB), (1) SATA Optical drive bay with filler panel, (2) Chassis handles -installed", + "Description": "Intel® Server System R1208SPOSHORR 1U rack system with S1200SPOR board and 8 x 2.5 hot-swapable HDD Drive cage, 2 x 450W redundant power supplies Supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q1'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Sunday, June 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "TDP": "80 W", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SP Family", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply": "350 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPOR, (1) Riser card assembly (AXX1UPCIEX16R2), (1) 350W fixed power supply, (4) 3.5 inch Hot-swap drive bays with (4) 3.5 inch Hot-swap drive trays (FXX35HSCAR), and (1) 12Gb SAS Backplane (FR1304S3HSBP), (1) SATA data cable, (1) Backplane 12C cable, (1) SATA ODD data cable, (1) SAS Data cable, (3) System fans, (1) Standard control panel assembly, (1) Front I/O panel assembly (1 x VGA & 2 x USB), (1) SATA Optical drive bay with filler panel, (2) Chassis handles -installed", + "Description": "Intel® Server System R1304SPOSHBNR 1U rack system with S1200SPOR board and 4 x 3.5 hot-swapable HDD Drive cage, 350W fixed power supply Supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q1'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Sunday, June 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "TDP": "80 W", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SP Family", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply": "450 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPOR, (1) Riser card assembly (AXX1UPCIEX16R2), (2) 450W redundant power supply, (1) Power Distribution Board, (4) 3.5 inch Hot-swap drive bays with (4) 3.5 inch Hot-swap drive trays (FXX35HSCAR), and (1) 12Gb SAS Backplane (FR1304S3HSBP), (1) SATA data cable, (1) Backplane 12C cable, (1) SATA ODD data cable, (1) SAS Data cable, (3) System fans, (1) Standard control panel assembly, (1) Front Q/O Pannel assembly (1 x VGA & 2 x USB), (1) SATA Optical drive bay with filler panel, (2) Chassis handles -installed", + "Description": "Intel® Server System R1304SPOSHORR 1U rack system with S1200SPOR board and 4 x 3.5 hot-swapable HDD Drive cage, 2 x 450W redundant power supplies. Supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "951873", + "Ordering Code": "R1304SPOSHORR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "951873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q4'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SPO", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small and Medium Business", + "Rack-Friendly Board": "Yes", + "Power Supply": "450 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "This product has transitioned to LR1304SPCFG1R.PLEASE NOTE: LR1304SPCFG1R does not include a hard drive and contains some additional configuration changes.---- Prior Product Configuration ----(1) E3-1230 v5 processor(1) Intel® Server Board S1200SPO(1) Riser card assembly (AXX1UPCIEX16R2)(2) 450W redundant power supply(1) Power Distribution Board(4) 3.5 inch Hot-swap drive bays(4) 3.5 inch Hot-swap drive trays (FXX35HSCAR)(1) 12Gb SAS Backplane (FR1304S3HSBP)(1) SATA data cable(1) Backplane 12C cable(1) SATA ODD data cable(1) SAS Data cable(3) System fans(1) Standard control panel assembly(1) Front Q/O Pannel assembly (1 x VGA & 2 x USB)(1) SATA Optical drive bay with filler panel(2) Chassis handles -installed(1) S3250 1.2 TB SSD(2) 16GB DDR4 DIMMsTPM 1.2RMM4Lite2", + "Description": "This product has transitioned to LR1304SPCFG1R.PLEASE NOTE: LR1304SPCFG1R does not include a hard drive and contains some additional configuration changes.", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "2.0", + "MM#": "953555", + "Ordering Code": "LR1304SPCFG1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "953555": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SPO", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPO (1) Riser card assembly (AXX1UPCIEX16R2) (2) 450W redundant power supply (1) Power Distribution Boar (8) 2.5 inch Hot-swap drive bays with (8) 2.5 inch Hot-swap drive trays (FXX25HSCAR2) (1) 12Gb SAS Backplane (F1U8X25S3HSBP) (1) SATA data cable (1) Backplane 12C cable (1) SATA ODD data cable (1) SAS Data cable (3) System fans, (1) Standard control panel assembly (1) Front I/O Panel assembly (1 x VGA & 2 x USB) (1) SATA Optical drive bay with filler panel (2) Chassis handles -installed", + "Description": "Intel® Server System R1208SPOSHOR, 1u rack system with S1200SPO board and 8 x 2.5 hot-swapable HDD Drive cage, 2 x 450W redundant power supplies", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "944477", + "Ordering Code": "R1208SPOSHOR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "942287": "MDDS", + "944477": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SP Family", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply": "350 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPO, (1) Riser card assembly (AXX1UPCIEX16R2), (1) 350W fixed power supply, (4) 3.5 inch Hot-swap drive bays with (4) 3.5 inch Hot-swap drive trays (FXX35HSCAR), and (1) 12Gb SAS Backplane (FR1304S3HSBP), (1) SATA data cable, (1) Backplane 12C cable, (1) SATA ODD data cable, (1) SAS Data cable, (3) System fans, (1) Standard control panel assembly, (1) Front I/O panel assembly (1 x VGA & 2 x USB), (1) SATA Optical drive bay with filler panel, (2) Chassis handles -installed", + "Description": "Intel® Server System R1304SPOSHBN, 1u rack system with S1200SPO board and 4 x 3.5 hot-swapable HDD Drive cage, 350W fixed power supply", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "944471", + "Ordering Code": "R1304SPOSHBN", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "942285": "MDDS", + "944471": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000SPO Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "17.26\"x23.84\"x1.7\" (WxDxH)", + "Board Form Factor": "uATX", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Socket": "LGA 1151 Socket H4", + "Heat Sink": "F1UE3PASSHS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SPO", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Entry", + "Rack-Friendly Board": "Yes", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S1200SPO (1) Riser card assembly (AXX1UPCIEX16R2) (2) 450W redundant power supply (1) Power Distribution Board (4) 3.5 inch Hot-swap drive bays with (4) 3.5 inch Hot-swap drive trays (FXX35HSCAR) (1) 12Gb SAS Backplane (FR1304S3HSBP) (1) SATA data cable (1) Backplane 12C cable (1) SATA ODD data cable (1) SAS Data cable (3) System fans (1) Standard control panel assembly (1) Front Q/O Pannel assembly (1 x VGA & 2 x USB) (1) SATA Optical drive bay with filler panel (2) Chassis handles -installed", + "Description": "Intel® Server System R1304SPOSHOR, 1u rack system with S1200SPO board and 4 x 3.5 hot-swapable HDD Drive cage, 2 x 450W redundant power supplies", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of DIMMs": "4", + "Max Memory Size (dependent on memory type)": "64 GB", + "DIMM Type": "UDIMM", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "1", + "Internal Drive Form Factor": "M.2 SSD", + "Integrated Graphics ‡": "No", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "8", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x8", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "i210", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "1", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "944476", + "Ordering Code": "R1304SPOSHOR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "942286": "MDDS", + "944476": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q1'22", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQR", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label (1) Intel® Server Board S2600WFQR (2) Riser card assembly with 1 slot PCIe* x16 riser card F1UL16RISER3 (8) 2.5” hot-swap drive bays with drive carriers and drive blanks (1) Preinstalled standard control panel assembly (board only FXXFPANEL2) (1) Preinstalled front I/O panel assembly (1x VGA and 2x USB) (1) 200mm backplane I2C cable H91170-xxx (1) 400mm backplane power cable H82099-xxx (1) 290 mm Intel® QAT cable J61138-xxx (1) Air duct H90054-xxx (6) Dual rotor system fans FR1UFAN10PW (1) 1300W power supply module AXX1300TCRPS (2) CPU heat sinks J39509-xxx (2) CPU heat sink label inserts J16115-xxx (2) Standard CPU carriers H72851-xxx (8) DIMM slot blanks G75158-xxx (1) Chassis Stiffener Bar J16623-xxx (1) Power supply bay blank insert (2) AC power cord retention strap assembly H23961-00x", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFQR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "SW RAID 0/1", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "99AW7H", + "Ordering Code": "R1208WFQZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "99AW7H": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q1'22", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label (1) Intel® Server Board S2600WFTR (2) Riser card assembly with 1 slot PCIe* x16 riser card F1UL16RISER3 (8) 2.5” hot-swap drive bays with drive carriers and drive blanks. (1) Preinstalled standard control panel assembly (board only FXXFPANEL2) (1) Preinstalled front I/O panel assembly (1x VGA and 2x USB) (1) 200mm backplane I2C cable H91170-xxx (1) 650mm mini SAS HD Cable AXXCBL650HDHRT (1) 850mm mini SAS HD cable AXXCBL850HDHRT (1) 400mm backplane power cable H82099-xxx (1) SATA optical drive power cable 300 mm H23901-001 (1) SATA optical drive bay mounting kit H19168-xxx (1) Air duct H90054-xxx (6) Dual rotor system fans FR1UFAN10PW (1) 1300W power supply module AXX1300TCRPS (2) CPU heat sinks J39509-xxx (2) Standard CPU carriers H72851-xxx (8) DIMM slot blanks iPN G75158-xxx (1) Chassis Stiffener Bar J16623-xxx (1) Power supply bay blank insert (2) AC power cord retention strap assembly H23961-00x", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFTR with Dual 10GbE LAN, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "99AW7C", + "Ordering Code": "R1208WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "99AW7C": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q1'22", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0R", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label (1) Intel® Server Board S2600WF0R (2) Riser card assembly with 1 slot PCIe* x16 riser card F1UL16RISER3 (4) 3.5” hot-swap drive bays with drive carriers and drive blanks. (1) Preinstalled standard control panel assembly (board only FXXFPANEL2) o 260 mm front panel cable J25698-xxx (1) Preinstalled front I/O panel assembly (1 x VGA and 2 x USB) o 620 mm USB 3.0 cable H76899-xxx o 400 mm video cable H62114-xxx (1) 150 mm backplane I2C cable H91171-xxx (1) 850 mm mini SAS HD cable AXXCBL850HDHRT (1) 350 mm backplane power cable H82100-xxx (1) Air duct H90054-xxx (6) Dual rotor system fans FR1UFAN10PW (1) 1300W power supply module AXX1300TCRPS (2) CPU heat sinks J39509-xxx (2) CPU heat sink “No CPU” label inserts J16115-xxx (2) Standard CPU Carriers H72851-xxx (8) DIMM slot blanks G75158-xxx (1) Chassis Stiffener Bar J16623-xxx (1) Power supply bay blank insert (2) AC power strap H23961-00x Spares for each screw type included", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WF0R, supporting two 2nd Generation Intel® Xeon® Scalable processors, (4) 3.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "99AW7N", + "Ordering Code": "R1304WF0ZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q1'22", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label (1) Intel® Server Board S2600WFTR (2) Riser card assembly with 1 slot PCIe* x16 riser card F1UL16RISER3 (4) 3.5” hot-swap drive bays with drive carriers and drive blanks (1) Preinstalled standard control panel assembly (board only FXXFPANEL2) (1) Preinstalled front I/O panel assembly (1 x VGA and 2 x USB) (1) 150 mm backplane I2C cable H91171-xxx (1) 850 mm mini SAS HD cable AXXCBL850HDHRT (1) 350 mm backplane power cable H82100-xxx (1) SATA optical drive power cable 300 mm H23901-001 (1) SATA optical drive bay mounting kit H19168-xxx (1) Air duct H90054-xxx (6) Dual rotor system fans FR1UFAN10PW (1) 1300W power supply module AXX1300TCRPS (2) CPU heat sinks J39509-xxx (2) CPU heat sink “No CPU” label inserts J16115-xxx (2) Standard CPU Carriers H72851-xxx (8) DIMM slot blanks G75158-xxx (1) Chassis Stiffener Bar J16623-xxx (1) Power supply bay blank insert (2) AC power cord retention strap assembly H23961-00x", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFTR with Dual 10GbE LAN, supporting two 2nd Generation Intel® Xeon® Scalable processors, (4) 3.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "99AW7M", + "Ordering Code": "R1304WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "99AW7M": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 11 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQR", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFQR (Intel® QAT support) (2) Riser card assembly with 1 slot PCIe x16 riser card F1UL16RISER3 (8) 2.5” hot-swap drive bays with drive carriers and drive blanks. Includes: (1) SAS/NVMe* Combo backplane F1U8X25S3PHS (8) 2.5” hot swap drive tool less carriers FXX35HSCAR3 (1) Pre-installed standard control panel assembly *260 mm front panel cable – iPN J25698-xxx (1) Pre-installed front I/O panel assembly o 620 mm USB 3.0 cable – iPN H76899-xxx o 400 mm video cable – iPN H62114-xxx (1) 200mm backplane I2C cable (1) 650mm mini SAS HD Cable AXXCBL650HDHRT (1) 850mm mini SAS HD cable AXXCBL850HDHRT (1) 400mm backplane power cable (1) 290 mm Intel QAT cable (1) Air duct (6) Dual rotor system fans FR1UFAN10PW See Configuration Guide for complete list", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFQR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "SW RAID 0/1", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986059", + "Ordering Code": "R1208WFQYSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986059": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFTR (dual 10GbE LAN) (1) 1U chassis with Quick Reference Label affixed to top cover (8) 2.5” hot-swap drive bays with drive carriers and drive blanks : • (1) SAS/NVMe* Combo backplane F1U8X25S3PHS • (8) 2.5” hot swap drive tool less carriers FXX35HSCAR3 (1) Pre-installed standard control panel assembly FXXFPANEL2 (1) Pre-installed front I/O panel assembly: o 620 mm USB 3.0 cable – iPN H76899-xxx o 400 mm video cable – iPN H62114-xxx (1) 200mm backplane I2C cable (1) 650mm mini SAS HD Cable AXXCBL650HDHRT (1) 850mm mini SAS HD cable AXXCBL850HDHRT (1) 400mm backplane power cable (1) Air duct (6) Dual rotor system fans FR1UFAN10PW (1) 1100W power supply module (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “No CPU” label inserts (2) Standard CPU carriers See Configuration Guide for complete list", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFTR with Dual 10GbE LAN, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986007", + "Ordering Code": "R1208WFTYSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986007": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0R", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 1U chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WF0R (no onboard LAN) (2) Riser card assembly with 1 slot PCIe x16 riser card iPC F1UL16RISER3 (4) 3.5” hot-swap drive bays with drive carriers and drive blanks. Includes: (1) 12 Gb SAS backplane FR1304S3HSBP (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2 (1) Pre-installed standard control panel assembly (board only FXXFPANEL2) 260 mm front panel cable (1) Pre-installed front I/O panel assembly: o 620 mm USB 3.0 cable – iPN H76899-xxx o 400 mm video cable – iPN H62114-xxx (1) 150 mm backplane I2C cable (1) 850 mm mini SAS HD cable AXXCBL850HDHRT (1) 350 mm backplane power cable (1) Air duct (6) Dual rotor system fans FR1UFAN10PW (1) 1100W power supply module - iPC AXX1100PCRPS (2) CPU heat sinks, 39 fin passive See Configuration Guide for complete list", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WF0R, supporting two 2nd Generation Intel® Xeon® Scalable processors, (4) 3.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986047", + "Ordering Code": "R1304WF0YSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 11 SP4*, Ubuntu*", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "1) 1U chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFTR (dual 10 GbE LAN) (2) Riser card assembly with 1 slot PCIe x16 riser card F1UL16RISER3 (4) 3.5” hot-swap drive bays with drive carriers and drive blanks. Includes: (1) 12 Gb SAS backplane FR1304S3HSBP (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2 (1) Pre-installed standard control panel assembly o 260 mm front panel cable – iPN J25698-xxx (1) Pre-installed front I/O panel assembly o 620 mm USB 3.0 cable – iPN H76899-xxx o 400 mm video cable – iPN H62114-xxx (1) 150 mm backplane I2C cable (1) 850 mm mini SAS HD cable AXXCBL850HDHRT (1) 350 mm backplane power cable (1) SATA optical drive power cable 300 mm (1) SATA optical drive bay mounting kit (1) Air duct (6) Dual rotor system fan FR1UFAN10PW See Configuration Guide for complete list", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFTR with Dual 10GbE LAN, supporting two 2nd Generation Intel® Xeon® Scalable processors, (4) 3.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply, Intel® OCP Module.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "1", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986048", + "Ordering Code": "R1304WFTYSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986048": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFT (Dual 10GbE LAN) S2600WFT, (2) Riser card assembly with 1 slot PCIe x16 riser card F1UL16RISER3, (8) 2.5” Hot-swap drive bays with drive carriers and drive blanks: Includes (1) SAS/NVMe Combo backplane F1U8X25S3PHS, (8) 2.5” hot swap drive tool less carriers FXX25HSCAR3, (1) Pre-installed Standard Control Panel assembly FXXFPANEL2, (1) – Pre-installed Front I/O Panel assembly (VGA and 2 x USB), (1) 200mm Backplane I2C cable, (1) 650mm MiniSAS HD Cable AXXCBL650HDHRT, (1) 850mm MiniSAS HD Cable AXXCBL850HDHRS, (1) 400mm Backplane power cable, (1) Air duct, (6) Dual rotor system fans FR1UFAN10PW, (8) DIMM slot blanks, (1) Chassis Stiffener Bar, (1) 1100W power supply module AXX1100PCRPS, (2) CPU heat sinks FXXCA78X108HS, (2) CPU heat sink “No CPU” Label inserts, (2) Standard CPU Carrier, (1) Power supply bay blank insert, (2) Chassis handle (1 set) installed A2UHANDLKIT3, (2) AC Power Cord retention strap assembly", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFT with Dual 10GbE LAN, eight 2.5 inch hot-swap drives, 24 DIMMs, one 1100W redundant-capable power supply, Intel® OCP Module for adding additional features without losing a PCIe add-in slot", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WF0 (No onboard LAN) S2600WF0, (2) Riser card assembly with 1 slot PCIe x16 riser card F1UL16RISER3, (4) 3.5” Hot-swap drive bays with drive carriers and drive blanks: Includes (1) 12 Gb SAS backplane FR1304S3HSBP, (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2, (1) Standard control panel assembly FXXFPANEL2, (1) Front I/O Panel assembly (VGA and 2 x USB), (1) 150mm Backplane I2C cable, (1) 850mm MiniSAS HD Cable AXXCBL850HDHRT, (1) 350mm Backplane power cable, (1) Air duct, (6) Dual rotor system fans FR1UFAN10PW, (8) DIMM slot blanks, (1) Chassis Stiffener Bar, (1) 1100W power supply module AXX1100PCRPS, (2) CPU heat sinks, 39 fin passive, (2) CPU heat sink “No CPU” Label inserts, (2) Standard CPU Carrier, (1) Power supply bay blank insert, (2) Chassis handle (1 set) installed A2UHANDLKIT3, (2) AC Power Cord retention strap assembly", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFT with four 3.5 inch hot-swap drives, 24 DIMMs, one 1100W redundant-capable power supply, Intel® OCP Module for adding additional features without losing a PCIe add-in slot", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R1000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) 1U Standard Heat Sink FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFT (Dual 10GbE LAN) S2600WFT, (2) Riser card assembly with 1 slot PCIe x16 riser card F1UL16RISER3, (4) 3.5” Hot-swap drive bays with drive carriers and drive blanks: Includes (1) 12 Gb SAS backplane FR1304S3HSBP, (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2, (1) Standard control panel assembly FXXFPANEL2, (1) Front I/O Panel assembly (VGA and 2 x USB), (1) 150mm Backplane I2C cable, (1) 850mm MiniSAS HD Cable AXXCBL850HDHRT, (1) 350mm Backplane power cable, (1) Air duct, (6) Dual rotor system fans FR1UFAN10PW, (8) DIMM slot blanks, (1) Chassis Stiffener Bar, (1) 1100W power supply module AXX1100PCRPS, (2) CPU heat sinks FXXCA78X108HS, (2) CPU heat sink “No CPU” Label inserts, (2) Standard CPU Carrier, (1) Power supply bay blank insert, (2) Chassis handle (1 set) installed A2UHANDLKIT3, (2) AC Power Cord retention strap assembly", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WFT with Dual 10GbE LAN, four 3.5 inch hot-swap drives, 24 DIMMs, one 1100W redundant-capable power supply, Intel® OCP Module for adding additional features without losing a PCIe add-in slot", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "1x PCIe Gen3 x16", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2R", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2R w/ Dual 1GbE; (1) standard control panel board (FXXFPANEL); (1) front I/O panel assembly (front 1xVGA and 2x USB); (8) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (1) 12Gb SAS backplane (F1U8X25S3HSBP); (1) 730mm SAS/SATA Multiport data cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (1) 800mm SAS/SATA Multiport data cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (2) processor heatsink (FXXCA84X106HS); (2) risers with 1x16 PCIe* 3.0 FHHL slot on each (F1UL16RISER); (1) 750W AC power supply (FXX750PCRPS); (1) Air duct; (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WT2R supporting eight 2.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Rear Drive Form Factor": "N/A", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "2", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR w/ Dual 10GbE; (1) standard control panel board (FXXFPANEL); (1) front I/O panel assembly (front 1xVGA and 2x USB); (8) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (1) 12Gb SAS backplane (F1U8X25S3HSBP); (1) 730mm SAS/SATA Multiport data cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (1) 800mm SAS/SATA Multiport data cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (2) processor heatsink (FXXCA84X106HS); (2) risers with 1x16 PCIe* 3.0 FHHL slot on each (F1UL16RISER); (1) 750W AC power supply (FXX750PCRPS); (1) Air duct; (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "Integrated 1U system featuring Intel® Server Board S2600WTTR supporting eight 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2R", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2R w/ Dual 1GbE; (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) standard control panel board (FXXFPANEL); (1) SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 3550mm optical drive power cable); (4) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (1) 12Gb SAS backplane (FR1304S3HSBP); (1) 350mm Backplane power cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (1) 800mm SAS/SATA Multiport data cable with straight SFF8643 to right angle SFF8643 connectors (AXXCBL1UHRHD); (2) processor heatsinks (FXXCA84X106HS); (2) risers with 1x16 PCIe* 3.0 FHHL slot on each (F1UL16RISER); (1) 750W AC power supply (FXX750PCRPS); (1) Air duct; (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WT2R supporting four 3.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Rear Drives Supported": "0", + "Rear Drive Form Factor": "N/A", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "2", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR w/ Dual 10GbE; (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) standard control panel board (FXXFPANEL); (1) SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 3550mm optical drive power cable); (4) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (1) 12Gb SAS backplane (FR1304S3HSBP); (1) 350mm Backplane power cable; (1) 800mm SAS/SATA Multiport data cable (AXXCBL1UHRHD); (2) processor heatsinks (FXXCA84X106HS); (2) risers 1x16 PCIe* 3.0 FHHL slot on each (F1UL16RISER); (1) 750W AC power supply (FXX750PCRPS); (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "Integrated 1U system featuring Intel® Server Board S2600WTTR supporting four 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2 in a 1U chassis, (1) standard control panel board FXXFPANEL, (1) I/O panel with front 1x VGA and 2x USB (ODD bay if removed), (8) 2.5 inch hot-swap drive carriers FXX25HSCAR, (1) backplane F1U8X25S3HSBP, (1) AXXCBL730HRHD cable, (1) AXXCBL900HRHD cable, (2) processor heatsink FXXCA84X106HS, (2) risers with 1x16 PCIe* 3.0 FHHL slot on each F1UL16RISER, and (1) 750W AC power supply FXX750PCRPS", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WT2 supporting eight 2.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "935060", + "Ordering Code": "R1208WT2GS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "935060": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 1U chassis, (1) standard control panel board FXXFPANEL, (1) I/O Panel with front 1x VGA and 2x USB (ODD bay if removed), (8) 2.5 inch hot-swap drive carriers FXX25HSCAR, (1) backplane F1U8X25S3HSBP, (1) AXXCBL730HRHD cable, (1) AXXCBL900HRHD cable, (2) processor heatsink FXXCA84X106HS, (2) risers with 1x16 PCIe* 3.0 FHHL slot on each F1UL16RISER, and (1) 750W AC power supply FXX750PCRPS", + "Description": "Integrated 1U system featuring Intel® Server Board S2600WTT supporting eight 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "934968", + "Ordering Code": "R1208WTTGS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "934968": "PCN" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2 in a 1U chassis, (1) front I/O panel with 1x VGA and 2x USB, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (4) 3.5 inch hot-swap drive carriers FXX35HSCAR, (1) backplane FR1304S3HSBP, (1) AXXCBL800HRHD cable, (2) processor heatsinks FXXCA84X106HS, (2) risers with 1x16 PCIe* 3.0 FHHL slot on each F1UL16RISER, and (1) 750W AC power supply FXX750PCRPS", + "Description": "Integrated 1U system featuring an Intel® Server Board S2600WT2 supporting four 3.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "935059", + "Ordering Code": "R1304WT2GS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "935059": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R1000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "1U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "750 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 1U chassis, (1) front I/O panel with1x VGA and 2x USB, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (4) 3.5 inch hot-swap drive carriers FXX35HSCAR, (1) backplane FR1304S3HSBP, (1) AXXCBL800HRHD cable, (2) processor heatsinks FXXCA84X106HS, (2) risers 1x16 PCIe* 3.0 FHHL slot on each F1UL16RISER, and (1) 750W AC power supply FXX750PCRPS", + "Description": "Integrated 1U system featuring Intel® Server Board S2600WTT supporting four 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 750W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "934967", + "Ordering Code": "R1304WTTGS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "934967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System H2000G Family", + "Code Name": "Products formerly Taylor Pass", + "Launch Date": "Q2'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "17.24\" x 28.86\" x 3.42\"", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Socket": "Socket R3", + "Heat Sink": "8 (4x2)", + "Heat Sink Included": "Yes", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "Intel® Server Chassis H2224XXXKR2 with four Hypervisor Nodes. Each Hypervisor Node includes an Intel® Compute Module HNS2600TP24SR, Intel® Xeon® Processor E5-2650 v4 (x2), 16GB DDR 2400 (x8), Intel® SSD DC P3700 2.5” 400GB (x1) and a Remote Management Module 4 Lite 2 (AXXRMM4LITE2).", + "Description": "Cloud Block for OnApp Scale System - Includes four Hypervisor Nodes with Intel Server Board, Chassis, Xeon E5 Processor, Intel Solid State Drives and memory, designed for OnApp and configured to add to a Starter System deployment for additional scaling.", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133 DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of DIMMs": "16", + "Max Memory Size (dependent on memory type)": "1 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "No", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "# of USB Ports": "16", + "Total # of SATA Ports": "24", + "# of Serial Ports": "4", + "Integrated LAN": "4x (2x 1GbE + 2x 10GbE SFP+)", + "# of LAN Ports": "16", + "Max CPU Configuration": "8", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System H2000G Family", + "Code Name": "Products formerly Taylor Pass", + "Launch Date": "Q2'17", + "Status": "Launched", + "Expected Discontinuance": "Q3'20", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "17.24\" x 28.86\" x 3.42\"", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Socket": "Socket R3", + "Heat Sink": "8 (4x2)", + "Heat Sink Included": "Yes", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "Includes a Control Node (position 1) and three Hypervisor Nodes (position 2, 3, 4). Control Node includes Intel® Compute Module HNS2600TP24SR, Intel® Xeon® Processor E5-2630 v4 (x2), 8GB DDR 2400 (x4), Remote Management Module 4 Lite 2 (AXXRMM4LITE2). Each Hypervisor Node includes Intel® Compute Module HNS2600TP24SR, Intel® Xeon® Processor E5-2650 v4 (x2), 16GB DDR 2400 (x8), Intel® SSD DC P3700 2.5” 400GB (x1) and a Remote Management Module 4 Lite 2 (AXXRMM4LITE2). The four nodes are preinstalled in the Intel® Server Chassis H2224XXXKR2.", + "Description": "Cloud Block for OnApp Starter System: Includes a Control Node (x1) and Hypervisor Nodes (x3) with Intel Server Boards, Chassis, Xeon E5 processors, Intel Solid State Drives and memory. Designed for OnApp and configured for initial deployment.", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133 DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of DIMMs": "16", + "Max Memory Size (dependent on memory type)": "1 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "No", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "# of USB Ports": "16", + "Total # of SATA Ports": "24", + "# of Serial Ports": "4", + "Integrated LAN": "4x (2x 1GbE + 2x 10GbE SFP+)", + "# of LAN Ports": "16", + "Max CPU Configuration": "8", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0R", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WF0R (no onboard LAN) (2) PCIe* riser card brackets. (2) 3-slot PCIe* riser cards A2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (8) 2.5” hot-swap drive bays (1) SAS/NVMe combo backplane F2U8X25S3PHS (8) 2.5” hot-swap drive tool less carriers FXX25HSCAR3 (1) Standard control panel assembly FXXFPANEL2 300 mm front panel cable (1) Front I/O panel assembly o 620 mm USB 3.0 cable H76899-xxx o 400 mm video cable H62114-xxx (1) x VGA and 2 x USB) (1) 250 mm backplane I2C cable H91166-xxx (2) 730 mm mini SAS HD cable AXXCBL730HDHD (1) 675 mm backplane power cable H82108-XXX (1) SATA optical drive power (1) SATA optical drive bay mounting kit (1) Standard 2U Air duct See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WF0R, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986050", + "Ordering Code": "R2208WF0ZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986050": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQR", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFQR (Intel® QAT support) (2) PCIe* riser card brackets. (2) 3-slot PCIe* riser cards (1) 2-slot low profile PCIe* riser card (8) 2.5” hot-swap drive bays with drive carriers and blanks. (1) SAS/NVMe combo backplane (8) 2.5” hot-swap drive tool less carriers (1) Standard control panel assembly: *300 mm front panel cable H34381-xxx (1) Front I/O panel assembly: o 620 mm USB 3.0 cable H76899-xxx o 400 mm video cable H62114-xxx (1) 250 mm backplane I2C cable H91166-xxx (1) Standard 2U air duct (1)290 mm Intel QAT cable J61138-xxx (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WFQR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986055", + "Ordering Code": "R2208WFQZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986055": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFTR (dual 10 GbE LAN) (2) PCIe* riser card brackets. (2) 3-slot PCIe* riser cards (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (8) 2.5” hot-swap drive bays with drive carriers and blanks. (1) SAS/NVMe combo (8) 2.5” hot-swap drive tool less carriers (1) Standard control panel assembly (board only) (1) – Front I/O panel assembly (1 x VGA and 2 x USB) (1) Backplane I2C cable (2) Mini SAS HD cable (1) 400/525/675 mm backplane power cable (1) SATA optical drive power cable (1) SATA optical drive bay mounting kit (1) Standard 2U air duct (6) Hot-swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC power supply module (1) Power supply bay blank insert (2) AC Power cord retention strap assembly (2) CPU heat sinks (2) CPU heat sink “NO CPU” Mylar* spacer insert (2) Standard CPU carrier (1) 3x Intel® RAID Maintenance Free Backup unit mounting bracket", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WFTR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 2.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986049", + "Ordering Code": "R2208WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986049": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFT (dual 10 GbE LAN) (2) PCIe* riser card brackets. (2) 3-slot PCIe* riser cards (1) 2-slot low profile PCIe* riser card (24) 2.5” hot-swap drive bays with drive carriers and blanks. (3) SAS/NVMe combo backplane (24) 2.5” hot-swap drive tool less carriers (1) Storage rack handle assembly A2UHANDLKIT o 1 set storage rack handles o 410 mm front panel cable H26893-xx o 640 mm front panel USB 2.0 cable H20005-xxx (1) 250 mm backplane I2C cable H91166-xxx (2) 75 mm backplane to backplane I2C jumper cable H91163-xxx (2) 730 mm mini SAS HD VT-VT cable AXXCBL730HDHD (4) 875 mm mini SAS HD VT-VT cable AXXCBL875HDHD (1) 400/525/675 mm backplane power cable H82108-xxx (1) Standard 2U air duct (6) Hot-swap system fans FR2UFAN60HSW See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WFTR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (24) 2.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986051", + "Ordering Code": "R2224WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986051": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFTR (dual 10 GbE LAN) S2600WFTR (2) PCIe Riser card brackets. Includes: (2) 3-slot PCIe* riser cards A2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (8) 3.5” hot-swap drive bays with drive carriers and blanks. Includes: (1) 12Gb SAS backplane A2U8X35S3HSDK1 (8) 3.5” hot-swap drive tool less carriers FXX35HSCAR2 (1) Standard control panel assembly *300 mm front panel cable H34381-xxx (1) Front I/O panel assembly o 620 mm USB 3.0 cable H76899-xxx o 400 mm video cable H62114-xxx (1) 400 mm Backplane power cable (1) SATA optical drive power cable 300 mm H23901-001 (1) SATA optical drive bay mounting kit (1) Standard 2U air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WFTR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (8) 3.5 inch hot-swap drives, 24 DIMMs, (1)1300W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986052", + "Ordering Code": "R2308WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986052": "PCN" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0R", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply Type": "AC", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WF0R (no onboard LAN) (2) PCIe* riser card brackets. In (2) 3-slot PCIe* riser cards (1) 2-slot low profile PCIe* riser card (12) 3.5” hot-swap drive bays with drive carriers and blanks. (1) SAS/NVMe combo backplane (12) 3.5” hot-swap drive tool less carriers (1) Storage rack handle assembly A2UHANDLKIT o 1 set storage rack handles o Mini front panel (board only) o 410 mm front panel cable H26893-xxx o 640 mm front panel USB 2.0 cable H20005-xxx (1) 175 mm backplane I2C cable H91172-xxx (1) 800 mm mini SAS HD cable AXXCBL800HDHD (1) 875 mm mini SAS HD cable AXXCBL875HDHD (1) 950 mm mini SAS HD cable AXXCBL950HDHD (1) 525/675 mm backplane power cable H82097-xxx (1) Standard 2U air duct (6) Hot-swap system fans See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WF0R, supporting two 2nd Generation Intel® Xeon® Scalable processors, (12) 3.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port)", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986054", + "Ordering Code": "R2312WF0NPR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986054": "PCN" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "165 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFTR", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 2U Chassis with Quick Reference Label affixed to top cover (1) Intel® Server Board S2600WFTR (dual 10 GbE LAN) (2) PCIe* riser card brackets. (2) 3-slot PCIe* riser cards (1) 2-slot low profile PCIe* riser card (12) 3.5” hot-swap drive bays with drive carriers and blanks. (1) SAS/NVMe combo backplane (12) 3.5” hot-swap drive tool less carriers (1) Storage rack handle assembly A2UHANDLKIT o1 set storage rack handles o Mini front panel (board only) (1) 175 mm backplane I2C cable H91172-xxx (1) 800 mm mini SAS HD cable AXXCBL800HDHD (1) 875 mm mini SAS HD cable AXXCBL875HDHD (1) 950 mm mini SAS HD cable AXXCBL950HDHD (1) 525/675 mm backplane power cable H82097-xxx (1) Standard 2U air duct (6) Hot-swap system fans (16) DIMM slot blanks (1) 1300W AC power supply module (1) Power supply bay blank insert See Configuration Guide for complete list", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WFTR, supporting two 2nd Generation Intel® Xeon® Scalable processors, (12) 3.5 inch hot-swap drives, 24 DIMMs, (1)1100W redundant-capable power supply.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "2.5\" SATA (optional)", + "# of Internal Drives Supported": "2", + "Internal Drive Form Factor": "M.2 SSD", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1GbE (mgmt port) + Dual Port RJ45 10GbE", + "# of LAN Ports": "3", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "TPM Version": "2.0", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "MM#": "986053", + "Ordering Code": "R2312WFTZSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "986053": "PCN" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q4'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQ", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFQ (Symmetric QAT) (2) PCIe Riser card brackets includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (8) 2.5” Hot-swap drive bays with drive carriers and drive blanks Includes (1) SAS/NVMe Combo backplane F2U8X25S3PHS (8) 2.5” hot swap drive tool less carriers FXX25HSCAR3 (1) Standard control panel assembly FXXFPANEL2 (1) Front I/O Panel assembly (1 x VGA and 2 x USB) (1) 250mm Backplane I2C Cable (2) 730mm Mini SAS HD Cable AXXCBL730HDHD (1) 400/525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC Power Supply Module (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed A2UHANDLKIT3 (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2208WFQZS is an Integrated 2U system featuring an Intel® Server Board S2600WFQ with Symmetric QAT supporting eight 2.5 inch hot-swap drives, no onboard LAN, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "4", + "# of Serial Ports": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q4'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "150 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQ", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFQ (Symmetric QAT) (2) PCIe Riser card brackets includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER, (3) SAS/NVMe Combo backplane F2U8X25S3PHS (24) 2.5” hot swap drive tool less carriers FXX25HSCAR3 (1) Standard control panel assembly FXXFPANEL2 (1) Front I/O Panel assembly (1 x VGA and 2 x USB) (1) 250mm Backplane I2C Cable (2) 730mm Mini SAS HD Cable AXXCBL730HDHD (1) 400/525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC Power Supply Module (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed A2UHANDLKIT3 (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2224WFQZS is an Integrated 2U system featuring an Intel® Server Board S2600WFQ with Symmetric QAT supporting twenty four 2.5 inch hot-swap drives, no onboard LAN, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "4", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Optical Drive Support": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q4'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "140 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFQ", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFQ (Symmetric QAT) (2) PCIe Riser card brackets includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER, (1) 12x3.5\" hot swap backplane, (1) Standard control panel assembly FXXFPANEL2 (1) Front I/O Panel assembly (1 x VGA and 2 x USB) (1) 250mm Backplane I2C Cable (2) 730mm Mini SAS HD Cable AXXCBL730HDHD (1) 400/525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC Power Supply Module (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed A2UHANDLKIT3 (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2312WFQZS is an Integrated 2U system featuring an Intel® Server Board S2600WFQ with Symmetric QAT supporting twelve 3.5 inch hot-swap drives, no onboard LAN, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "4", + "Max # of UPI Links": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WF0 (No Onboard LAN) (2) PCIe Riser card brackets Includes (2) 3-slot PCIe* riser cards A2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (1) Hot-swap drive bay with drive carriers and drive blanks Includes (1) SAS/NVMe Combo backplane F2U8X25S3PHS (8) 2.5” hot swap drive tool less carriers FXX25HSCAR3 (1) Standard control panel assembly FXXFPANEL2 (1) Front I/O Panel assembly (1 x VGA and 2 x USB) (1) 250mm Backplane I2C Cable (2) 730mm Mini SAS HD Cable AXXCBL730HDHD (1) 675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC Power Supply Module AXX1300TCRPS (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed A2UHANDLKIT3 (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2208WF0ZS is an Integrated 2U system featuring an Intel® Server Board S2600WF0 (No Onboard LAN) supporting eight 2.5 inch hot-swap drives, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFT (Dual 10GbE LAN) (2) PCIe Riser card brackets includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (1) 2-slot low profile PCIe* riser card A2UX8X4RISER (8) 2.5” Hot-swap drive bays with drive carriers and drive blanks Includes (1) SAS/NVMe Combo backplane F2U8X25S3PHS (8) 2.5” hot swap drive tool less carriers FXX25HSCAR3 (1) Standard control panel assembly FXXFPANEL2 (1) Front I/O Panel assembly (1 x VGA and 2 x USB) (1) 250mm Backplane I2C Cable (2) 730mm Mini SAS HD Cable AXXCBL730HDHD (1) 400/525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (8) DIMM slot blanks (1) 1300W AC Power Supply Module (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed A2UHANDLKIT3 (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2208WFTZS is an Integrated 2U system featuring an Intel® Server Board S2600WFT supporting eight 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "150 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFT (10GbE LAN) (2) PCIe Riser card brackets Includes (2) 3-slot PCIe* riser card A2UL8RISER2 (3) Hot-swap drive bays with drive carriers and drive blanks Includes (3) SAS/NVMe Combo backplane F2U8X25S3PHS (24) 2.5” hot swap drive tool less carriers FXX25HSCAR3 (1) Storage Rack Handle Assembly A2UHANDLKIT (1) 250mm Backplane I2C cable (2) 75mm Backplane to Backplane I2C Jumper cable (2) 730mm Mini SAS HD VT-VT cable AXXCBL730HDHD (4) 875mm Mini SAS HD VT-VT cable AXXCBL875HDHD (1) 400/525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (16) DIMM slot blanks (1) 1300W AC Power Supply Module (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label inserts (2) Standard CPU Carrier (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2224WFTZS is an Integrated 2U system featuring an Intel® Server Board S2600WFT supporting 24 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1300W redundant-capable power supply.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1)Intel® Server Board S2600WFT (Dual 10GbE LAN) (2)PCIe Riser card brackets Includes (2)3-slot PCIe* riser cards A2UL8RISER2 (1)2-slot low profile PCIe* riser card A2UX8X4RISER (1)3.5” Hot-swap drive bays with drive carriers and drive blanks Includes (1)12Gb SAS backplane A2U8X35S3HSDK1 (8)3.5” hot swap drive tool less carriers FXX35HSCAR2 (1)Standard control panel assembly FXXFPANEL2 (1)Front I/O Panel assembly (1 x VGA and 2 x USB) (1)175mm Backplane I2C Cable (1)730mm Mini SAS HD Cable AXXCBL730HDHD (1)875mm Mini SAS HD Cable AXXCBL875HDHD (1)400mm Backplane power cable (1)Standard 2U Air duct (6)Hot swap system fans FR2UFAN60HSW (8)DIMM slot blanks (1)1300W AC Power Supply Module AXX1300TCRPS (1)Power supply bay blank insert (2)AC Power Cord retention strap assembly (2)CPU heat sinks FXXCA78X108HS (2)CPU heat sink “NO CPU” label insert (2)Standard CPU Carrier (2)Chassis handle (1 set) A2UHANDLKIT3 (1)3x RMFBU Mounting Bracket (1)250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2308WFTZS is an Integrated 2U system featuring an Intel® Server Board S2600WFT supporting eight 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1300W redundant-capable power.", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "140 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WF0", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply Type": "AC", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WF0 (No Onboard LAN) (2) PCIe Riser card brackets Includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (1) Hot-swap drive bays with drive carriers and drive blanks Includes (1) SAS/NVMe Combo backplane F2U8X25S3PHS (12) 3.5” hot swap drive tool less carriers FXX35HSCAR2 (1) Storage Rack Handle Assembly A2UHANDLKIT (1) 175mm Backplane I2C Cable (1) 800mm Mini SAS HD Cable AXXCBL800HDHD (1) 875mm Mini SAS HD Cable AXXCBL875HDHD (1) 950mm Mini SAS HD Cable AXXCBL950HDHD (1) 525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (16) DIMM slot blanks (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2312WF0NP is an Integrated 2U system featuring an Intel® Server Board S2600WFO supporting 12 3.5 inch hot-swap drives front mount drives (support for up to 2 NVMe drives), power supply sold separately", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "1G (mgmt) only", + "# of LAN Ports": "1", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WFR Family", + "Code Name": "Products formerly Wolf Pass", + "Launch Date": "Q3'17", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "140 W", + "Heat Sink": "(2) FXXCA78X108HS", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WFT", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Full-featured", + "Rack-Friendly Board": "Yes", + "Power Supply": "1300 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WFT (Dual 10GbE LAN) (2) PCIe Riser card brackets; Includes (2) 3-slot PCIe* riser cards 2UL8RISER2 (12) 3.5” Hot-swap drive bays with drive carriers and drive blanks; Includes (1) SAS/NVMe Combo backplane F2U8X25S3PHS; Includes (12) 3.5” hot swap drive tool less carriers FXX35HSCAR2 (1) Storage Rack Handle Assembly A2UHANDLKIT (1) 175mm Backplane I2C Cable (1) 800mm Mini SAS HD Cable AXXCBL800HDHD (1) 875mm Mini SAS HD Cable AXXCBL875HDHD (1) 950mm Mini SAS HD Cable AXXCBL950HDHD (1) 525/675mm Backplane power cable (1) Standard 2U Air duct (6) Hot swap system fans FR2UFAN60HSW (16) DIMM slot blanks (1) 1300W AC Power Supply Module AXX1300TCRPS (1) Power supply bay blank insert (2) AC Power Cord retention strap assembly (2) CPU heat sinks FXXCA78X108HS (2) CPU heat sink “NO CPU” label insert (2) Standard CPU Carrier (2) Chassis handle (1 set) installed (1) 3x RMFBU Mounting Bracket (1) 250mm Fixed Mount SSD Power Cable", + "Description": "Intel® Server System R2312WFTZS is an Integrated 2U system featuring an Intel® Server Board S2600WFT supporting 12 3.5 inch hot-swap drives front mount drives (support for up to 2 NVMe drives) dual 10-GbE LAN, 24 DIMMs", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of DIMMs": "24", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 3: Total # of Lanes": "12", + "Riser Slot 3: Included Slot Configuration(s)": "1x PCIe Gen3 x8 + 1x PCIe Gen2 x4", + "# of USB Ports": "5", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0 (optional module)", + "Includes Statement of Conformance and Platform Certificate": "Yes" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2R", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2R w/ Dual 1GbE; (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) airduct; (1) standard control panel board (FXXFPANEL); (1) ODD bay for SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 300mm optical drive / internal mount SSD power cable); (8) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (1) 12Gb SAS backplane (FXX8X25S3HSBP); (2) 730mm SAS/SATA Multiport data cable with straight SFF8643 to straight SFF8643 connectors (AXXCBL730HDHD); (2) processor heatsinks (FXXCA84X106HS); (6) redundant and hot-swap cooling fans (FR2UFAN60HSW); (2) risers with 3x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) (A2UL8RISER2); (1) riser with 1x8 PCIe* 3.0 slot and 1x4 PCIe* 2.0 slot (A2UX8X4RISER); (1) battery backup unit bracket with three mounting locations over the airduct; (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WT2R supporting eight 2.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, and one 1100W redundant-capable power supply; DC power supply option available and sold separately.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2, 2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR w/ Dual 10GbE; (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) airduct for passive Intel® Xeon Phi™ Coprocessor cards (AWTCOPRODUCT); (2) 12V-Auxiliary Power Cables; (1) standard control panel board (FXXFPANEL); (1) SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 300mm optical drive / internal mount SSD power cable); (8) 2.5 inch hot-swap drive carriers (FXX8X25S3HSBP); (1) 12Gb SAS backplane (FXX8X25S3HSBP); (1) Backplane power cable; (1) Backplane 250mm I2C cable; (2) Multiport 730mm SAS/SATA data cables; (2) processor heatsinks (FXXCA84X106HS); (6) redundant and hot-swap cooling fans (FR2UFAN60HSW); (2) risers with 1x16 and 1x8 PCIe* 3.0 slots each (A2UL16RISER2); (1) riser with 1x8 PCIe* 3.0 and 1x4 PCIe* 2.0 slot (A2UX8X4RISER); (2) power cables (A2UL16RISER2); (1) battery backup unit bracket with three mounting locations over the airduct; (2) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system, optimized for Intel® Visual Compute Accelerator and Intel® Xeon Phi™ coprocessor, with Intel® Server Board S2600WTTR, (8) 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, (2) 1100W redundant power", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR w/ Dual 10GbE; (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) airduct; (1) standard control panel board (FXXFPANEL); (1) ODD bay for SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 300mm optical drive / internal mount SSD power cable); (8) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (1) 12Gb SAS backplane (FXX8X25S3HSBP); (2) 730mm SAS/SATA Multiport data cable with straight SFF8643 to straight SFF8643 connectors (AXXCBL730HDHD); (2) processor heatsinks (FXXCA84X106HS); (6) redundant and hot-swap cooling fans (FR2UFAN60HSW); (2) risers with 3 x8 PCIe* 3.0 slots (2x FHFL 1x FHHL) (A2UL8RISER2); (1) riser with 1 x8 PCIe* 3.0 slot and 1 x4 PCIe* 2.0 slot (A2UX8X4RISER); (1) battery backup unit bracket with three mounting locations over the airduct; (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTTR supporting eight 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT w/ Dual 10GbE; (1) airduct; (1) control panel on rack handle (Includes: Integrated control panel & USB Port) (A2UHANDLKIT); (24) 2.5 inch hot-swap drive carrier (FXX25HSCAR); (3) 12Gb SAS backplanes (FXX8X25S3HSBP); (1) Backplane 250mm I2C cable; (1) backplane power cable; (2) 730mm Cables with straight SFF8643 to straight SFF8643 connectors (AXXCBL730HDHD); (4) 875mm cable for straight SFF8643 to SFF8643 connectors (AXXCBL875HDHD); (2) processor heatsinks (FXXCA84X106HS); (2) risers with 3 x8 PCI* 3.0 slots on each (2x FHFL 1x FHHL) (A2UL8RISER2); (1) rear-accessible dual 2.5 inch hot-swap drive cage (Includes: drive carriers, drive blanks, SATA data/SGPIO cable harness, and I2C cable) (A2UREARHSDK); (1) Rear Backplane power cable; (1) battery backup unit bracket with three mounting locations over the airduct; (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTTR supporting 24 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "6", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "No", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR; (1) front 1x VGA and 2x USB on a dedicated tray; (1) airduct; (1) standard control panel board (FXXFPANEL); (1) ODD bay for CD/DVD drive support; (8) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (1) backplane (F2U8X35S3HSBP); (1) cable (AXXCBL800HDHD); (1) cable (AXXCBL950HDHD); (2) processor heatsinks (FXXCA84X106HS); (6) redundant and hot-swap cooling fans; (2) risers with 3 x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) (A2UL8RISER2); (1) riser with 1 x8 PCIe* 3.0 slot and 1 x4 PCIe* 2.0 slot (A2UX8X4RISER); (1) battery backup unit bracket with three mounting locations over the airduct; (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTTR supporting eight 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTTR; (1) airduct; (1) control panel on rack handle (A2UHANDLKIT); (12) 3.5 inch hot-swap drive carrier (FXX35HSCAR); (1) backplane (F2U12X35S3HSBP); (1) cable (AXXCBL800HDHD); (1) cable (AXXCBL875HDHD); (1) cable (AXXCBL950HDHD); (2) processor heatsinks (FXXCA84X106HS); (6) redundant and hot-swap cooling fans; (2) risers with 3 x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) (A2UL8RISER2); (1) rear-accessible dual 2.5 inch hot-swap drive cage (A2UREARHSDK); (1) battery backup unit bracket with three mounting locations over the airduct; (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTTR supporting 12 3.5 inch hot-swap drives dual 10-GbE LAN 24 DIMMs one 1100W redundant-capable power supply enterprise class I/O with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Integrated Graphics ‡": "Yes", + "PCIe x8 Gen 3": "6", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2/2.0" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WT2", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WT2 in a 2U chassis, (1) front 1x VGA and 2x USB on a dedicated tray, (1) airduct, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (8) 2.5 inch hot-swap drive carriers FXX25HSCAR, (1) backplane FXX8X25S3HSBP, (2) AXXCBL730HRHD cables, (2) processor heatsinks FXXCA84X106HS, (6) redundant and hot-swap cooling fans, (2) risers with 3x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) A2UL8RISER2, (1) riser with 1x8 PCIe* 3.0 slot and 1x4 PCIe* 2.0 slot A2UX8X4RISER, (1) battery backup unit bracket with three mounting locations over the airduct, and (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WT2 supporting eight 2.5 inch hot-swap drives, dual 1-GbE LAN, 24 DIMMs, and one 1100W redundant-capable power supply; DC power supply option available and sold separately.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 1-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936032", + "Ordering Code": "R2208WT2YS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 2U chassis, (1) front 1x VGA and 2x USB on a dedicated tray, (1) airduct for passive Intel® Xeon Phi™ Coprocessor cards AWTCOPRODUCT, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (8) 2.5 inch hot-swap drive carriers FXX8X25S3HSBP, (1) backplane FXX8X25S3HSBP, (2) AXXCBL730HRHD cables, (2) processor heatsinks FXXCA84X106HS, (6) redundant and hot-swap cooling fans, (2) risers with 1x16 and 1x8 PCIe* 3.0 slots each A2UL18RISER2, (1) riser with 1x8 PCIe* 3.0 and 1x4 PCIe* 2.0 slot A2UX8X4RISER, (2) power cables A2UL16RISER2, (1) Intel® Xeon Phi™ Coprocessor mounting/shipping bracket, , (1) battery backup unit bracket with three mounting locations over the airduct, and (2) 1100W AC power supply AXX1100PCRPS", + "Description": "Integrated 2U system, optimized for Intel® Visual Compute Accelerator and Intel® Xeon Phi™ coprocessor, with Intel® Server Board S2600WTT, (8) 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, (2) 1100W redundant power", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "2", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936033", + "Ordering Code": "R2208WTTYC1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 2U chassis, (1) front 1x VGA and 2x USB on a dedicated tray, (1) airduct, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (8) 2.5 inch hot-swap drive carriers FXX25HSCAR, (1) backplane FXX8X25S3HSBP, (2) AXXCBL730HRHD cables, (2) processor heatsinks FXXCA84X106HS, (6) redundant and hot-swap cooling fans, (2) risers with 3 x8 PCIe* 3.0 slots (2x FHFL 1x FHHL) A2UL8RISER2, (1) riser with 1 x8 PCIe* 3.0 slot and 1 x4 PCIe* 2.0 slot A2UX8X4RISER, (1) battery backup unit bracket with three mounting locations over the airduct, and (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTT supporting eight 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936023", + "Ordering Code": "R2208WTTYS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936023": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 2U chassis (1) airduct (1) control panel on rack handle A2UHANDLKIT (24) 2.5 inch hot-swap drive carrier FXX25HSCAR (3) backplanes FXX8X25S3HSBP (2) AXXCBL730HDHD cables (4) AXXCBL875HDHD cables (2) processor heatsinks FXXCA84X106HS (6) redundant and hot-swap cooling fans (2) risers with 3 x8 PCI* 3.0 slots on each (2x FHFL 1x FHHL) A2UL8RISER2 (1) rear-accessible dual 2.5 inch hot-swap drive cage A2UREARHSDK (1) battery backup unit bracket with three mounting locations over the airduct and (1) 1100W AC power supply AXX1100PCRPS", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTT supporting 24 2.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "2", + "Rear Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "6", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "No", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936037", + "Ordering Code": "R2224WTTYS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S2600WTT", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 2U chassis, (1) front 1x VGA and 2x USB on a dedicated tray, (1) airduct, (1) standard control panel board FXXFPANEL, (1) ODD bay for CD/DVD drive support, (8) 3.5 inch hot-swap drive carriers FXX35HSCAR, (1) backplane F2U8X35S3HSBP, (1) AXXCBL800HDHD cable, (1) AXXCBL950HDHD cable, (2) processor heatsinks FXXCA84X106HS, (6) redundant and hot-swap cooling fans, (2) risers with 3 x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) A2UL8RISER2, (1) riser with 1 x8 PCIe* 3.0 slot and 1 x4 PCIe* 2.0 slot A2UX8X4RISER, (1) battery backup unit bracket with three mounting locations over the airduct, and (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTT supporting eight 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "7", + "PCIe x4 Gen 2.x": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936035", + "Ordering Code": "R2308WTTYS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2000WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'16", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor System Extended Warranty", + "Chassis Form Factor": "2U Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Rack Rails Included": "No", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Socket": "Socket R3", + "TDP": "145 W", + "Heat Sink": "2", + "Heat Sink Included": "Yes", + "Target Market": "Cloud/Datacenter", + "Rack-Friendly Board": "Yes", + "Power Supply": "1100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Board S2600WTT in a 2U chassis, (1) airduct, (1) control panel on rack handle A2UHANDLKIT, (12) 3.5 inch hot-swap drive carrier FXX35HSCAR, (1) backplane F2U12X35S3HSBP, (1) AXXCBL800HDHD cable, (1) AXXCBL875HDHD cable, (1) AXXCBL950HDHD cable, (2) processor heatsinks FXXCA84X106HS, (6) redundant and hot-swap cooling fans, (2) risers with 3 x8 PCIe* 3.0 slots on each (2x FHFL 1x FHHL) A2UL8RISER2, (1) rear-accessible dual 2.5 inch hot-swap drive cage A2UREARHSDK, (1) battery backup unit bracket with three mounting locations over the airduct, and (1) 1100W AC power supply (AXX1100PCRPS)", + "Description": "Integrated 2U system featuring an Intel® Server Board S2600WTT supporting 12 3.5 inch hot-swap drives, dual 10-GbE LAN, 24 DIMMs, one 1100W redundant-capable power supply, enterprise class I/O, with built in discrete management network interface.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x24 Riser Super slot": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "Riser Slot 2: Included Slot Configuration(s)": "3x PCIe Gen3 x8", + "# of USB Ports": "5", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "Integrated LAN": "2x 10-GbE", + "# of LAN Ports": "2", + "Optical Drive Support": "Yes", + "Firewire": "No", + "Integrated SAS Ports": "0", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Remote Management Module Support": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "936036", + "Ordering Code": "R2312WTTYS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "936036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480GB )", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (960GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960GB )", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (1.9TB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (1.9TB )", + "Max Storage Capacity": "7.6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480GB )", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (960GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960GB )", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "200 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Gold 6154 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (1.9TB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Gold 6154 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (1.9TB )", + "Max Storage Capacity": "7.6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8168 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8168 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480 GB )", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8168 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (960MB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8168 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960 GB)", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + {}, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8168 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8168 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480GB )", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8168 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (960GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8168 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960GB )", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8168 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (1.9TB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8168 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (1.9TB )", + "Max Storage Capacity": "7.6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480MB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480 GB)", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (960GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960 GB)", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0", + "MM#": "963532", + "Ordering Code": "LSP2D2ZS580201", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "963532": "PCN" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 32GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (1.9TB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X32GB DDR4 2666MHz", + "Memory Types": "RDIMM 32GB - DDR4 (2R x 4, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (1.9TB )", + "Max Storage Capacity": "7.6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (480GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (480 GB)", + "Max Storage Capacity": "1.9 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (980GB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (960 GB)", + "Max Storage Capacity": "3.84 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System R2600SR Family", + "Code Name": "Products formerly Shrine Pass", + "Launch Date": "Q1'18", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Friday, June 7, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "19.3\" x 35.1\" x 3.5\"", + "Rack Rails Included": "Yes", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Socket": "Socket P", + "TDP": "205 W", + "Heat Sink": "8", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server System R2600SR Family", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Power Supply": "2000 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U Chassis (1) Rack Mount Rail Kit (1) System Management Module (SMM) (2) 2000WAC Platinum Power Supply Unit (PSU) (2) Power cords (1.5m, 10A/100-250V, (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16 (1) 10GB 8-port Ethernet I/O Module (EIOM) Base-T RJ45 (2) 80mm x 80mm x 80mm cooling fans (3) 60mm x 60mm x 56mm cooling fans (1) KVM System Console Breakout Cable (4) Compute Node (includes the following) •(8) Intel® Xeon® Platinum 8180 Processor •(4) 105mm CPU1 Heatsink (1 per compute node) •(4) 85mm CPU 2 Heatsink ) •(8) 4R Heatsink Clips •(48) 16GB DDR4 2667 RDIMMs •(4) Intel® SSD DC S4600 Series (1.9TB, 2.5in SATA 6Gb/s) •(16) Drive Blanks •(4) VGA/USB KVM •(4) Node Control Panel", + "Description": "2U 4N Intel® Server System R2600SR to support Intel® Xeon® Platinum 8180 processors.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "48X16GB DDR4 2666MHz", + "Memory Types": "RDIMM 16GB - DDR4 (2R x 8, 1.2V) 2666MHz", + "Max # of DIMMs": "48", + "Max Memory Size (dependent on memory type)": "768 GB", + "DIMM Type": "UDIMM, RDIMM, LRDIMM", + "Included Storage": "(4) Intel® SSD DC S4600 (1.9TB )", + "Max Storage Capacity": "7.6 TB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Integrated Graphics ‡": "Yes", + "PCIe x16 Gen 3": "4", + "# of USB Ports": "4", + "USB Configuration": "2.0, 3.0 & 3.1", + "Total # of SATA Ports": "4", + "# of Serial Ports": "4", + "Max CPU Configuration": "8", + "Integrated BMC with IPMI": "YES", + "TPM Version": "TPM 2.0" + }, + { + "Product Collection": "Intel® Server System P4000SP Family", + "Code Name": "Products formerly Silver Pass", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Thursday, April 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Board Form Factor": "uATX", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Heat Sink Included": "Yes", + "System Board": "Intel® Server Board S1200SPL", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small Business/1st Server", + "Power Supply": "365 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Included Items": "This product has transitioned to LSVRP4304ES6XXR.PLEASE NOTE: LSVRP4304ES6XXR does not include a hard drive and contains some additional configuration changes.Configured system includes:Intel® Server Chassis P4304XXSFCN with(1) 365W Fixed Power Supply(1) Intel® Server Board S1200SPL(1) Intel® Xeon® Processor E3-1230 v5 (8M Cache, 3.40 GHz)(1) Intel® Remote Management Module AXXRMM4LITE2(1) 16GB, 2133MHZ, DDR4, UDIMM memory module(1) Intel® SSD DC S3510 Series (120GB, 2.5in SATA 6Gb/s, 16nm, MLC)", + "Description": "SMB Server Blocks feature the Intel Xeon processor E3 family that delivers high memory, I/O and storage capacity, fast application loading and performance, and the capacity to support multiple users.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 3.5\" HDD or 2.5\" SSD", + "Integrated Graphics ‡": "Yes", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "9", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RST (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "Integrated LAN": "2x 1GbE", + "# of LAN Ports": "2", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "MM#": "951054", + "Ordering Code": "LSVRP4304ES6XX1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "951054": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5115", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "43 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM4C", + "Spec Code": "SRL41", + "Ordering Code": "NN8071904626411", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM4C": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5125", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "50 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM4A", + "Spec Code": "SRL40", + "Ordering Code": "NN8071904626418", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM4A": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5310", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "32 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x2/x4/x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "12", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM49", + "Spec Code": "SRL3Z", + "Ordering Code": "NN8071904626417", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM49": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5315", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "38 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "12", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM46", + "Spec Code": "SRL3Y", + "Ordering Code": "NN8071904626414", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM46": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5320", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "41 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM45", + "Spec Code": "SRL3X", + "Ordering Code": "NN8071904626416", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM45": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Parker Ridge", + "Vertical Segment": "Server", + "Processor Number": "C5325", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "41 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM44", + "Spec Code": "SRL3W", + "Ordering Code": "NN8071904626413", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G185365", + "US HTS": "8542310001", + "99AM44": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3338R", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "10.5 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-1866", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "10", + "Integrated LAN": "4x2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "10", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "88°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TV9", + "Spec Code": "SRH4E", + "Ordering Code": "HW8076504489901", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "999TV9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3436L", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "10.75 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-1866", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "8", + "USB Revision": "3", + "Integrated LAN": "4 x 2.5 GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "86°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1WD", + "Spec Code": "SRJQN", + "Ordering Code": "HW8076504511101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "99A1WD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3558R", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "8", + "USB Revision": "3", + "Integrated LAN": "2 x 10 GbE, 2 x 2.5 GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "82°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TVC", + "Spec Code": "SRH4G", + "Ordering Code": "HW8076504490101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "999TVC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3758R", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "26 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "8", + "USB Revision": "3", + "Integrated LAN": "4 x 10 GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "82°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TVA", + "Spec Code": "SRH4F", + "Ordering Code": "HW8076504490001", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "999TVA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3336", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "11 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4: 1866", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "X2, X4, X8", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "10", + "Integrated LAN": "2x2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "10", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "89°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979019", + "Spec Code": "SRCZL", + "Ordering Code": "HW8076504087602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "979019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3308", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "9.5 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4: 1866", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "89°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955165", + "Spec Code": "SR38D", + "Ordering Code": "HW8076502639802", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955165": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3508", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "1.60 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "11.5 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 1866", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "8", + "Integrated LAN": "4x2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "8", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "90°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958405", + "Spec Code": "SR3JX", + "Ordering Code": "HW8076503693501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "958405": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3538", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "12", + "Integrated LAN": "2x10/2.5/1GbE + 2x2.5/1GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "87°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959047", + "Spec Code": "SR3L7", + "Ordering Code": "HW8076502444301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L2", + "US HTS": "8542310001", + "959047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3558", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "16 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "12", + "Integrated LAN": "2x10/2.5/1GbE + 2x2.5/1GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "83°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955160", + "Spec Code": "SR388", + "Ordering Code": "HW8076502639302", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3708", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "1.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "85°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955167", + "Spec Code": "SR38F", + "Ordering Code": "HW8076502640002", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955167": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3750", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "21 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "12", + "Integrated LAN": "2x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "84°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955157", + "Spec Code": "SR385", + "Ordering Code": "HW8076502639002", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G156757", + "US HTS": "8542310001", + "955157": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3758", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "2.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "82°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955161", + "Spec Code": "SR389", + "Ordering Code": "HW8076502639402", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3808", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "12", + "Total Threads": "12", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "86°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955164", + "Spec Code": "SR38C", + "Ordering Code": "HW8076502639702", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955164": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3830", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "12", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "21.5 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "12", + "Integrated LAN": "2x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "12", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "85°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955158", + "Spec Code": "SR386", + "Ordering Code": "HW8076502639101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G156757", + "US HTS": "8542310001", + "955158": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3850", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "12", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "2x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "78°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955159", + "Spec Code": "SR387", + "Ordering Code": "HW8076502639201", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G156757", + "US HTS": "8542310001", + "955159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3858", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "12", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "83°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955162", + "Spec Code": "SR38A", + "Ordering Code": "HW8076502639501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3950", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "16", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "24 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "2x10/2.5/1 GbE + 2x1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "78°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955147", + "Spec Code": "SR383", + "Ordering Code": "HW8076502638901", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G156757", + "US HTS": "8542310001", + "955147": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3955", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "32 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "78°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956392", + "Spec Code": "SR3F3", + "Ordering Code": "HW8076503528301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G156757", + "US HTS": "8542310001", + "956392": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3958", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "16", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "31 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4: 2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "16", + "Integrated LAN": "4x10/2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "16", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "83°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955144", + "Spec Code": "SR381", + "Ordering Code": "HW8076502444202", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L1", + "US HTS": "8542310001", + "955144": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2316", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1 MB", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR 1333", + "Max # of Memory Channels": "1", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "2x1 or 2x2.5 GbE", + "UART": "2 interfaces", + "Sockets Supported": "FCBGA1283", + "TJUNCTION": "100C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958319", + "Spec Code": "SR3JU", + "Ordering Code": "FH8065503680000", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "958319": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2516", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "2x1 or 2x2.5 GbE", + "UART": "2 interfaces", + "Sockets Supported": "FCBGA1283", + "TJUNCTION": "100C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958320", + "Spec Code": "SR3JV", + "Ordering Code": "FH8065503680100", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "958320": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Denverton", + "Vertical Segment": "Server", + "Processor Number": "C3338", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "8.5 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4: 1866", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "x2,x4,x8", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "8", + "USB Revision": "3", + "Total # of SATA Ports": "10", + "Integrated LAN": "4x2.5/1 GbE", + "Max # of SATA 6.0 Gb/s Ports": "10", + "Sockets Supported": "FCBGA1310", + "Max CPU Configuration": "1", + "TCASE": "89°C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955163", + "Spec Code": "SR38B", + "Ordering Code": "HW8076502639602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G186216L2", + "US HTS": "8542310001", + "955163": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2308", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.25 GHz", + "Cache": "1 MB", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR 1333", + "Max # of Memory Channels": "1", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "1", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Sockets Supported": "FCBGA1283", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933655", + "Spec Code": "SR1UN", + "Ordering Code": "FH8065501516754", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "957496": "PCN\n |\n MDDS", + "933655": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2508", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.25 GHz", + "Cache": "2 MB", + "TDP": "9.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Sockets Supported": "FCBGA1283", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "34 mm x 28 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934745", + "Spec Code": "SR1VV", + "Ordering Code": "FH8065501516768", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "934745": "PCN\n |\n MDDS", + "957497": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2338", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "1 MB", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "1", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932465", + "Spec Code": "SR1S8", + "Ordering Code": "FH8065501516761", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G143816-5", + "US HTS": "8542310001", + "932465": "PCN\n |\n MDDS", + "957495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Avoton", + "Vertical Segment": "Server", + "Processor Number": "C2350", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "1 MB", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.7 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "TCASE": "98°C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930447", + "Spec Code": "SR1CV", + "Ordering Code": "FH8065401488914", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G144430", + "US HTS": "8542310001", + "930447": "PCN\n |\n MDDS", + "957487": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2358", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "1 MB", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "1", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "4", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930457", + "Spec Code": "SR1D2", + "Ordering Code": "FH8065501516711", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "930457": "PCN\n |\n MDDS", + "957494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2518", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "TDP": "13 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930456", + "Spec Code": "SR1D1", + "Ordering Code": "FH8065501516710", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "930456": "PCN\n |\n MDDS", + "957493": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Avoton", + "Vertical Segment": "Server", + "Processor Number": "C2530", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "TDP": "9 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "2x1 or 2x2.5 GbE", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "TCASE": "97°C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930446", + "Spec Code": "SR1CU", + "Ordering Code": "FH8065401488915", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G144430", + "US HTS": "8542310001", + "930446": "PCN\n |\n MDDS", + "957486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2538", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932466", + "Spec Code": "SR1S9", + "Ordering Code": "FH8065501516762", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G143816-5", + "US HTS": "8542310001", + "957492": "PCN\n |\n MDDS", + "932466": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Avoton", + "Vertical Segment": "Server", + "Processor Number": "C2550", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "TDP": "14 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "TCASE": "96°C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930445", + "Spec Code": "SR1CT", + "Ordering Code": "FH8065401488912", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G144430", + "US HTS": "8542310001", + "930445": "PCN\n |\n MDDS", + "957485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2558", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930454", + "Spec Code": "SR1CZ", + "Ordering Code": "FH8065501516709", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "957490": "PCN\n |\n MDDS", + "930454": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2718", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930453", + "Spec Code": "SR1CY", + "Ordering Code": "FH8065501516708", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "957491": "PCN\n |\n MDDS", + "930453": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Avoton", + "Vertical Segment": "Server", + "Processor Number": "C2730", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB", + "TDP": "12 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "2", + "Integrated LAN": "2x1 or 2x2.5 GbE", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "TCASE": "97°C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930443", + "Spec Code": "SR1CR", + "Ordering Code": "FH8065401488919", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G144430", + "US HTS": "8542310001", + "930443": "PCN\n |\n MDDS", + "957483": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2738", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "TDP": "20 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1, x2, x4, x8, x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932467", + "Spec Code": "SR1SA", + "Ordering Code": "FH8065501516763", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G143816-5", + "US HTS": "8542310001", + "957489": "PCN\n |\n MDDS", + "932467": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Avoton", + "Vertical Segment": "Server", + "Processor Number": "C2750", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "TDP": "20 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1,x2,x4,x8,x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "TCASE": "97°C", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930444", + "Spec Code": "SR1CS", + "Ordering Code": "FH8065401488906", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G144430", + "US HTS": "8542310001", + "930444": "PCN\n |\n MDDS", + "957484": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor C Series", + "Code Name": "Products formerly Rangeley", + "Vertical Segment": "Embedded", + "Processor Number": "C2758", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "TDP": "20 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3/DDR3L 1600", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "x1, x2, x4, x8, x16", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x1 or 4x2.5 GbE", + "UART": "2 Interfaces", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1283", + "Package Size": "34 mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930451", + "Spec Code": "SR1CW", + "Ordering Code": "FH8065501516702", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002R", + "CCATS": "G143816", + "US HTS": "8542310001", + "930451": "PCN\n |\n MDDS", + "957488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor D Series", + "Code Name": "Products formerly Cedarview", + "Vertical Segment": "Desktop", + "Processor Number": "D2550", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "640 MHz", + "# of Displays Supported ‡": "2", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100 C", + "Package Size": "22mm X 22 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922869", + "Spec Code": "SR0VY", + "Ordering Code": "DF8064101211300", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922869": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor D Series", + "Code Name": "Products formerly Cedarview", + "Vertical Segment": "Desktop", + "Processor Number": "D2500", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "# of Displays Supported ‡": "2", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "8", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100 C", + "Package Size": "22mm X 22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® ME Firmware Version": "No", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922893", + "Spec Code": "SR0W0", + "Ordering Code": "DF8064101055400", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922893": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor D Series", + "Code Name": "Products formerly Cedarview", + "Vertical Segment": "Desktop", + "Processor Number": "D2700", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "640 MHz", + "# of Displays Supported ‡": "2", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "8", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100 C", + "Package Size": "22mm X 22 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® ME Firmware Version": "No", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "915981", + "Spec Code": "SR0D9", + "Ordering Code": "DF8064101055647", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3805", + "Status": "Launched", + "Launch Date": "Q4'14", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937194", + "Spec Code": "SR20Y", + "Ordering Code": "FH8065301989700", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "962772": "PCN\n |\n MDDS", + "937194": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3815", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Cache": "512 KB L2 Cache", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "400 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935360", + "Spec Code": "SR1XA", + "Ordering Code": "FH8065301567414", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932048": "PCN\n |\n MDDS", + "935360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3825", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "533 MHz", + "Graphics Burst Frequency": "533 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935359", + "Spec Code": "SR1X9", + "Ordering Code": "FH8065301567313", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "935359": "PCN\n |\n MDDS", + "932049": "PCN\n |\n MDDS", + "962768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3826", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.46 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "533 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935356", + "Spec Code": "SR1X8", + "Ordering Code": "FH8065301542215", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "962766": "PCN\n |\n MDDS", + "932050": "PCN\n |\n MDDS", + "935356": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3827", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.75 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "8 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "542 MHz", + "Graphics Burst Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935346", + "Spec Code": "SR1X7", + "Ordering Code": "FH8065301487918", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "962764": "PCN\n |\n MDDS", + "932051": "PCN\n |\n MDDS", + "935346": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3845", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.91 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "542 MHz", + "Graphics Burst Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932052", + "Spec Code": "SR1RE", + "Ordering Code": "FH8065301487715", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932052": "PCN\n |\n MDDS", + "962762": "PCN\n |\n MDDS", + "935332": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor N Series", + "Code Name": "Products formerly Cedarview", + "Vertical Segment": "Mobile", + "Processor Number": "N2600", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "3.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.44 GB", + "Memory Types": "DDR3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "400 MHz", + "Sockets Supported": "FCBGA559", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922909", + "Spec Code": "SR0W2", + "Ordering Code": "DF8064101050706", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915984": "PCN\n |\n MDDS", + "922909": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor N Series", + "Code Name": "Products formerly Cedarview", + "Vertical Segment": "Mobile", + "Processor Number": "N2800", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4.88 GB", + "Memory Types": "DDR3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "640 MHz", + "Sockets Supported": "FCBGA559", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922908", + "Spec Code": "SR0W1", + "Ordering Code": "DF8064101050503", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922908": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5322", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "55 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM3N", + "Spec Code": "SRL3R", + "Ordering Code": "NN8069204099502", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AM3N": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5332", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "12", + "# of Efficient-cores": "12", + "Total Threads": "12", + "Processor Base Frequency": "2.20 GHz", + "Cache": "13.5 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "61 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM3P", + "Spec Code": "SRL3S", + "Ordering Code": "NN8069204099603", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AM3P": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5342", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "16", + "# of Efficient-cores": "16", + "Total Threads": "16", + "Processor Base Frequency": "2.20 GHz", + "Cache": "18 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "71 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM3R", + "Spec Code": "SRL3T", + "Ordering Code": "NN8069204099703", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AM3R": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5352", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "20", + "# of Efficient-cores": "20", + "Total Threads": "20", + "Processor Base Frequency": "2.20 GHz", + "Cache": "22.5 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "78 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM3T", + "Spec Code": "SRL3U", + "Ordering Code": "NN8069204099802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AM3T": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5362", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "24", + "# of Efficient-cores": "24", + "Total Threads": "24", + "Processor Base Frequency": "2.20 GHz", + "Cache": "27 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "83 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AM42", + "Spec Code": "SRL3V", + "Ordering Code": "NN8069204099904", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AM42": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5721", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "48 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AT3L", + "Spec Code": "SRL7K", + "Ordering Code": "NN8069204099002", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AT3L": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5731", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "12", + "# of Efficient-cores": "12", + "Total Threads": "12", + "Processor Base Frequency": "2.20 GHz", + "Cache": "13.5 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "54.5 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AT3M", + "Spec Code": "SRL7L", + "Ordering Code": "NN8069204099102", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AT3M": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5742", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "16", + "# of Efficient-cores": "16", + "Total Threads": "16", + "Processor Base Frequency": "2.20 GHz", + "Cache": "18 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "67 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AT3N", + "Spec Code": "SRL7M", + "Ordering Code": "NN8069204099202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AT3N": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5752", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "10 nm", + "Use Conditions": "Communications Extended Temp", + "Total Cores": "20", + "# of Efficient-cores": "20", + "Total Threads": "20", + "Processor Base Frequency": "2.20 GHz", + "Cache": "22.5 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "74.5 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "x4,x8,x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Sockets Supported": "FCBGA2106", + "Max CPU Configuration": "1", + "Package Size": "47.5mm x 47.5mm", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AT40", + "Spec Code": "SRL7N", + "Ordering Code": "NN8069204099302", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A002R", + "CCATS": "G175230", + "US HTS": "8542310001", + "99AT40": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5921B", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "10 nm", + "Use Conditions": "Base Transceiver Station", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB L2 Cache", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Support": "16x PCIe 3.0, 16x PCIe 2.0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "47.5mm x 47.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5931B", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "10 nm", + "Use Conditions": "Base Transceiver Station", + "Total Cores": "12", + "Total Threads": "12", + "Processor Base Frequency": "2.20 GHz", + "Cache": "13.5 MB L2 Cache", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Support": "16x PCIe 3.0, 16x PCIe 2.0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "47.5mm x 47.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5942B", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "10 nm", + "Use Conditions": "Base Transceiver Station", + "Total Cores": "16", + "Total Threads": "16", + "Processor Base Frequency": "2.20 GHz", + "Cache": "18 MB L2 Cache", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Support": "16x PCIe 3.0, 16x PCIe 2.0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "47.5mm x 47.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor P Series", + "Code Name": "Products formerly Snow Ridge", + "Vertical Segment": "Server", + "Processor Number": "P5962B", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "10 nm", + "Use Conditions": "Base Transceiver Station", + "Total Cores": "24", + "Total Threads": "24", + "Processor Base Frequency": "2.20 GHz", + "Cache": "27 MB L2 Cache", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Support": "16x PCIe 3.0, 16x PCIe 2.0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Configuration": "4x USB 2.0, 4x USB 3.0", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "16", + "Integrated LAN": "Yes", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "3", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "47.5mm x 47.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor S Series", + "Code Name": "Products formerly Centerton", + "Vertical Segment": "Server", + "Processor Number": "S1220", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB", + "TDP": "8.1 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Support", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "8", + "UART": "UART", + "Sockets Supported": "FCBGA1283", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "925906", + "Spec Code": "SLK2K", + "Ordering Code": "DH80S1220", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "925906": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor S Series", + "Code Name": "Products formerly Centerton", + "Vertical Segment": "Server", + "Processor Number": "S1240", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB", + "TDP": "6.1 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Support", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "8", + "UART": "UART", + "Sockets Supported": "FCBGA1283", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "925905", + "Spec Code": "SLK2J", + "Ordering Code": "DH80S1240", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "925905": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor S Series", + "Code Name": "Products formerly Centerton", + "Vertical Segment": "Server", + "Processor Number": "S1260", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB", + "TDP": "8.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Support": "PCI Support", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "8", + "UART": "UART", + "Sockets Supported": "FCBGA1283", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "925904", + "Spec Code": "SLK2H", + "Ordering Code": "DH80S1260", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "925904": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6200FE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "1.5 MB", + "TDP": "4.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 2400MT/s Max 16GB / 2x64 DDR4 2400MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "Execution Units": "0", + "4K Support": "No", + "DirectX* Support": "No", + "OpenGL* Support": "No", + "Intel® Quick Sync Video": "No", + "# of Displays Supported ‡": "0", + "OpenCL* Support": "No", + "PCI Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "Integrated Wireless‡": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AF9J", + "Spec Code": "SRKST", + "Ordering Code": "FH8070304289582", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AF9J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6211E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4T", + "Spec Code": "SRKUD", + "Ordering Code": "FH8070304243807", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6212RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH1", + "Spec Code": "SRKLE", + "Ordering Code": "FH8070304289568", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6413E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "9 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGZ", + "Spec Code": "SRKLC", + "Ordering Code": "FH8070304243865", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6414RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "9 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH2", + "Spec Code": "SRKLF", + "Ordering Code": "FH8070304289591", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6425E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4V", + "Spec Code": "SRKUE", + "Ordering Code": "FH8070304243808", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6425RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 4267MT/s Max (8GB, 16GB, @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB Max 32GB With In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH3", + "Spec Code": "SRKLG", + "Ordering Code": "FH8070304289558", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6427FE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 4267MT/s Max (8GB, 16GB, @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB Max 32GB With In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH4", + "Spec Code": "SRKLH", + "Ordering Code": "FH8070304289690", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-3205RK", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "28 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "4", + "Burst Frequency": "1.20 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIPI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "4 x I2C", + "UART": "2 x USIF configurable", + "Baseband Functions": "n/a - WiFi only", + "Sockets Supported": "VF2BGA361", + "Secure Boot": "Yes", + "Instruction Set": "64-bit", + "MM#": "942940", + "Spec Code": "SLKYS", + "Ordering Code": "PMB8016.P20", + "ECCN": "5A992CN3", + "CCATS": "G152457", + "US HTS": "8542310001", + "942940": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3235RK", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "28 nm", + "Total Cores": "4", + "Burst Frequency": "1.20 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIPI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "4", + "UART": "2 x USIF configurable", + "Sockets Supported": "VF2BGA361", + "Secure Boot": "Yes", + "Instruction Set": "64-bit" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3265RK", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "28 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "4", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIDI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "Sockets Supported": "VF2BGA361", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Instruction Set": "64-bit", + "MM#": "951225", + "Spec Code": "SLLUL", + "Ordering Code": "PMB8016T.P20", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G152457", + "US HTS": "8542310001", + "951225": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3295RK", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "28 nm", + "Total Cores": "4", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIPI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "Sockets Supported": "VF2BGA361", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Instruction Set": "64-bit", + "MM#": "951224", + "Spec Code": "SLLUK", + "Ordering Code": "PMB8018T.P20", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G152457", + "US HTS": "8542310001", + "951224": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3930", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "1.80 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866 MT/s;LPDDR4 up to 2133 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "550 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "103°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953086", + "Spec Code": "SR33Q", + "Ordering Code": "LH8066803102701", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "953086": "PCN\n |\n MDDS", + "983203": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3940", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "1.80 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866 MT/s; LPDDR4 up to 2133 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "100°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953083", + "Spec Code": "SR33M", + "Ordering Code": "LH8066803102401", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983196": "PCN\n |\n MDDS", + "953083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3950", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A84", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "98°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953085", + "Spec Code": "SR33P", + "Ordering Code": "LH8066803102601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983201": "PCN\n |\n MDDS", + "953085": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8550", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Max Dynamic Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "3840x2160", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x1, 1x2", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "947017", + "Spec Code": "SR2KH", + "Ordering Code": "FJ8066401715843", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947017": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x7-Z8750", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "2.56 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Max Dynamic Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "3840x2160", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x1, 1x2", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "947016", + "Spec Code": "SR2KG", + "Ordering Code": "FJ8066401715827", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947016": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8330", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "1.92 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "500 MHz", + "Execution Units": "12", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X1", + "Max # of PCI Express Lanes": "1", + "USB Revision": "3.0", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8350", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "1.92 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Graphics Video Max Memory": "2 GB", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "1920x1080", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x1", + "Max # of PCI Express Lanes": "1", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA592", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "947027", + "Spec Code": "SR2KT", + "Ordering Code": "FJ8066401836620", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947027": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Embedded", + "Processor Number": "E8000", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.04 GHz", + "Cache": "2 MB", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947286", + "Spec Code": "SR2LV", + "Ordering Code": "FH8066501715946", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947286": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3200RK", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "28 nm", + "Total Cores": "4", + "Burst Frequency": "1.10 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIPI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "4 x I2C", + "UART": "2 x USIF configurable", + "Baseband Functions": "n/a - WiFI only", + "RF Transceiver": "n/a - WiFI only", + "RF Transceiver Functions": "n/a - WiFi only", + "Protocol Stack": "n/a - WiFi only", + "Operating Temperature Range": "-25°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "11mm x 11mm", + "Operating Temperature (Minimum)": "-25 °C", + "Secure Boot": "Yes", + "Instruction Set": "64-bit" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA LTE", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3405", + "Status": "Announced", + "Launch Date": "Q1'15", + "Lithography": "28 nm", + "Total Cores": "4", + "Burst Frequency": "1.40 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "456 MHz", + "Graphics Output": "MIPI DSI", + "Max Resolution (eDP - Integrated Flat Panel)‡": "1280x800", + "DirectX* Support": "9.3", + "OpenGL* Support": "ES 3.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "5 x I2C", + "UART": "7 x USIF configurable", + "Baseband Functions": "n/a - WiFi only", + "RF Transceiver": "SMARTi™ 4.5s", + "RF Transceiver Functions": "clock", + "Protocol Stack": "n/a - WiFi only", + "Operating Temperature Range": "-25°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "12mm x 12mm", + "Operating Temperature (Minimum)": "-25 °C", + "Secure Boot": "Yes", + "Instruction Set": "64-bit" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA 3G R", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3230RK", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "28 nm", + "Total Cores": "4", + "Burst Frequency": "1.10 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066 2x16 DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "600 MHz", + "Graphics Output": "MIPI DSI", + "Max Refresh Rate": "60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "up to 1920x1080", + "OpenGL* Support": "ES 2.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "4 x I2C", + "UART": "2 x USIF configurable", + "Baseband Functions": "HSDPA 21Mbps HSUPA 5.7 Mbps", + "RF Transceiver": "A-GOLD 620", + "RF Transceiver Functions": "Low power multimode multiband transceiver for 3G 2.5G 2G", + "Protocol Stack": "Intel Release 9 Protocol Stack", + "Operating Temperature Range": "-25°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "11mm x 11mm", + "Operating Temperature (Minimum)": "-25 °C", + "Secure Boot": "Yes", + "Instruction Set": "64-bit" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly SoFIA LTE", + "Vertical Segment": "Mobile", + "Processor Number": "x3-C3445", + "Status": "Announced", + "Launch Date": "Q1'15", + "Lithography": "28 nm", + "Total Cores": "4", + "Burst Frequency": "1.40 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "1x32 LPDDR2/3 1066", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "4.2 GB/s", + "Graphics Base Frequency": "456 MHz", + "Graphics Output": "MIPI DSI", + "Max Resolution (eDP - Integrated Flat Panel)‡": "1280x800", + "DirectX* Support": "9.3", + "OpenGL* Support": "ES 3.0", + "# of Displays Supported ‡": "1", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "5 x I2C", + "UART": "7 x USIF configurable", + "Baseband Functions": "LTE FDD/TDD; up to Cat.6 300Mbps 2CA up to 40MHz DC-HSDPA 42Mbps HSUPA 11Mbps TD-SCDMA EDGE", + "RF Transceiver": "SMARTi™ 4.5s", + "RF Transceiver Functions": "Low power multimode multiband transceiver for LTE-FDD LTE-TDD 3G 2.5G 2G TD-SCDMA", + "Protocol Stack": "Intel Release 10 Protocol Stack", + "Operating Temperature Range": "-25°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "12mm x 12mm", + "Operating Temperature (Minimum)": "-25 °C", + "Secure Boot": "Yes", + "Instruction Set": "64-bit" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8300", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "1.84 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "500 MHz", + "Graphics Video Max Memory": "2 GB", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "1920x1080", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x1", + "Max # of PCI Express Lanes": "1", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA592", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943165", + "Spec Code": "SR29Z", + "Ordering Code": "FJ8066401836609", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "943165": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8500", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "2.24 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "3840x2160", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x1, 1x2", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "940954", + "Spec Code": "SR27N", + "Ordering Code": "FJ8066401715814", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "940954": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x7-Z8700", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "3840x2160", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x1, 1x2", + "Max # of PCI Express Lanes": "2", + "# of USB Ports": "3", + "USB Revision": "3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Secure Boot": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "940953", + "Spec Code": "SR27M", + "Ordering Code": "FJ8066401715809", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "940953": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Moorefield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3590", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.50 GHz", + "Cache": "2 MB", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Burst Frequency": "640 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14x14mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Moorefield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3570", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.00 GHz", + "Cache": "2 MB", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Burst Frequency": "640 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14x14mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3736F", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936897", + "Spec Code": "SR20D", + "Ordering Code": "FH8065301685500", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "936897": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3736G", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936898", + "Spec Code": "SR20E", + "Ordering Code": "FH8065301685971", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "936898": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Moorefield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3530", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.33 GHz", + "Cache": "2 MB", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Output": "MIPI-DSI", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Sockets Supported": "FC-MB5T1064", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14x14mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "935962", + "Spec Code": "SR1YR", + "Ordering Code": "GA8066301896101", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G143422", + "US HTS": "8542310001", + "935962": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3785", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.49 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "833 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Moorefield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3560", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Cache": "2 MB", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Burst Frequency": "533 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14x14mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Moorefield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3580", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.33 GHz", + "Cache": "2 MB", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Burst Frequency": "533 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14x14mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735F", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933463", + "Spec Code": "SR1UB", + "Ordering Code": "FH8065301685598", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735G", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933469", + "Spec Code": "SR1UD", + "Ordering Code": "FH8065301685965", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933469": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Merrifield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3460", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Burst Frequency": "1.60 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "8.5 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "457 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Sockets Supported": "FC-MB5796", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "12mm x 12mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Merrifield", + "Vertical Segment": "Mobile", + "Processor Number": "Z3480", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Burst Frequency": "2.13 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "8.5 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "457 MHz", + "Graphics Burst Frequency": "533 MHz", + "Graphics Output": "MIPI-DSI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0/3.0", + "General Purpose IO": "175", + "UART": "3", + "Sockets Supported": "FC-MB5796", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "12mm x 12mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3, Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735E", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933439", + "Spec Code": "SR1U9", + "Ordering Code": "FH8065301685963", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933439": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3775D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.49 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932781", + "Spec Code": "SR1SR", + "Ordering Code": "FH8065301574843", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932781": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3795", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.59 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932737", + "Spec Code": "SR1SK", + "Ordering Code": "FH8065301455628", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932737": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3745", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "USB Revision": "2.0/3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932770", + "Spec Code": "SR1SP", + "Ordering Code": "FH8065301455630", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932770": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3745D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3775", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932745", + "Spec Code": "SR1SM", + "Ordering Code": "FH8065301455629", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3740", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "931181", + "Spec Code": "SR1M5", + "Ordering Code": "FH8065301455601", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931181": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3740D", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "688 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932249", + "Spec Code": "SR1S0", + "Ordering Code": "FH8065301574825", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932249": "PCN\n |\n MDDS", + "931194": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3770", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "931173", + "Spec Code": "SR1M3", + "Ordering Code": "FH8065301455604", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931173": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3770D", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "688 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932247", + "Spec Code": "SR1RY", + "Ordering Code": "FH8065301574823", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931192": "PCN\n |\n MDDS", + "932247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Cloverview", + "Vertical Segment": "Mobile", + "Processor Number": "Z2520", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR2 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "8.5 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "300 MHz", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0 OTG, USB-SPH 2.0", + "UART": "3", + "Sockets Supported": "FC-MB4760", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14mm x 14mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936431", + "Spec Code": "SR1ZJ", + "Ordering Code": "DG8065101533700", + "Stepping": "B1", + "Shipping Media": "TRAY", + "ECCN": "5A992CN3", + "CCATS": "G078451", + "US HTS": "8542310001", + "936431": "PCN\n |\n MDDS", + "928824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Cloverview", + "Vertical Segment": "Mobile", + "Processor Number": "Z2560", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Burst Frequency": "1.60 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR2 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "8.5 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0 OTG, USB-SPH 2.0", + "UART": "3", + "Sockets Supported": "FC-MB4760", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14mm x 14mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936415", + "Spec Code": "SR1ZG", + "Ordering Code": "DG8065101274708", + "Stepping": "B1", + "Shipping Media": "TRAY", + "ECCN": "5A992CN3", + "CCATS": "G078451", + "US HTS": "8542310001", + "927907": "PCN\n |\n MDDS", + "936415": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Cloverview", + "Vertical Segment": "Mobile", + "Processor Number": "Z2580", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Burst Frequency": "2.00 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR2 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "8.5 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "533 MHz", + "# of Displays Supported ‡": "2", + "# of USB Ports": "2", + "USB Revision": "2.0 OTG, USB-SPH 2.0", + "UART": "3", + "Sockets Supported": "FC-MB4760", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "14mm x 14mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Idle Technology": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936424", + "Spec Code": "SR1ZH", + "Ordering Code": "DG8065101418900", + "Stepping": "B1", + "Shipping Media": "TRAY", + "ECCN": "5A992CN3", + "CCATS": "G078451", + "US HTS": "8542310001", + "927910": "PCN\n |\n MDDS", + "936424": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Penwell", + "Vertical Segment": "Mobile", + "Processor Number": "Z2420", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "7/4/14", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Burst Frequency": "1.20 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "LPDDR2 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "# of Displays Supported ‡": "2", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "152", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90", + "Package Size": "12mm x 12mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Penwell", + "Vertical Segment": "Mobile", + "Processor Number": "Z2480", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "7/4/14", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Burst Frequency": "2.00 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR2 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "HDMI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "152", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90", + "Package Size": "12mm x 12mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Cloverview", + "Vertical Segment": "Mobile", + "Processor Number": "Z2760", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1 MB L2 Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.4 GB", + "Memory Types": "LPDDR2 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "6.4 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "533 MHz", + "Sockets Supported": "FC-MB4760", + "Package Size": "14mm x 14mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "MM#": "924130", + "Spec Code": "SR0Z4", + "Ordering Code": "DG8065001313500", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G078451", + "US HTS": "8542310001", + "923491": "PCN\n |\n MDDS", + "924130": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Penwell", + "Vertical Segment": "Mobile", + "Processor Number": "Z2460", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "7/4/14", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Burst Frequency": "1.60 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR2 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "HDMI", + "# of Displays Supported ‡": "2", + "# of USB Ports": "1", + "USB Revision": "2.0 OTG", + "General Purpose IO": "152", + "UART": "3", + "Max CPU Configuration": "1", + "TJUNCTION": "90", + "Package Size": "12mm x 12mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Lincroft", + "Vertical Segment": "Mobile", + "Processor Number": "Z600", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Bus Speed": "400 MHz", + "TDP": "1.3 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "LPDDR1 400", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "1.6 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "200 MHz", + "Graphics Video Max Memory": "256 MB", + "Graphics Output": "MIPI, LVDS", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "PCI Support": "No", + "PCI Express Revision": "None", + "PCI Express Configurations ‡": "No", + "Max # of PCI Express Lanes": "0", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "None", + "Integrated IDE": "None", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max CPU Configuration": "1", + "TJUNCTION": "-25°C to +90°C", + "Package Size": "13.8mmx13.8mmx1.1mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Lincroft", + "Vertical Segment": "Mobile", + "Processor Number": "Z615", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Bus Speed": "400 MHz", + "TDP": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "3.2 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Video Max Memory": "256 MB", + "Graphics Output": "LVDS, MIPI", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "PCI Support": "No", + "PCI Express Revision": "None", + "PCI Express Configurations ‡": "None", + "Max # of PCI Express Lanes": "0", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max CPU Configuration": "1", + "TJUNCTION": "0 to +90°C", + "Package Size": "13.8mmx 13.8mmx1.1mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® I/O Acceleration Technology": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Lincroft", + "Vertical Segment": "Mobile", + "Processor Number": "Z625", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "512 KB Intel® Smart Cache", + "Bus Speed": "400 MHz", + "TDP": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "3.2 GB/s", + "Physical Address Extensions": "32-bit", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "LVDS, MIPI", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "PCI Support": "No", + "PCI Express Revision": "No", + "PCI Express Configurations ‡": "None", + "Max # of PCI Express Lanes": "0", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "0", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max CPU Configuration": "1", + "TJUNCTION": "0 to +90°C", + "Package Size": "13.8mmx13.8mmx1.1mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "No", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Fast Memory Access": "No", + "Intel® Flex Memory Access": "No", + "Intel® I/O Acceleration Technology": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Lincroft", + "Vertical Segment": "Mobile", + "Processor Number": "Z650", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "512 KB L2 Cache", + "TDP": "3 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "LVDS", + "PCI Support": "No", + "Sockets Supported": "T-PBGA518", + "TJUNCTION": "90", + "Package Size": "13.8mmx13.8mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "910072", + "Spec Code": "SLC2Q", + "Ordering Code": "AY80609007296AA", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "910072": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Lincroft", + "Vertical Segment": "Mobile", + "Processor Number": "Z670", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "512 KB", + "TDP": "3 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "LVDS", + "PCI Support": "No", + "Sockets Supported": "T-PBGA518", + "TJUNCTION": "90", + "Package Size": "13.8mmx13.8mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "910071", + "Spec Code": "SLC2P", + "Ordering Code": "AY80609007293AA", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "910071": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N570", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "45 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "8.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "200 MHz", + "Package Size": "22mm x 22mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "176 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Stellarton", + "Vertical Segment": "Embedded", + "Processor Number": "E645C", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "2", + "Sockets Supported": "FCBGA1466", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "916393", + "Spec Code": "SLJB2", + "Ordering Code": "CY80632007221AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A001.A.7.A", + "CCATS": "NA", + "US HTS": "8542310001", + "916393": "PCN", + "909455": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Stellarton", + "Vertical Segment": "Embedded", + "Processor Number": "E645CT", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "2", + "Sockets Supported": "FCBGA1466", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "916387", + "Spec Code": "SLJBX", + "Ordering Code": "CY80632007221AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A001.A.7.A", + "CCATS": "NA", + "US HTS": "8542310001", + "916387": "PCN", + "908902": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Stellarton", + "Vertical Segment": "Embedded", + "Processor Number": "E665C", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "2", + "Sockets Supported": "FCBGA1466", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "916391", + "Spec Code": "SLJBZ", + "Ordering Code": "CY80632007224AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A001.A.7.A", + "CCATS": "NA", + "US HTS": "8542310001", + "909452": "PCN\n |\n MDDS", + "916391": "PCN" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Stellarton", + "Vertical Segment": "Embedded", + "Processor Number": "E665CT", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2.93 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "2", + "Sockets Supported": "FCBGA1466", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "32-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "916385", + "Spec Code": "SLJBW", + "Ordering Code": "CY80632007224AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A001.A.7.A", + "CCATS": "NA", + "US HTS": "8542310001", + "916385": "PCN", + "908901": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E620", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "600 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913773", + "Spec Code": "SLJ32", + "Ordering Code": "CT80618005844AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905531": "PCN\n |\n MDDS", + "913773": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E620T", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "600 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "110°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913695", + "Spec Code": "SLJ36", + "Ordering Code": "CT80618005844AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913695": "PCN\n |\n MDDS", + "905806": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E640", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "90°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913761", + "Spec Code": "SLJ33", + "Ordering Code": "CT80618005841AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913761": "PCN\n |\n MDDS", + "905528": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E640T", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "110°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913650", + "Spec Code": "SLJ37", + "Ordering Code": "CT80618005841AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913650": "PCN\n |\n MDDS", + "905805": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E660", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "90°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913720", + "Spec Code": "SLJ34", + "Ordering Code": "CT80618003201AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913720": "PCN\n |\n MDDS", + "905523": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E660T", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "3.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "110°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913571", + "Spec Code": "SLJ38", + "Ordering Code": "CT80618003201AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905804": "PCN\n |\n MDDS", + "913571": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E680", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "4.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1, root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "90°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913706", + "Spec Code": "SLJ35", + "Ordering Code": "CT80618007035AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913706": "PCN\n |\n MDDS", + "909841": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Tunnel Creek", + "Vertical Segment": "Embedded", + "Processor Number": "E680T", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2500 MHz", + "FSB Parity": "No", + "TDP": "4.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 800", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "PCI Express Revision": "1.0a", + "PCI Express Configurations ‡": "x1 root complex only", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA676", + "TJUNCTION": "110°C", + "Package Size": "22mmx22mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "913549", + "Spec Code": "SLJ39", + "Ordering Code": "CT80618007035AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "913549": "PCN\n |\n MDDS", + "909839": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N550", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "8.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "200 MHz", + "Package Size": "22mm x 22mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "176 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Desktop", + "Processor Number": "D425", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3 800 (SODIMM only); DDR2 667/800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "908151", + "Spec Code": "SLBXD", + "Ordering Code": "AU80610006252AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "908151": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Desktop", + "Processor Number": "D525", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "13 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3 800 (SODIMM only); DDR2 667/800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "176 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "908139", + "Spec Code": "SLBXC", + "Ordering Code": "AU80610006225AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "908139": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N455", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2/3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "200 MHz", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907817", + "Spec Code": "SLBX9", + "Ordering Code": "AU80610006237AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N475", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.83 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "6.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2/3", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "200 MHz", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907816", + "Spec Code": "SLBX5", + "Ordering Code": "AU80610006240AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907816": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z560", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.13 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.5 W", + "VID Voltage Range": "0.75V-1.1V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "907437", + "Spec Code": "SLH63", + "Ordering Code": "AC80566UE046DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907437": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Desktop", + "Processor Number": "D410", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR2 667/800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "904318", + "Spec Code": "SLBMH", + "Ordering Code": "AU80610004671AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "904318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Desktop", + "Processor Number": "D510", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "13 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR2 667/800", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "6.4 GB/s", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "176 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "904093", + "Spec Code": "SLBLA", + "Ordering Code": "AU80610004392AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "904093": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N450", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "5.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 667", + "Max # of Memory Channels": "1", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "904317", + "Spec Code": "SLBMG", + "Ordering Code": "AU80610004653AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "904317": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Pineview", + "Vertical Segment": "Mobile", + "Processor Number": "N470", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.83 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "6.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR2 667", + "Max # of Memory Channels": "1", + "Graphics Base Frequency": "200 MHz", + "Sockets Supported": "FCBGA559", + "TJUNCTION": "100°C", + "Package Size": "22mm x22mm", + "Processing Die Size": "66 mm2", + "# of Processing Die Transistors": "123 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "904708", + "Spec Code": "SLBMF", + "Ordering Code": "AU80610003495AA", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "904708": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z515", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "1.4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901391", + "Spec Code": "SLGMG", + "Ordering Code": "AC80566UC009DV", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901391": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z550", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901606", + "Spec Code": "SLGPT", + "Ordering Code": "AC80566UE041DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901606": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z510P", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Processor Base Frequency": "1.10 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "2.2 W", + "VID Voltage Range": "0.8V-1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901876", + "Spec Code": "SLGPQ", + "Ordering Code": "CH80566EC005DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901876": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z510PT", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Processor Base Frequency": "1.10 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "2.2 W", + "VID Voltage Range": "0.75V-1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901877", + "Spec Code": "SLGPR", + "Ordering Code": "CH80566EC005DT", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901877": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z520PT", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Processor Base Frequency": "1.33 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.2 W", + "VID Voltage Range": "0.9V-1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901875", + "Spec Code": "SLGPP", + "Ordering Code": "CH80566EE014DT", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z530P", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.2 W", + "VID Voltage Range": "0.8V-1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901873", + "Spec Code": "SLGPN", + "Ordering Code": "CH80566EE025DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Diamondville", + "Vertical Segment": "Mobile", + "Processor Number": "N280", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.66 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "667 MHz", + "TDP": "2.5 W", + "VID Voltage Range": "0.9V-1.1625V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "900755", + "Spec Code": "SLGL9", + "Ordering Code": "AU80586GF028D", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900755": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Diamondville", + "Vertical Segment": "Desktop", + "Processor Number": "330", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "8 W", + "VID Voltage Range": "0.9V-1.1625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA437", + "TCASE": "85.2°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "52 mm2", + "# of Processing Die Transistors": "94 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899357", + "Spec Code": "SLG9Y", + "Ordering Code": "AU80587RE0251M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899357": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Diamondville", + "Vertical Segment": "Desktop", + "Processor Number": "230", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "4 W", + "VID Voltage Range": "0.9V-1.1625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA437", + "TCASE": "85.2°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897938", + "Spec Code": "SLB6Z", + "Ordering Code": "AU80586RE025D", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Diamondville", + "Vertical Segment": "Mobile", + "Processor Number": "N270", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.5 W", + "VID Voltage Range": "0.9V-1.1625V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PBGA437", + "TJUNCTION": "90°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE, Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897939", + "Spec Code": "SLB73", + "Ordering Code": "AU80586GE025D", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897939": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z500", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "800 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "0.65 W", + "Scenario Design Power (SDP)": "0.96 W", + "VID Voltage Range": "0.80 -1.10V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898287", + "Spec Code": "SLB6Q", + "Ordering Code": "AC80566UC800DE", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897830": "PCN", + "898287": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z510", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Processor Base Frequency": "1.10 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "2 W", + "Scenario Design Power (SDP)": "0.96 W", + "VID Voltage Range": "0.75-1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897822", + "Spec Code": "SLB2C", + "Ordering Code": "AC80566UC005DE", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z520", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.33 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2 W", + "Scenario Design Power (SDP)": "0.96 W", + "VID Voltage Range": "0.75-1.1V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897821", + "Spec Code": "SLB2H", + "Ordering Code": "AC80566UE014DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897821": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z530", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2 W", + "Scenario Design Power (SDP)": "0.96 W", + "VID Voltage Range": "0.75 -1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897825", + "Spec Code": "SLB6P", + "Ordering Code": "AC80566UE025DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897825": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel Atom® Processors", + "Code Name": "Products formerly Silverthorne", + "Vertical Segment": "Mobile", + "Processor Number": "Z540", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.86 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "2.4 W", + "Scenario Design Power (SDP)": "0.96 W", + "VID Voltage Range": "0.75 -1.1V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PBGA441", + "TJUNCTION": "90°C", + "Package Size": "13mm x 14mm", + "Processing Die Size": "26 mm2", + "# of Processing Die Transistors": "47 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897823", + "Spec Code": "SLB2M", + "Ordering Code": "AC80566UE036DW", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6900", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "2", + "Performance-core Base Frequency": "3.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "46 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJW", + "Spec Code": "SRL67", + "Ordering Code": "BXC80715G6900", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APD3": "PCN", + "99ATJP": "PCN", + "99ATJW": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6900E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "2", + "Performance-core Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "46 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC0", + "Spec Code": "SRL6Q", + "Ordering Code": "CM8071504653807", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC0": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6900T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "2", + "Performance-core Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APD4", + "Spec Code": "SRL68", + "Ordering Code": "CM8071504651904", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APD4": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6900TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "2", + "Performance-core Base Frequency": "2.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARAZ", + "Spec Code": "SRL6P", + "Ordering Code": "CM8071504653706", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARAZ": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5905", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A6MV", + "Spec Code": "SRK27", + "Ordering Code": "BXC80701G5905", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K2": "PCN\n |\n MDDS", + "99A6MR": "PCN\n |\n MDDS", + "99A6MV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5905T", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A4K4", + "Spec Code": "SRK28", + "Ordering Code": "CM8070104292213", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5925", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A6MT", + "Spec Code": "SRK26", + "Ordering Code": "BXC80701G5925", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K0": "PCN\n |\n MDDS", + "99A6MP": "PCN\n |\n MDDS", + "99A6MT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5900", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A01C", + "Spec Code": "SRH44", + "Ordering Code": "BXC80701G5900", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL4": "PCN\n |\n MDDS", + "99A00T": "PCN\n |\n MDDS", + "99A01C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G5900E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W63", + "Spec Code": "SRH7T", + "Ordering Code": "CM8070104424111", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W63": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5900T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL6", + "Spec Code": "SRH46", + "Ordering Code": "CM8070104292207", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G5900TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXA", + "Spec Code": "SRH6J", + "Ordering Code": "CM8070104424010", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXA": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5920", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A019", + "Spec Code": "SRH42", + "Ordering Code": "BXC80701G5920", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL2": "PCN\n |\n MDDS", + "99A00R": "PCN\n |\n MDDS", + "99A019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G4930E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9C", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0C", + "Spec Code": "SRFEE", + "Ordering Code": "CL8068404164900", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G4932E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "1.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9C", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0K", + "Spec Code": "SRFEL", + "Ordering Code": "CL8068404165500", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4930", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FZ1", + "Spec Code": "SR3YN", + "Ordering Code": "BXC80684G4930", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963696": "PCN\n |\n MDDS", + "999FRG": "PCN\n |\n MDDS", + "999FZ1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4930T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963699", + "Spec Code": "SR3YQ", + "Ordering Code": "CM8068403379313", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963699": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4950", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FZ0", + "Spec Code": "SR3YM", + "Ordering Code": "BXC80684G4950", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963695": "PCN\n |\n MDDS", + "999FRF": "PCN\n |\n MDDS", + "999FZ0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4900", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963825", + "Spec Code": "SR3W4", + "Ordering Code": "BXC80684G4900", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963375": "PCN\n |\n MDDS", + "963823": "PCN\n |\n MDDS", + "963825": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4900T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963697", + "Spec Code": "SR3YP", + "Ordering Code": "CM8068403379312", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4920", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973459", + "Spec Code": "SR3YL", + "Ordering Code": "BX80684G4920", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963694": "PCN\n |\n MDDS", + "973459": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930E", + "Status": "Launched", + "Launch Date": "Q2'17", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955177", + "Spec Code": "SR38G", + "Ordering Code": "CM8067703318802", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930TE", + "Status": "Launched", + "Launch Date": "Q2'17", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096X2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955178", + "Spec Code": "SR38H", + "Ordering Code": "CM8067703318900", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955178": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954816", + "Spec Code": "SR35K", + "Ordering Code": "BX80677G3930", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954043": "PCN\n |\n MDDS", + "954816": "PCN\n |\n MDDS", + "954823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954053", + "Spec Code": "SR35V", + "Ordering Code": "CM8067703016211", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954053": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3950", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954815", + "Spec Code": "SR35J", + "Ordering Code": "BX80677G3950", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954042": "PCN\n |\n MDDS", + "954815": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3900E", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944534", + "Spec Code": "SR2GH", + "Ordering Code": "CL8066201939703", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944534": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3902E", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944537", + "Spec Code": "SR2GJ", + "Ordering Code": "CL8066202400204", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944537": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3900", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945919", + "Spec Code": "SR2HV", + "Ordering Code": "BXC80662G3900", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945385": "PCN\n |\n MDDS", + "945912": "PCN\n |\n MDDS", + "945919": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3900T", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3900TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947271", + "Spec Code": "SR2LU", + "Ordering Code": "CM8066201938802", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947271": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3920", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945920", + "Spec Code": "SR2HX", + "Ordering Code": "BXC80662G3920", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945387": "PCN", + "945913": "PCN\n |\n MDDS", + "945920": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1840", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935153", + "Spec Code": "SR1VK", + "Ordering Code": "BXC80646G1840", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934445": "PCN\n |\n MDDS", + "935146": "PCN\n |\n MDDS", + "935153": "PCN\n |\n MDDS", + "932177": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1840T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931027", + "Spec Code": "SR1KA", + "Ordering Code": "CM8064601482618", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931027": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1850", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935152", + "Spec Code": "SR1KH", + "Ordering Code": "BXC80646G1850", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931037": "PCN\n |\n MDDS", + "935145": "PCN\n |\n MDDS", + "935152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "G1820TE", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929230", + "Spec Code": "SR182", + "Ordering Code": "CM8064601484601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932857": "PCN\n |\n MDDS", + "929230": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1820", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933534", + "Spec Code": "SR1CN", + "Ordering Code": "BXC80646G1820", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930400": "PCN\n |\n MDDS", + "933529": "PCN\n |\n MDDS", + "933534": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1820T", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930401", + "Spec Code": "SR1CP", + "Ordering Code": "CM8064601482617", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930401": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1830", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933535", + "Spec Code": "SR1NC", + "Ordering Code": "BXC80646G1830", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931425": "PCN\n |\n MDDS", + "933531": "PCN\n |\n MDDS", + "933535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1620T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928911", + "Spec Code": "SR169", + "Ordering Code": "CM8063701448300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928911": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1630", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931518", + "Spec Code": "SR16A", + "Ordering Code": "BX80637G1630", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928912": "PCN\n |\n MDDS", + "931518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1610", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926196", + "Spec Code": "SR10K", + "Ordering Code": "BX80637G1610", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924945": "PCN\n |\n MDDS", + "926192": "PCN\n |\n MDDS", + "926196": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1610T", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924947", + "Spec Code": "SR10M", + "Ordering Code": "CM8063701445100", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1620", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926197", + "Spec Code": "SR10L", + "Ordering Code": "BX80637G1620", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924946": "PCN\n |\n MDDS", + "926193": "PCN\n |\n MDDS", + "926197": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6412", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "1x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4N", + "Spec Code": "SRKUA", + "Ordering Code": "DC8070304190881", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4N": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6413", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGN", + "Spec Code": "SRKL7", + "Ordering Code": "DC8070304190822", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGN": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4025", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984796", + "Spec Code": "SRET3", + "Ordering Code": "FH8068003067428", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4125", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "4K Support": "Yes, at 60Hz", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PVK", + "Spec Code": "SRGZS", + "Ordering Code": "FH8068003067410", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999PVK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3355E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Description": "Intel® Celeron® Processor J3355E is now named as Intel® Celeron® Processor J3355. Please refer to the \"J3355\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Description": "Intel® Celeron® Processor J3455E is now named as Intel® Celeron® Processor J3455. Please refer to the \"J3455\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961644", + "Spec Code": "SR3S5", + "Ordering Code": "FH8068003067416", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4105", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961643", + "Spec Code": "SR3S4", + "Ordering Code": "FH8068003067403", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3355", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983220", + "Spec Code": "SREKJ", + "Ordering Code": "FH8066802986000", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983220": "PCN\n |\n MDDS", + "951841": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983222", + "Spec Code": "SREKK", + "Ordering Code": "FH8066802986102", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983222": "PCN\n |\n MDDS", + "951842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Desktop", + "Processor Number": "J3060", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.48 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "5", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947025", + "Spec Code": "SR2KR", + "Ordering Code": "FH8066501715934", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947025": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Desktop", + "Processor Number": "J3160", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.24 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "5", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947026", + "Spec Code": "SR2KS", + "Ordering Code": "FH8066501715935", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947026": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1800", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934012", + "Spec Code": "SR1UU", + "Ordering Code": "FH8065301615104", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962775": "PCN\n |\n MDDS", + "932483": "PCN\n |\n MDDS", + "934012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1900", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.42 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934010", + "Spec Code": "SR1UT", + "Ordering Code": "FH8065301615010", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962774": "PCN\n |\n MDDS", + "932481": "PCN\n |\n MDDS", + "934010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1750", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.41 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931094", + "Spec Code": "SR1LP", + "Ordering Code": "FH8065301562600", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931094": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1850", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931092", + "Spec Code": "SR1LN", + "Ordering Code": "FH8065301455200", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931092": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6210", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "1x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4R", + "Spec Code": "SRKUC", + "Ordering Code": "DC8070304190883", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4R": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4500", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98N", + "Spec Code": "SRKH0", + "Ordering Code": "DC8069704609907", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98J", + "Spec Code": "SRKGW", + "Ordering Code": "DC8069704609809", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5100", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98M", + "Spec Code": "SRKGZ", + "Ordering Code": "DC8069704609906", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98H", + "Spec Code": "SRKGV", + "Ordering Code": "DC8069704609808", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6211", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGV", + "Spec Code": "SRKL9", + "Ordering Code": "DC8070304190819", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGV": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N4020", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Description": "N4020 is offered in 2 MM#: 99AAJ6: Launched Q4'20 with Spec Code SRKLL supports DDR4 only. See Additional information for more details. 984730: Launched Q4'19 with Spec Code SRETO supports DDR4/LPDDR4", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 (SRET0) up to 2400 MT/s DDR4 (SRKLL) up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AAJ6", + "Spec Code": "SRKLL", + "Ordering Code": "FH8068003067484", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "99AAJ6": "PCN", + "984730": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N4120", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984729", + "Spec Code": "SRESZ", + "Ordering Code": "FH8068003067400", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984729": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "The Intel® Celeron® Processor N3350E is now named as Intel® Celeron® Processor N3350. Please refer to the \"N3350\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Idle Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4000", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961640", + "Spec Code": "SR3S1", + "Ordering Code": "FH8068003067417", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961640": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4100", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961639", + "Spec Code": "SR3S0", + "Ordering Code": "FH8068003067408", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961639": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3450", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951833", + "Spec Code": "SR2Z6", + "Ordering Code": "FH8066802979803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951833": "PCN\n |\n MDDS", + "951484": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3010", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.24 GHz", + "Processor Base Frequency": "1.04 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "3 W", + "TDP": "4 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947021", + "Spec Code": "SR2KM", + "Ordering Code": "FH8066501715938", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947021": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3060", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.48 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951881", + "Spec Code": "SR2ZN", + "Ordering Code": "FH8066501715949", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "951881": "PCN\n |\n MDDS", + "947022": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3160", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.24 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "640 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947023", + "Spec Code": "SR2KP", + "Ordering Code": "FH8066501715928", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947023": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3000", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.08 GHz", + "Processor Base Frequency": "1.04 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "3 W", + "TDP": "4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "942603", + "Spec Code": "SR29J", + "Ordering Code": "FH8066501715915", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942603": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3050", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943329", + "Spec Code": "SR2A9", + "Ordering Code": "FH8066501715925", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942602": "PCN\n |\n MDDS", + "943329": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3150", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.08 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "640 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943328", + "Spec Code": "SR2A8", + "Ordering Code": "FH8066501715924", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942600": "PCN\n |\n MDDS", + "943328": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2808", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.25 GHz", + "Processor Base Frequency": "1.58 GHz", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "3 W", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.66 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "935932", + "Spec Code": "SR1YH", + "Ordering Code": "FH8065301903500", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "935932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2840", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "935949", + "Spec Code": "SR1YJ", + "Ordering Code": "FH8065301903600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "935949": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2940", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.25 GHz", + "Processor Base Frequency": "1.83 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "936000", + "Spec Code": "SR1YV", + "Ordering Code": "FH8065301919600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2807", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.58 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934898", + "Spec Code": "SR1W5", + "Ordering Code": "FH8065301730502", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962777": "PCN\n |\n MDDS", + "934898": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2830", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934897", + "Spec Code": "SR1W4", + "Ordering Code": "FH8065301729602", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934897": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2930", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.83 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934896", + "Spec Code": "SR1W3", + "Ordering Code": "FH8065301729501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962776": "PCN\n |\n MDDS", + "934896": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2806", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932494", + "Spec Code": "SR1SH", + "Ordering Code": "FH8065301616703", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2815", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.13 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932579", + "Spec Code": "SR1SJ", + "Ordering Code": "FH8065301619509", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932579": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2820", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932492", + "Spec Code": "SR1SG", + "Ordering Code": "FH8065301616603", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932492": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2920", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "844 MHz", + "Graphics Max Dynamic Frequency": "844 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932490", + "Spec Code": "SR1SF", + "Ordering Code": "FH8065301616203", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932490": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2805", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.46 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.3 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "667 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "80°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931118", + "Spec Code": "SR1LY", + "Ordering Code": "FH8065301564600", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931118": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2810", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931116", + "Spec Code": "SR1LX", + "Ordering Code": "FH8065301564501", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931116": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2910", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "February 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931114", + "Spec Code": "SR1LW", + "Ordering Code": "FH8065301546402", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 7000 Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "7305E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "5", + "Processor Base Frequency": "1.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AZG3", + "Spec Code": "SRLZL", + "Ordering Code": "FJ8071504827303", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AZG3": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor 7000 Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "7300", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "5", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46C3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor 7000 Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "7305", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "5", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW79", + "Spec Code": "SRLFX", + "Ordering Code": "FJ8071504827300", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW79": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6600HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH8D", + "Spec Code": "SRKX7", + "Ordering Code": "FH8069004638144", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH8D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6305", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "2", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3G6", + "Spec Code": "SRK0B", + "Ordering Code": "FH8069004531901", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3G6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6305E", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3N6", + "Spec Code": "SRK17", + "Ordering Code": "FH8069004542700", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3N6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 5000 Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5305U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K4K", + "Spec Code": "SRGL4", + "Ordering Code": "FJ8070104307903", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 5000 Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5205U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21,0x9BAA", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LHC", + "Spec Code": "SRGP4", + "Ordering Code": "FJ8070104309301", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4J": "PCN\n |\n MDDS", + "999LHC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "4305UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DRK", + "Spec Code": "SRFDZ", + "Ordering Code": "CL8068404210005", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DRK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4305U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C35", + "Spec Code": "SRFA5", + "Ordering Code": "CL8068404066103", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C35": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4205U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984533", + "Spec Code": "SRESP", + "Ordering Code": "CL8068404080803", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "984533": "PCN\n |\n MDDS", + "999FFJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "3867U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984528", + "Spec Code": "SRESK", + "Ordering Code": "FJ8067703283011", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "984528": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3965Y", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957364", + "Spec Code": "SR3GG", + "Ordering Code": "HE8067702740021", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "957364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3865U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953360", + "Spec Code": "SR349", + "Ordering Code": "FJ8067702739933", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3965U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953361", + "Spec Code": "SR34A", + "Ordering Code": "FJ8067702739934", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "3855U", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866, DDR3L-1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944335", + "Spec Code": "SR2EV", + "Ordering Code": "FJ8066201931008", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944335": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "3955U", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866, DDR3L-1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944336", + "Spec Code": "SR2EW", + "Ordering Code": "FJ8066201931006", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3215U", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939367", + "Spec Code": "SR243", + "Ordering Code": "FH8065801882802", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939367": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3765U", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939366", + "Spec Code": "SR242", + "Ordering Code": "FH8065801620803", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3205U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937260", + "Spec Code": "SR215", + "Ordering Code": "FH8065801882800", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3755U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937258", + "Spec Code": "SR211", + "Ordering Code": "FH8065801620801", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937258": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2970M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931080", + "Spec Code": "SR1LF", + "Ordering Code": "CW8064701487001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "2000E", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929211", + "Spec Code": "SR17S", + "Ordering Code": "CL8064701528700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929211": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "2002E", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929208", + "Spec Code": "SR17P", + "Ordering Code": "CL8064701484102", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929208": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2957U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930548", + "Spec Code": "SR1DV", + "Ordering Code": "CL8064701570000", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2961Y", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2981U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2950M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930785", + "Spec Code": "SR1HF", + "Ordering Code": "CW8064701487007", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930785": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2955U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930547", + "Spec Code": "SR1DU", + "Ordering Code": "CL8064701567500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929023": "PCN\n |\n MDDS", + "930547": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2980U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930540", + "Spec Code": "SR1DM", + "Ordering Code": "CL8064701479801", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1005M", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924817", + "Spec Code": "SR103", + "Ordering Code": "AW8063801121200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1017U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924824", + "Spec Code": "SR10A", + "Ordering Code": "AV8063801130300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1019Y", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927663", + "Spec Code": "SR13W", + "Ordering Code": "AV8063801443502", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "927663": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1000M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924816", + "Spec Code": "SR102", + "Ordering Code": "AW8063801120200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924816": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1007U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924823", + "Spec Code": "SR109", + "Ordering Code": "AV8063801118700", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "1020E", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC on BGA only", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924832", + "Spec Code": "SR10D", + "Ordering Code": "AW8063801117700", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924832": "PCN\n |\n MDDS", + "922855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1020M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927649", + "Spec Code": "SR13U", + "Ordering Code": "AW8063801524200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "927649": "PCN\n |\n MDDS", + "924812": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1037U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924822", + "Spec Code": "SR108", + "Ordering Code": "AV8063801442900", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "1047UE", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "BGA1023 31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "924835", + "Spec Code": "SR10E", + "Ordering Code": "AV8063801116300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924835": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G470", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929505", + "Spec Code": "SR0S7", + "Ordering Code": "BX80623G470", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921189": "PCN", + "929505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "927UE", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105", + "Package Size": "BGA1023 31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Intel® My WiFi Technology": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "924842", + "Spec Code": "SR10F", + "Ordering Code": "AV8063801129600", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "887", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922540", + "Spec Code": "SR0VA", + "Ordering Code": "AV8062701085401", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B830", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918111", + "Spec Code": "SR0HR", + "Ordering Code": "FF8062700848702", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918111": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G465", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923614", + "Spec Code": "SR0S8", + "Ordering Code": "BXC80623G465", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921191": "PCN", + "923611": "PCN\n |\n MDDS", + "923614": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G550T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910588", + "Spec Code": "SR05V", + "Ordering Code": "CM8062301002309", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910588": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G555", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923613", + "Spec Code": "SR0RZ", + "Ordering Code": "BXC80623G555", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921173": "PCN", + "923612": "PCN\n |\n MDDS", + "923613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "807", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "920166", + "Spec Code": "SR0PW", + "Ordering Code": "AV8062701079702", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920166": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "877", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B820", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918110", + "Spec Code": "SR0HQ", + "Ordering Code": "FF8062700848602", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918110": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G540T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910660", + "Spec Code": "SR05L", + "Ordering Code": "CM8062301047004", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910660": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G550", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922826", + "Spec Code": "SR061", + "Ordering Code": "BX80623G550", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910560": "PCN", + "922823": "PCN\n |\n MDDS", + "922826": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "725C", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Use Conditions": "Communications", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1.5 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1284", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919924", + "Spec Code": "SR0NX", + "Ordering Code": "AV8062701147000", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919924": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "797", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "867", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B720", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.70 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B815", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918119", + "Spec Code": "SR0HZ", + "Ordering Code": "FF8062701159901", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G460", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919736", + "Spec Code": "SR0GR", + "Ordering Code": "BXC80623G460", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "917794": "PCN", + "919618": "PCN\n |\n MDDS", + "919736": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "807UE", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "1 MB Intel® Smart Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4.88 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100°C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "919712", + "Spec Code": "SR0NB", + "Ordering Code": "AV8062701188200", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919712": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B840", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916703", + "Spec Code": "SR0EN", + "Ordering Code": "FF8062700998301", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G440", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2012", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917154", + "Spec Code": "SR0BY", + "Ordering Code": "BX80623G440", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914611": "PCN", + "917150": "PCN\n |\n MDDS", + "917154": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G530", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916625", + "Spec Code": "SR05H", + "Ordering Code": "BXC80623G530", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910600": "PCN", + "916624": "PCN\n |\n MDDS", + "916625": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G530T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910650", + "Spec Code": "SR05K", + "Ordering Code": "CM8062301046904", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910650": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G540", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916627", + "Spec Code": "SR05J", + "Ordering Code": "BXC80623G540", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910601": "PCN", + "916626": "PCN\n |\n MDDS", + "916627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "787", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "827E", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914933", + "Spec Code": "SR0C6", + "Ordering Code": "AV8062701082300", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914933": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B710", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1.5 MB L3 Cache", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "857", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "847", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "912341", + "Spec Code": "SR08N", + "Ordering Code": "AV8062700852800", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "847E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914015", + "Spec Code": "SR0BU", + "Ordering Code": "AV8062700849902", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B800", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916711", + "Spec Code": "SR0EW", + "Ordering Code": "FF8062701142600", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916711": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "B810E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914004", + "Spec Code": "SR0BT", + "Ordering Code": "AV8062700849802", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B810", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912327", + "Spec Code": "SR088", + "Ordering Code": "FF8062700848800", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "925", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.30 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "TCASE": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907966", + "Spec Code": "SLBSP", + "Ordering Code": "CN80617005199AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "763", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "10 W", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E3500", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm X 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "909000", + "Spec Code": "SLGTY", + "Ordering Code": "BXC80571E3500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902693": "PCN\n |\n MDDS", + "908956": "PCN\n |\n MDDS", + "909000": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4600", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908609", + "Spec Code": "SLBZY", + "Ordering Code": "CP80617005307AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908609": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T3500", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "1 MB", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Instruction Set": "64-bit", + "MM#": "900561", + "Spec Code": "SLGJV", + "Ordering Code": "AW80577GG0451ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900561": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3400", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907980", + "Spec Code": "SLBUE", + "Ordering Code": "CN80617006039AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4500", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908002", + "Spec Code": "SLBUX", + "Ordering Code": "CP80617004803AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904407": "PCN\n |\n MDDS", + "908002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E3400", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "905045", + "Spec Code": "SLGTZ", + "Ordering Code": "BX80571E3400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902692": "PCN\n |\n MDDS", + "905045": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "P1053", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "0", + "# of QPI Links": "0", + "TDP": "30 W", + "Embedded Options Available": "Yes", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "64.4°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "907836", + "Spec Code": "SLBWN", + "Ordering Code": "AT80612004743AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907836": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4505", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908572", + "Spec Code": "SLBXG", + "Ordering Code": "CN80617004545AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908572": "PCN\n |\n MDDS", + "905471": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T3300", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3405", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "NO", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "908573", + "Spec Code": "SLBWX", + "Ordering Code": "CN80617006201AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908573": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "743", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "10 W", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "899748", + "Spec Code": "SLGEV", + "Ordering Code": "AV80585VG0131M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899748": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU2300", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB", + "Bus Speed": "800 MHz", + "TDP": "10 W", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "903879", + "Spec Code": "SLGYW", + "Ordering Code": "AV80577UG0091ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902121": "PCN\n |\n MDDS", + "903879": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E3200", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "904039", + "Spec Code": "SLGU5", + "Ordering Code": "BX80571E3200", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902701": "PCN\n |\n MDDS", + "904039": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E3300", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "904102", + "Spec Code": "SLGU4", + "Ordering Code": "BXC80571E3300", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902691": "PCN\n |\n MDDS", + "904040": "PCN\n |\n MDDS", + "904102": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T3100", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.00V-1.250V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PGA478, BGA479", + "TCASE": "105°C", + "Package Size": "35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902843", + "Spec Code": "SLGVS", + "Ordering Code": "AV80577NG0371M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899865": "PCN\n |\n MDDS", + "902843": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "573", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "10 W", + "VID Voltage Range": "0.80V-0.975V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "901266", + "Spec Code": "SLGMV", + "Ordering Code": "LE80537VE001512", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901266": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E1600", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903000", + "Spec Code": "SLAQY", + "Ordering Code": "BX80557E1600", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893847": "PCN\n |\n MDDS", + "903000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "900", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TCASE": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901978", + "Spec Code": "SLGLQ", + "Ordering Code": "AW80585NG0491MA", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T1600", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897849", + "Spec Code": "SLB6J", + "Ordering Code": "LF80537NF0281MN", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T1700", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.83 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897860", + "Spec Code": "SLB6H", + "Ordering Code": "LF80537NF0341MN", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897860": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E1500", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901374", + "Spec Code": "SLAQZ", + "Ordering Code": "BX80557E1500", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893846": "PCN\n |\n MDDS", + "901374": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "722", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "0.775V - 1.1V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899276", + "Spec Code": "SLGAN", + "Ordering Code": "AV80585VG0091MP", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899275": "PCN\n |\n MDDS", + "899276": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "450", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.0000V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891507", + "Spec Code": "SLAFZ", + "Ordering Code": "HH80557RG049512", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891507": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "723", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899274", + "Spec Code": "SLGAM", + "Ordering Code": "AV80585VG0091M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899273": "PCN\n |\n MDDS", + "899274": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "575", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.95-1.30V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897851", + "Spec Code": "SLB6M", + "Ordering Code": "LF80537NF0411M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "585", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.95-1.30V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897854", + "Spec Code": "SLB6L", + "Ordering Code": "LF80537NF0481M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897854": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E1400", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897802", + "Spec Code": "SLAR2", + "Ordering Code": "BX80557E1400", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893845": "PCN\n |\n MDDS", + "897802": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "570", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.26 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "888170", + "Spec Code": "SLA2C", + "Ordering Code": "LF80537NE0511M", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888170": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E1200", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "895727", + "Spec Code": "SLAQW", + "Ordering Code": "BX80557E1200", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893843": "PCN\n |\n MDDS", + "895727": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "560", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.13 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "896001", + "Spec Code": "SLA2D", + "Ordering Code": "BX80537560", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888168": "PCN\n |\n MDDS", + "896001": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "220", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "19 W", + "VID Voltage Range": "1.0000V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891173", + "Spec Code": "SLAF2", + "Ordering Code": "LE80557RE009512", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891173": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "523", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "930 MHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "0.85V-1.10V", + "Embedded Options Available": "No", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "540", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891511", + "Spec Code": "SLA2F", + "Ordering Code": "BX80537540", + "Shipping Media": "BOX", + "Stepping": "A3", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888169": "PCN\n |\n MDDS", + "891511": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "420", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.0000V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892951", + "Spec Code": "SL9XP", + "Ordering Code": "BX80557420R", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886892": "PCN\n |\n MDDS", + "890205": "PCN\n |\n MDDS", + "892951": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "430", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.80 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.0000V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890233", + "Spec Code": "SL9XN", + "Ordering Code": "BX80557430", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886891": "PCN\n |\n MDDS", + "890233": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "440", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.0000V-1.3375V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890201", + "Spec Code": "SL9XL", + "Ordering Code": "BX80557440", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886890": "PCN\n |\n MDDS", + "890201": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "530", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.73 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899899", + "Spec Code": "SLGFY", + "Ordering Code": "LE80537NE0301M", + "Shipping Media": "TRAY", + "Stepping": "G2", + "US HTS": "Varies By Product", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "885676": "PCN\n |\n MDDS", + "899871": "PCN\n |\n MDDS", + "899899": "PCN\n |\n MDDS", + "886156": "PCN\n |\n MDDS", + "889878": "PCN", + "891080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "530", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.73 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "27 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, PPGA478", + "TCASE": "100°C", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "893241", + "Spec Code": "SLA2G", + "Ordering Code": "BX80537530SR", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888167": "PCN\n |\n MDDS", + "893241": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.83 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "27 W", + "VID Voltage Range": "1.1125-1.25V", + "Embedded Options Available": "No", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "365", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "1.25V-1.325V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "882910", + "Spec Code": "SL9KJ", + "Ordering Code": "HH80552RE104512", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882910": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "520", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "887589", + "Spec Code": "SL9WT", + "Ordering Code": "BX80537520", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886157": "PCN\n |\n MDDS", + "886397": "PCN\n |\n MDDS", + "887589": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "27 W", + "VID Voltage Range": "1.1125-1.25V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884318", + "Spec Code": "SL9S3", + "Ordering Code": "LF80538KF0281M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "347", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.06 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "VID Voltage Range": "1.25V-1.325V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "C1=69.2°C; D0=64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888008", + "Spec Code": "SL9KJ", + "Ordering Code": "BX80552365", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882918": "PCN\n |\n MDDS", + "886844": "PCN\n |\n MDDS", + "886783": "PCN\n |\n MDDS", + "887273": "PCN\n |\n MDDS", + "888008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "360", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.46 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "1.25V-1.325V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885255", + "Spec Code": "SL9KK", + "Ordering Code": "BX80552360", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882915": "PCN\n |\n MDDS", + "885255": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "440", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "27 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.0V-1.3V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885115", + "Spec Code": "SL9KW", + "Ordering Code": "BX80538440", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "883490": "PCN\n |\n MDDS", + "885115": "PCN\n |\n MDDS", + "884036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "550", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.95V-1.30V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892700", + "Spec Code": "SLALD", + "Ordering Code": "LE80537NE0411M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "892324": "PCN\n |\n MDDS", + "892700": "PCN\n |\n MDDS", + "888166": "PCN\n |\n MDDS", + "892609": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "352", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "VID Voltage Range": "1.25V-1.325V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "69.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884448", + "Spec Code": "SL9KM", + "Ordering Code": "BX80552352", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882916": "PCN\n |\n MDDS", + "884448": "PCN\n |\n MDDS", + "878874": "PCN\n |\n MDDS", + "879372": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "356", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.33 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "VID Voltage Range": "1.25V-1.325V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "C1=69.2°C; D0=64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884469", + "Spec Code": "SL9KL", + "Ordering Code": "BX80552356", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882917": "PCN\n |\n MDDS", + "884469": "PCN\n |\n MDDS", + "878873": "PCN\n |\n MDDS", + "879371": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "423", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.06 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.85V-1.10V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883549", + "Spec Code": "SL9L7", + "Ordering Code": "LE80538VE0041ME", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8542310001", + "877058": "PCN\n |\n MDDS", + "883549": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "310", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.13 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "878053", + "Spec Code": "SL93R", + "Ordering Code": "BX80546RE2130C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "873551": "PCN\n |\n MDDS", + "874311": "PCN", + "873599": "PCN\n |\n MDDS", + "873600": "PCN", + "878051": "PCN\n |\n MDDS", + "878053": "PCN", + "873552": "PCN\n |\n MDDS", + "874307": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "355", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.33 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875357", + "Spec Code": "SL8HS", + "Ordering Code": "BX80547RE3330CN", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872475": "PCN\n |\n MDDS", + "875357": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "341", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "880683", + "Spec Code": "SL98X", + "Ordering Code": "HH80547RE077CN", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "880683": "PCN\n |\n MDDS", + "871404": "PCN\n |\n MDDS", + "871666": "PCN", + "871639": "PCN\n |\n MDDS", + "872460": "PCN\n |\n MDDS", + "875351": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "350", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873175", + "Spec Code": "SL8HQ", + "Ordering Code": "BX80546RE3200C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862366": "MDDS", + "862678": "PCN\n |\n MDDS", + "868820": "PCN", + "859160": "PCN\n |\n MDDS", + "871605": "PCN\n |\n MDDS", + "872505": "PCN\n |\n MDDS", + "873175": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "350J", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA478, PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "872301", + "Spec Code": "SL8MK", + "Ordering Code": "RH80536NC0131M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "863747": "PCN\n |\n MDDS", + "872301": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "351", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883004", + "Spec Code": "SL9BS", + "Ordering Code": "BX80547RE3200CN", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871406": "PCN\n |\n MDDS", + "871670": "PCN", + "880685": "PCN\n |\n MDDS", + "883004": "PCN", + "871644": "PCN\n |\n MDDS", + "872473": "PCN\n |\n MDDS", + "875356": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "370", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "21 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.004V-1.292V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478, H-PBGA479, H-PBGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "915905", + "Spec Code": "SLJ8R", + "Ordering Code": "RH80536NC0211M", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "872115": "PCN\n |\n MDDS", + "867120": "PCN\n |\n MDDS", + "868601": "PCN\n |\n MDDS", + "867115": "PCN\n |\n MDDS", + "872299": "PCN\n |\n MDDS", + "874326": "PCN\n |\n MDDS", + "867125": "PCN\n |\n MDDS", + "872126": "PCN\n |\n MDDS", + "915905": "PCN\n |\n MDDS", + "915867": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "373", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.876V-0.956V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "915871", + "Spec Code": "SLJ96", + "Ordering Code": "RJ80536VC001512", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "868320": "PCN\n |\n MDDS", + "915862": "PCN\n |\n MDDS", + "915871": "PCN\n |\n MDDS", + "868299": "PCN\n |\n MDDS", + "871728": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "325J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.53 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "866286", + "Spec Code": "SL7TL", + "Ordering Code": "BX80547RE2533C", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "866286": "PCN", + "863513": "PCN\n |\n MDDS", + "863520": "PCN", + "865456": "PCN", + "865470": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "330", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.66 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873170", + "Spec Code": "SL8HL", + "Ordering Code": "BX80546RE2667C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "859156": "PCN\n |\n MDDS", + "862398": "PCN", + "862681": "PCN\n |\n MDDS", + "868129": "PCN", + "857961": "PCN\n |\n MDDS", + "858864": "PCN", + "865453": "PCN", + "865467": "PCN\n |\n MDDS", + "872494": "PCN\n |\n MDDS", + "863903": "MDDS", + "863907": "PCN", + "862362": "PCN\n |\n MDDS", + "862385": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "330J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.66 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "866287", + "Spec Code": "SL7TM", + "Ordering Code": "BX80547RE2667C", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "863729": "PCN\n |\n MDDS", + "866287": "PCN", + "863730": "PCN\n |\n MDDS", + "863514": "PCN\n |\n MDDS", + "863521": "PCN", + "865457": "PCN", + "865471": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "335J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "866288", + "Spec Code": "SL7TN", + "Ordering Code": "BX80547RE2800C", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "863516": "PCN\n |\n MDDS", + "863522": "PCN", + "865458": "PCN", + "865472": "PCN\n |\n MDDS", + "863737": "PCN\n |\n MDDS", + "866288": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "340", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873174", + "Spec Code": "SL8HN", + "Ordering Code": "BX80546RE2933C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871603": "PCN\n |\n MDDS", + "872501": "PCN\n |\n MDDS", + "862775": "PCN\n |\n MDDS", + "863298": "PCN", + "863723": "PCN\n |\n MDDS", + "868132": "PCN", + "865461": "PCN", + "865474": "PCN\n |\n MDDS", + "863297": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "340J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478, PPGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "866291", + "Spec Code": "SL7TP", + "Ordering Code": "BX80547RE2933C", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "863517": "PCN\n |\n MDDS", + "863523": "PCN", + "863742": "PCN\n |\n MDDS", + "862800": "PCN\n |\n MDDS", + "863294": "PCN\n |\n MDDS", + "863741": "PCN\n |\n MDDS", + "866291": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "345", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.06 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873173", + "Spec Code": "SL8HP", + "Ordering Code": "BX80546RE3066C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872503": "PCN\n |\n MDDS", + "873173": "PCN", + "859159": "PCN\n |\n MDDS", + "862400": "PCN", + "862679": "PCN\n |\n MDDS", + "868133": "PCN", + "865462": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "345J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.06 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PPGA478, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "871604", + "Spec Code": "SL8HP", + "Ordering Code": "RK80546RE083256", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871604": "PCN\n |\n MDDS", + "863745": "PCN\n |\n MDDS", + "865460": "PCN", + "865477": "PCN\n |\n MDDS", + "863743": "PCN\n |\n MDDS", + "866289": "PCN", + "865475": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "315", + "Status": "Discontinued", + "Launch Date": "Q3'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.26 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "877970", + "Spec Code": "SL93Q", + "Ordering Code": "BX80546RE2267C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "868705": "PCN\n |\n MDDS", + "868730": "PCN", + "867539": "PCN\n |\n MDDS", + "868818": "PCN", + "865217": "PCN\n |\n MDDS", + "865447": "PCN", + "865505": "PCN", + "865510": "PCN\n |\n MDDS", + "871598": "PCN\n |\n MDDS", + "872491": "PCN\n |\n MDDS", + "873162": "PCN", + "877970": "PCN", + "865167": "PCN\n |\n MDDS", + "865448": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "335", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873171", + "Spec Code": "SL8HM", + "Ordering Code": "BX80546RE2800C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862363": "PCN\n |\n MDDS", + "862386": "PCN", + "863909": "PCN", + "872500": "PCN\n |\n MDDS", + "859157": "PCN\n |\n MDDS", + "862399": "PCN", + "862680": "PCN\n |\n MDDS", + "868131": "PCN", + "857964": "PCN\n |\n MDDS", + "858865": "PCN", + "865454": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "20.8 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "862086", + "Spec Code": "SL7MG", + "Ordering Code": "RH80532NC009256", + "Shipping Media": "TRAY", + "Stepping": "D4", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862086": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "849446", + "Spec Code": "SL6M4", + "Ordering Code": "RH80532NC017256", + "Shipping Media": "TRAY", + "Stepping": "C0", + "848211": "PCN\n |\n MDDS", + "849446": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.50 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "849447", + "Spec Code": "SL6M5", + "Ordering Code": "RH80532NC021256", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "848213": "PCN\n |\n MDDS", + "849447": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "848868", + "Spec Code": "SL6J2", + "Ordering Code": "RH80532NC025256", + "Shipping Media": "TRAY", + "Stepping": "C0", + "848868": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "315J", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.26 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "877956", + "Spec Code": "SL93Q", + "Ordering Code": "NE80546RE051256", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "877956": "PCN\n |\n MDDS", + "865473": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "320", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873165", + "Spec Code": "SL8HJ", + "Ordering Code": "BX80546RE2400C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "856951": "PCN\n |\n MDDS", + "871599": "PCN\n |\n MDDS", + "872492": "PCN\n |\n MDDS", + "873165": "PCN", + "867563": "PCN\n |\n MDDS", + "857959": "PCN\n |\n MDDS", + "858861": "PCN", + "865451": "PCN", + "865465": "PCN\n |\n MDDS", + "862353": "PCN\n |\n MDDS", + "862382": "PCN", + "861224": "PCN\n |\n MDDS", + "862395": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "325", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.53 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873166", + "Spec Code": "SL8HK", + "Ordering Code": "BX80546RE2533C", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862682": "PCN\n |\n MDDS", + "868128": "PCN", + "862228": "PCN\n |\n MDDS", + "863535": "PCN", + "863902": "MDDS", + "863906": "PCN", + "857960": "PCN\n |\n MDDS", + "858863": "PCN", + "865452": "PCN", + "865466": "PCN\n |\n MDDS", + "872493": "PCN\n |\n MDDS", + "873166": "PCN", + "862359": "PCN\n |\n MDDS", + "862384": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "326", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.53 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PLGA478, PPGA478", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Execute Disable Bit ‡": "Yes", + "MM#": "871600", + "Spec Code": "SL8HK", + "Ordering Code": "RK80546RE061256", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "863728": "PCN\n |\n MDDS", + "871600": "PCN\n |\n MDDS", + "863727": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "326", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.53 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775, PLGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883000", + "Spec Code": "SL98U", + "Ordering Code": "BX80547RE2533CN", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "880686": "PCN\n |\n MDDS", + "883000": "PCN", + "871611": "PCN\n |\n MDDS", + "872435": "PCN\n |\n MDDS", + "875345": "PCN\n |\n MDDS", + "871401": "PCN\n |\n MDDS", + "871660": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "330", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.66 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PPGA478", + "TCASE": "67°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "871601", + "Spec Code": "SL8HL", + "Ordering Code": "RK80546RE067256", + "Shipping Media": "TRAY", + "Stepping": "G1", + "871601": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "335", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "73 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PLGA478, PPGA478", + "TCASE": "67°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Execute Disable Bit ‡": "Yes", + "MM#": "871602", + "Spec Code": "SL8HM", + "Ordering Code": "RK80546RE072256", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "863904": "MDDS", + "871602": "PCN\n |\n MDDS", + "863740": "PCN\n |\n MDDS", + "865468": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Banias", + "Vertical Segment": "Mobile", + "Processor Number": "320", + "Status": "Discontinued", + "Launch Date": "Q2'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.30 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "24.5 W", + "VID Voltage Range": "1.356V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "H-PBGA479, H-PBGA478, PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "83 mm2", + "# of Processing Die Transistors": "77 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "870148", + "Spec Code": "SL8FM", + "Ordering Code": "LE80535NC013512", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "851232": "PCN\n |\n MDDS", + "870148": "PCN\n |\n MDDS", + "851247": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.50 GHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "61 W", + "VID Voltage Range": "1.315V-1.525V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "72°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "854945", + "Spec Code": "SL6ZY", + "Ordering Code": "BX80532RC2500B", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "853365": "PCN\n |\n MDDS", + "854794": "PCN", + "854945": "PCN", + "854307": "PCN", + "854328": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Banias", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "600 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "H-PBGA479", + "TJUNCTION": "100°C", + "Processing Die Size": "83 mm2", + "# of Processing Die Transistors": "77 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "MM#": "870152", + "Spec Code": "SL8FN", + "Ordering Code": "LE80535VC600512", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "870152": "PCN\n |\n MDDS", + "851754": "PCN", + "860721": "PCN\n |\n MDDS", + "855494": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "52.8 W", + "VID Voltage Range": "1.315V-1.525V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "68°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "857692", + "Spec Code": "SL6VR", + "Ordering Code": "BX80532RC2000B", + "Shipping Media": "BOX", + "Stepping": "DD", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "850317": "PCN\n |\n MDDS", + "850323": "PCN", + "851325": "PCN\n |\n MDDS", + "851442": "PCN", + "851346": "PCN\n |\n MDDS", + "853643": "PCN", + "852170": "PCN\n |\n MDDS", + "852175": "PCN", + "848780": "PCN\n |\n MDDS", + "850267": "PCN\n |\n MDDS", + "850668": "PCN", + "852181": "PCN\n |\n MDDS", + "857692": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.70 GHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "63.5 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "76°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "848188", + "Spec Code": "SL68C", + "Ordering Code": "BX80531P170G128", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "845960": "PCN\n |\n MDDS", + "845982": "PCN", + "845382": "PCN\n |\n MDDS", + "848188": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.20 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "31mm x 31mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "874151", + "Spec Code": "SL8SB", + "Ordering Code": "RH80532NC049256", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "853963": "PCN\n |\n MDDS", + "874151": "PCN\n |\n MDDS", + "853457": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "31mm x 31mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "854745", + "Spec Code": "SL75J", + "Ordering Code": "RH80532NC056256", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "854745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Tualatin", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q4'01", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "650 MHz", + "Cache": "256 KB", + "Bus Speed": "100 MHz", + "FSB Parity": "No", + "TDP": "8.3 W", + "VID Voltage Range": "1.1V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "H-PBGA479", + "TJUNCTION": "100°C", + "Processing Die Size": "80 mm2", + "# of Processing Die Transistors": "44 million", + "Instruction Set": "32-bit", + "MM#": "863865", + "Spec Code": "SL7UJ", + "Ordering Code": "NK80530VY650256", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "838348": "PCN", + "841956": "PCN", + "846833": "PCN", + "863865": "PCN\n |\n MDDS", + "846835": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "566 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "66 MHz", + "FSB Parity": "No", + "TDP": "19.2 W", + "VID Voltage Range": "1.50V, 1.70V, 1.75V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA370", + "TCASE": "90°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "28 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "835762", + "Spec Code": "SL5L5", + "Ordering Code": "RB80526RX566128", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "831175": "PCN", + "835762": "PCN\n |\n MDDS", + "831081": "PCN\n |\n MDDS", + "834960": "PCN", + "828473": "PCN\n |\n MDDS", + "827534": "PCN", + "827535": "PCN", + "827542": "PCN\n |\n MDDS", + "827533": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "733 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "66 MHz", + "FSB Parity": "No", + "TDP": "23.6 W", + "VID Voltage Range": "1.65V, 1.70V, 1.75V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA370, H-PBGA495", + "TCASE": "80°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "28 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "859275", + "Spec Code": "SL52Y", + "Ordering Code": "BX80526F733128", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "851626": "PCN", + "851625": "PCN", + "831082": "PCN\n |\n MDDS", + "833440": "PCN\n |\n MDDS", + "859275": "PCN", + "831580": "PCN", + "831586": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "850 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "100 MHz", + "FSB Parity": "No", + "TDP": "25.7 W", + "VID Voltage Range": "1.70V, 1.75V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA370", + "TCASE": "80°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "28 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "859276", + "Spec Code": "SL54Q", + "Ordering Code": "BX80526F850128", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "835111": "PCN\n |\n MDDS", + "839883": "PCN", + "835274": "PCN\n |\n MDDS", + "835275": "PCN", + "837849": "PCN\n |\n MDDS", + "841377": "PCN", + "838018": "PCN", + "838039": "PCN\n |\n MDDS", + "833470": "PCN\n |\n MDDS", + "859276": "PCN", + "834574": "PCN\n |\n MDDS", + "834589": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Mendocino", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q2'99", + "Lithography": "250 nm", + "Total Cores": "1", + "Processor Base Frequency": "433 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "66 MHz", + "FSB Parity": "No", + "TDP": "24.1 W", + "VID Voltage Range": "2.0V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA370, SEPP540", + "TCASE": "85°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "154 mm2", + "# of Processing Die Transistors": "19 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "822446", + "Spec Code": "SL3BS", + "Ordering Code": "BK80524P433128", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "821636": "PCN", + "821681": "PCN", + "821706": "PCN", + "822446": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Mendocino", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'99", + "Lithography": "250 nm", + "Total Cores": "1", + "Processor Base Frequency": "300 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "66 MHz", + "FSB Parity": "No", + "TDP": "17.8 W", + "VID Voltage Range": "2.0V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "SEPP242, PPGA370, SEPP540", + "TCASE": "85°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "154 mm2", + "# of Processing Die Transistors": "19 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "822135", + "Spec Code": "SL2WM", + "Ordering Code": "BX80524R300128", + "Shipping Media": "BOX", + "Stepping": "C1", + "820704": "PCN", + "818707": "PCN", + "822135": "PCN", + "819599": "PCN", + "819600": "PCN", + "820065": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Mendocino", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'99", + "Lithography": "250 nm", + "Total Cores": "1", + "Processor Base Frequency": "366 MHz", + "Cache": "128 KB L2 Cache", + "Bus Speed": "66 MHz", + "FSB Parity": "No", + "TDP": "21.7 W", + "VID Voltage Range": "2.0V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA370, SEPP242", + "TCASE": "85°C", + "Package Size": "49mm x 49mm", + "Processing Die Size": "154 mm2", + "# of Processing Die Transistors": "19 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "822449", + "Spec Code": "SL35S", + "Ordering Code": "BK80524P366128", + "Shipping Media": "BOX", + "820985": "PCN", + "820988": "PCN", + "820706": "PCN", + "820713": "PCN", + "821011": "PCN", + "822449": "PCN", + "820570": "PCN", + "821496": "PCN" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Alder Stream", + "Capacity": "3.2 TB", + "Status": "Launched", + "Launch Date": "Q4'21", + "Random Latency - Read (TYP)": "5 µs", + "Random Latency - Write (TYP)": "6 µs", + "Sequential Bandwidth - 100% Read (up to)": "7200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "6350 MB/s", + "Random Read (100% Span)": "1500000 IOPS (4K Blocks)", + "Latency - Read": "5 µs", + "Latency - Write": "6 µs", + "Power - Active": "25W", + "Power - Idle": "6.3W", + "Vibration - Operating": "2.17 Grms, (5-700 Hz), random", + "Vibration - Non-Operating": "3.13 Grms (5-800 Hz), random", + "Shock (Operating and Non-Operating)": "1,000 G, 0.5 ms, half sine", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "100 DWPD", + "Mean Time Between Failures (MTBF)": "2 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Components": "Intel(R) Optane(TM) Memory Media", + "Weight": "159g", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AK5A", + "Ordering Code": "SSDPF21Q032TB01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Capacity": "118 GB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Use Conditions": "Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, PC/Client/Tablet, Server/Enterprise, Workstation", + "Sequential Bandwidth - 100% Read (up to)": "1760 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1050 MB/s", + "Random Read (100% Span)": "410000 IOPS (4K Blocks)", + "Random Write (100% Span)": "243000 IOPS (4K Blocks)", + "Power - Active": "5.2 W", + "Power - Idle": "< 1.7 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1292 TBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AJ1G", + "Ordering Code": "SSDPEK1A118GA", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471706000", + "99AGG3": "PCN\n |\n MDDS", + "99AJ1G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Capacity": "58 GB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Use Conditions": "Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, PC/Client/Tablet, Server/Enterprise, Workstation", + "Sequential Bandwidth - 100% Read (up to)": "1870 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "890 MB/s", + "Random Read (100% Span)": "426000 IOPS (4K Blocks)", + "Random Write (100% Span)": "224000 IOPS (4K Blocks)", + "Power - Active": "4.1W", + "Power - Idle": "<1.6W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1500 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "635 TBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AJ1F", + "Ordering Code": "SSDPEK1A058GA", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471706000", + "99A9GX": "PCN\n |\n MDDS", + "99AJ1F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Alder Stream", + "Capacity": "1.6 TB", + "Status": "Launched", + "Launch Date": "Q4'20", + "Sequential Bandwidth - 100% Read (up to)": "7200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "6200 MB/s", + "Random Read (100% Span)": "1500000 IOPS (4K Blocks)", + "Random Write (100% Span)": "1500000 IOPS (4K Blocks)", + "Power - Active": "21W", + "Power - Idle": "4.7W", + "Vibration - Operating": "2.17 Grms, (5-700 Hz), random", + "Vibration - Non-Operating": "3.13 Grms (5-800 Hz), random", + "Shock (Operating and Non-Operating)": "1,000 G, 0.5 ms, half sine", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "100 DWPD", + "Mean Time Between Failures (MTBF)": "2 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Components": "Intel(R) Optane(TM) Memory Media", + "Weight": "140g", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A6PV", + "Ordering Code": "SSDPF21Q016TB01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A6PV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Alder Stream", + "Capacity": "400 GB", + "Status": "Launched", + "Launch Date": "Q4'20", + "Sequential Bandwidth - 100% Read (up to)": "7200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4800 MB/s", + "Random Read (100% Span)": "1500000 IOPS (4K Blocks)", + "Random Write (100% Span)": "1150000 IOPS (4K Blocks)", + "Power - Active": "14W", + "Power - Idle": "3.8W", + "Vibration - Operating": "2.17 Grms, (5-700 Hz), random", + "Vibration - Non-Operating": "3.13 Grms (5-800 Hz), random", + "Shock (Operating and Non-Operating)": "1,000 G, 0.5 ms, half sine", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "100 DWPD", + "Mean Time Between Failures (MTBF)": "2 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Components": "Intel(R) Optane(TM) Memory Media", + "Weight": "140g", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A6PN", + "Ordering Code": "SSDPF21Q400GB01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A6PN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Alder Stream", + "Capacity": "800 GB", + "Status": "Launched", + "Launch Date": "Q4'20", + "Sequential Bandwidth - 100% Read (up to)": "7200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "6100 MB/s", + "Random Read (100% Span)": "1500000 IOPS (4K Blocks)", + "Random Write (100% Span)": "1350000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "4.2W", + "Vibration - Operating": "2.17 Grms, (5-700 Hz), random", + "Vibration - Non-Operating": "3.13 Grms (5-800 Hz), random", + "Shock (Operating and Non-Operating)": "1,000 G, 0.5 ms, half sine", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "100 DWPD", + "Mean Time Between Failures (MTBF)": "2 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Components": "Intel(R) Optane(TM) Memory Media", + "Weight": "140g", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A6PT", + "Ordering Code": "SSDPF21Q800GB01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A6PT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "1.5 TB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2300 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "520000 IOPS (4K Blocks)", + "Power - Active": "25 W", + "Power - Idle": "<10 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "82.1 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Components": "3D XPoint Memory Media, Intel Controller and Firmware", + "Weight": "Up to 150g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 2x2 dual port, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "958885", + "Ordering Code": "SSDPD21K015TA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "958885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2400 MB/s", + "Random Read (100% Span)": "560000 IOPS (4K Blocks)", + "Random Write (100% Span)": "540000 IOPS (4K Blocks)", + "Power - Active": "20 W", + "Power - Idle": "<8 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "20.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Components": "3D XPoint Memory Media, Intel Controller and Firmware", + "Weight": "Up to 150g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 2x2 dual port, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "958883", + "Ordering Code": "SSDPD21K375GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "958883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "750 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2400 MB/s", + "Random Read (100% Span)": "560000 IOPS (4K Blocks)", + "Random Write (100% Span)": "540000 IOPS (4K Blocks)", + "Power - Active": "22 W", + "Power - Idle": "<8.5 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41.1 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Components": "3D XPoint Memory Media, Intel Controller and Firmware", + "Weight": "Up to 150g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 2x2 dual port, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "958884", + "Ordering Code": "SSDPD21K750GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "958884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "100 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Sequential Bandwidth - 100% Read (up to)": "2200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "250000 IOPS (4K Blocks)", + "Power - Active": "7 W", + "Power - Idle": "3 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "10.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 110mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "985978", + "Ordering Code": "SSDPEL1C100GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8471706000", + "964887": "PCN\n |\n MDDS", + "985978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "200 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Sequential Bandwidth - 100% Read (up to)": "2200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "400000 IOPS (4K Blocks)", + "Power - Active": "9 W", + "Power - Idle": "3 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "21.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 110mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "986008", + "Ordering Code": "SSDPEL1C200GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8471706000", + "964892": "PCN\n |\n MDDS", + "986008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "550000 IOPS (4K Blocks)", + "Power - Active": "11W", + "Power - Idle": "3W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 110mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "986009", + "Ordering Code": "SSDPEL1C375GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8471706000", + "958880": "PCN\n |\n MDDS", + "986009": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "1.5 TB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Vibration - Operating": "NA", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50 G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "164 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "1280 GiB memory capacity available under operating system", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "1.5 TB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Power - Active": "18", + "Power - Idle": "6", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "164 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "1280 GiB memory capacity available under operating system", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Power - Active": "18", + "Power - Idle": "6", + "Vibration - Operating": "NA", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50 G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "320 GiB memory capacity available under operating system", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Power - Active": "18W", + "Power - Idle": "6W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "320 GiB memory capacity available under operating system", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "750 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Power - Active": "18", + "Power - Idle": "6", + "Vibration - Operating": "NA", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50 G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "82 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "640 GiB memory capacity available under operating system", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "750 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Power - Active": "18", + "Power - Idle": "6", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "82 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Description": "640 GiB memory capacity available under operating system", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "100 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Sequential Bandwidth - 100% Read (up to)": "2200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "250000 IOPS (4K Blocks)", + "Power - Active": "7 W", + "Power - Idle": "3 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "10.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "975993", + "Ordering Code": "SSDPE21K100GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "975993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "1.5 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "550000 IOPS (4K Blocks)", + "Power - Active": "18", + "Power - Idle": "7", + "Vibration - Operating": "N/A", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "164 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "956989", + "Ordering Code": "SSDPED1K015TA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "956989": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "1.5 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "550000 IOPS (4K Blocks)", + "Power - Active": "18", + "Power - Idle": "7", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "164 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "956980", + "Ordering Code": "SSDPE21K015TA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "956980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "750 GB", + "Status": "Launched", + "Launch Date": "Q4'17", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "550000 IOPS (4K Blocks)", + "Power - Active": "18 W", + "Power - Idle": "6 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41.0 PBW (30DWPD), 82.0 PBW (60DWPD)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "985977", + "Ordering Code": "SSDPE21M750GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "956965": "PCN\n |\n MDDS", + "985977": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "750 GB", + "Status": "Launched", + "Launch Date": "Q4'17", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "550000 IOPS (4K Blocks)", + "Power - Active": "18", + "Power - Idle": "6", + "Vibration - Operating": "N/A", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50 G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "41.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "956982", + "Ordering Code": "SSDPED1K750GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "956982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Launched", + "Launch Date": "Q3'17", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "500000 IOPS (4K Blocks)", + "Power - Active": "18 W", + "Power - Idle": "5 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec, half sine", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "20.5 PBW (30DWPD), 41.0 PBW (60DWPD)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "985975", + "Ordering Code": "SSDPE21M375GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "953030": "PCN\n |\n MDDS", + "985975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ DC SSD Series", + "Code Name": "Products formerly Cold Stream", + "Capacity": "375 GB", + "Status": "Launched", + "Launch Date": "Q1'17", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "500000 IOPS (4K Blocks)", + "Power - Active": "18", + "Power - Idle": "5", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "50 G, 170 in/s, trapezoidal", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "20.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "953028", + "Ordering Code": "SSDPED1K375GA01", + "ECCN": "5A992C", + "CCATS": "G149950", + "US HTS": "8523510000", + "953028": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D7-P5620 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "1.6 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "5300 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1900 MB/s", + "Random Read (100% Span)": "700000 IOPS (4K Blocks)", + "Random Write (100% Span)": "200000 IOPS (4K Blocks)", + "Power - Active": "13W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "8.7 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AV74", + "Ordering Code": "SSDPF2KE016T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5620 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "12.8 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "7100 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3700 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "374000 IOPS (4K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "65.4 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AV4A", + "Ordering Code": "SSDPF2KE128T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5620 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "3.2 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6700 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3600 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "341000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "17.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AV75", + "Ordering Code": "SSDPF2KE032T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5620 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "6.4 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "7100 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4200 MB/s", + "Random Read (100% Span)": "1100000 IOPS (4K Blocks)", + "Random Write (100% Span)": "390000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "35.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AH32", + "Ordering Code": "SSDPF2KE064T1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5600 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "1.6 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "16μs", + "Sequential Bandwidth - 100% Read (up to)": "3500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1700 MB/s", + "Random Read (100% Span)": "400000 IOPS (4K Blocks)", + "Random Write (100% Span)": "118000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 8.8PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "142g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5600 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "3.2 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "9μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "12μs", + "Random Latency - Write (TYP)": "14μs", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3500 MB/s", + "Random Read (100% Span)": "780000 IOPS (4K Blocks)", + "Random Write (100% Span)": "230000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 17.5PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "146g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5600 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "6.4 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "9μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "12μs", + "Random Latency - Write (TYP)": "14μs", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4300 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "260000 IOPS (4K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 35.0PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "156g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "5300 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1900 MB/s", + "Random Read (100% Span)": "700000 IOPS (4K Blocks)", + "Random Write (100% Span)": "114000 IOPS (4K Blocks)", + "Power - Active": "13W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "3.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "5300 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1900 MB/s", + "Random Read (100% Span)": "706000 IOPS (4K Blocks)", + "Random Write (100% Span)": "114000 IOPS (4K Blocks)", + "Power - Active": "13W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "3.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "84g +/- 5g", + "Form Factor": "E1.S 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRL", + "Ordering Code": "SSDPFVKX019T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "5300 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1900 MB/s", + "Random Read (100% Span)": "706000 IOPS (4K Blocks)", + "Random Write (100% Span)": "114000 IOPS (4K Blocks)", + "Power - Active": "13W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "3.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "72g +/- 5g", + "Form Factor": "E1.S 9.5mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRG", + "Ordering Code": "SSDPFUKX019T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "15.36 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "20μs", + "Sequential Bandwidth - 100% Read (up to)": "7100 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3700 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "200000 IOPS (4K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "28.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99ATF1", + "Ordering Code": "SSDPF2KX153T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6700 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3600 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "200000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "7.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3400 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "147000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "7.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "84g +/- 5g", + "Form Factor": "E1.S 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRM", + "Ordering Code": "SSDPFVKX038T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3400 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "147000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "7.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "72g +/- 5g", + "Form Factor": "E1.S 9.5mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRJ", + "Ordering Code": "SSDPFUKX038T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "7100 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4200 MB/s", + "Random Read (100% Span)": "1100000 IOPS (4K Blocks)", + "Random Write (100% Span)": "220000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "14.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "165g +/- 5g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4200 MB/s", + "Random Read (100% Span)": "1100000 IOPS (4K Blocks)", + "Random Write (100% Span)": "220000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "14.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "84g +/- 5g", + "Form Factor": "E1.S 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRN", + "Ordering Code": "SSDPFVKX076T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5520 Series", + "Code Name": "Products formerly Arbordale Plus Refresh Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "75μs", + "Sequential Latency - Write (TYP)": "13μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "6600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4200 MB/s", + "Random Read (100% Span)": "1100000 IOPS (4K Blocks)", + "Random Write (100% Span)": "220000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "14.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "72g +/- 5g", + "Form Factor": "E1.S 9.5mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99AZRK", + "Ordering Code": "SSDPFUKX076T1OS", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D7-P5510 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10 µs (4K Blocks)", + "Random Latency - Read (TYP)": "82 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "13 µs (4K Blocks)", + "Random Latency - Write (TYP)": "15 µs (4K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "6500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3400 MB/s", + "Random Read (100% Span)": "700000 IOPS (4K Blocks)", + "Random Write (100% Span)": "170000 IOPS (4K Blocks)", + "Power - Active": "<15W", + "Power - Idle": "<5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 7.0PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "138g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99A5DP", + "Ordering Code": "SSDPF2KX038TZ01", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99A5CZ": "PCN", + "99A5DP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D7-P5510 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10 µs (4K Blocks)", + "Random Latency - Read (TYP)": "84 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "13 µs (4K Blocks)", + "Random Latency - Write (TYP)": "16 µs (4K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4194 MB/s", + "Random Read (100% Span)": "930000 IOPS (4K Blocks)", + "Random Write (100% Span)": "190000 IOPS (4K Blocks)", + "Power - Active": "<18W", + "Power - Idle": "<5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 14.0PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "138g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99A5DR", + "Ordering Code": "SSDPF2KX076TZ01", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99A5D1": "PCN", + "99A5DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D7-P5500 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "12μs", + "Random Latency - Write (TYP)": "22μs", + "Sequential Bandwidth - 100% Read (up to)": "3500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1700 MB/s", + "Random Read (100% Span)": "400000 IOPS (4K Blocks)", + "Random Write (100% Span)": "59000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 3.5PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "142g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5500 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "12μs", + "Random Latency - Write (TYP)": "17μs", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3500 MB/s", + "Random Read (100% Span)": "780000 IOPS (4K Blocks)", + "Random Write (100% Span)": "118000 IOPS (4K Blocks)", + "Power - Active": "18W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 7.0PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "146g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D7-P5500 Series", + "Code Name": "Products formerly Arbordale Plus", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography Type": "96-Layer TLC 3D NAND", + "Sequential Latency - Read (TYP)": "10μs", + "Random Latency - Read (TYP)": "78μs", + "Sequential Latency - Write (TYP)": "12μs", + "Random Latency - Write (TYP)": "15μs", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "4300 MB/s", + "Random Read (100% Span)": "1000000 IOPS (4K Blocks)", + "Random Write (100% Span)": "130000 IOPS (4K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 14.0PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "156g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes" + }, + { + "Product Collection": "Intel® SSD D5-P5530 Series", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography Type": "128L TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10 µs (4K Blocks)", + "Random Latency - Read (TYP)": "65 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "13 µs (4K Blocks)", + "Random Latency - Write (TYP)": "16 µs (4K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "6500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "100000 IOPS (4K Blocks)", + "Power - Active": "<13W", + "Power - Idle": "<5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 3.5PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "148g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99C18Z", + "Ordering Code": "SSDPF2KX019XZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D5-P5530 Series", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography Type": "128L TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10 µs (4K Blocks)", + "Random Latency - Read (TYP)": "65 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "13 µs (4K Blocks)", + "Random Latency - Write (TYP)": "16 µs (4K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "6500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3500 MB/s", + "Random Read (100% Span)": "875000 IOPS (4K Blocks)", + "Random Write (100% Span)": "100000 IOPS (4K Blocks)", + "Power - Active": "<15W", + "Power - Idle": "<5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 6.5PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "157g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99C190", + "Ordering Code": "SSDPF2KX038XZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D5-P5530 Series", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography Type": "128L TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "10 µs (4K Blocks)", + "Random Latency - Read (TYP)": "65 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "13 µs (4K Blocks)", + "Random Latency - Write (TYP)": "16 µs (4K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "5500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1600 MB/s", + "Random Read (100% Span)": "300000 IOPS (4K Blocks)", + "Random Write (100% Span)": "75000 IOPS (4K Blocks)", + "Power - Active": "<12W", + "Power - Idle": "<5W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "Up to 1.7PBW (JESD219 workload)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "148g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99C18X", + "Ordering Code": "SSDPF2KX960HZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000" + }, + { + "Product Collection": "Intel® SSD D5 P5316 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "15.36 TB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography Type": "144L QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "32 µs (64K Blocks)", + "Random Latency - Read (TYP)": "120 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "30 µs (64K Blocks)", + "Random Latency - Write (TYP)": "160 µs (64K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3200 MB/s", + "Random Read (100% Span)": "800000 IOPS (4K Blocks)", + "Random Write (100% Span)": "399 MB/s (64K Blocks)", + "Power - Active": "25W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "10.78PBW(64K Random), 51.85PBW(64K Sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99AA1N", + "Ordering Code": "SSDPF2NV153TZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99AA1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D5 P5316 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "15.36 TB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography Type": "144L QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "32 µs (64K Blocks)", + "Random Latency - Read (TYP)": "111 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "31 µs (64K Blocks)", + "Random Latency - Write (TYP)": "160 µs (64K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3200 MB/s", + "Random Read (100% Span)": "800000 IOPS (4K Blocks)", + "Random Write (100% Span)": "399 MB/s (64K Blocks)", + "Power - Active": "25W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "10.78PBW(64K Random), 51.85PBW(64K Sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "E1.L", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99AA1T", + "Ordering Code": "SSDPFWNV153TZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99AA1T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D5 P5316 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "30.72 TB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography Type": "144L QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "32 µs (64K Blocks)", + "Random Latency - Read (TYP)": "120 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "30 µs (64K Blocks)", + "Random Latency - Write (TYP)": "120 µs (64K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3600 MB/s", + "Random Read (100% Span)": "800000 IOPS (4K Blocks)", + "Random Write (100% Span)": "510 MB/s (64K Blocks)", + "Power - Active": "25W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "22.93PBW(64K Random), 104.55PBW(64K Sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 15mm", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99AA1P", + "Ordering Code": "SSDPF2NV307TZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99AA1P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D5 P5316 Series", + "Code Name": "Products formerly Arbordale Plus Refresh", + "Capacity": "30.72 TB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography Type": "144L QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "31 µs (64K Blocks)", + "Random Latency - Read (TYP)": "112 µs (4K Blocks)", + "Sequential Latency - Write (TYP)": "30 µs (64K Blocks)", + "Random Latency - Write (TYP)": "120 µs (64K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "7000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "3600 MB/s", + "Random Read (100% Span)": "800000 IOPS (4K Blocks)", + "Random Write (100% Span)": "510 MB/s (64K Blocks)", + "Power - Active": "25W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "22.93PBW(64K Random), 104.55PBW(64K Sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "E1.L", + "Interface": "PCIe 4.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "99AA1V", + "Ordering Code": "SSDPFWNV307TZN1", + "ECCN": "5A992C", + "CCATS": "G162706L1", + "US HTS": "8523510000", + "99AA1V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D5-P4420 Series", + "Code Name": "Products formerly Cliffdale Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography Type": "64-Layer QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "3200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1000 MB/s", + "Random Read (100% Span)": "427000 IOPS (4K Blocks)", + "Random Write (100% Span)": "36000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5.6PBW(random), 24.6PBW(sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Description": "World's highest endurance NVMe QLC SSD. Intel SSD D5-P4420 built on 64-layers, QLC Intel 3D NAND low cost media and high capacities for maximum TCO vs HDDs. When coupled with Optance also replace TLC.", + "Weight": "125g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "999DXN", + "Ordering Code": "SSDPE2NU076T801", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "999DXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D5-P4326 Series", + "Code Name": "Products formerly Cliffdale Refresh", + "Capacity": "15.36 TB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography Type": "64-Layer QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Random Latency - Read (TYP)": "135 µs (4K Blocks)", + "Random Latency - Write (TYP)": "60 µs (16K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "3200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1600 MB/s", + "Random Read (100% Span)": "580000 IOPS (4K Blocks)", + "Random Write (100% Span)": "245 MB/s (16K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5PBW(random), 24.6PBW(sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "134g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D5-P4326 Series", + "Code Name": "Products formerly Cliffdale Refresh", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography Type": "64-Layer QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Random Latency - Read (TYP)": "135 µs (4K Blocks)", + "Random Latency - Write (TYP)": "60 µs (16K Blocks)", + "Sequential Bandwidth - 100% Read (up to)": "3200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1600 MB/s", + "Random Read (100% Span)": "580000 IOPS (4K Blocks)", + "Random Write (100% Span)": "245 MB/s (16K Blocks)", + "Power - Active": "20W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "15°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "15 °C", + "Endurance Rating (Lifetime Writes)": "5PBW(random), 24.6PBW(sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "215g", + "Form Factor": "E1.L", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D5-P4320 Series", + "Code Name": "Products formerly Cliffdale Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer QLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "3200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1000 MB/s", + "Random Read (100% Span)": "427000 IOPS (4K Blocks)", + "Random Write (100% Span)": "36000 IOPS (4K Blocks)", + "Power - Active": "15W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "2.8PBW(random), 12.3PBW(sequential)", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Weight": "125g", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No", + "MM#": "979157", + "Ordering Code": "SSDPE2NV076T801", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "979157": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4620 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "37μs", + "Random Latency - Read (TYP)": "104μs", + "Sequential Latency - Write (TYP)": "38μs", + "Random Latency - Write (TYP)": "45μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "91000 IOPS (4K Blocks)", + "Random Write (100% Span)": "53000 IOPS (4K Blocks)", + "Power - Active": "3.3W", + "Power - Idle": "1.2W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "14.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0DA", + "Ordering Code": "SSDSC2KG019TZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4620 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "104μs", + "Sequential Latency - Write (TYP)": "38μs", + "Random Latency - Write (TYP)": "45μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "91000 IOPS (4K Blocks)", + "Random Write (100% Span)": "60000 IOPS (4K Blocks)", + "Power - Active": "3.9W", + "Power - Idle": "1.3W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "35.1 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0DC", + "Ordering Code": "SSDSC2KG038TZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0DC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4620 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "103μs", + "Sequential Latency - Write (TYP)": "36μs", + "Random Latency - Write (TYP)": "43μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Random Read (100% Span)": "85000 IOPS (4K Blocks)", + "Random Write (100% Span)": "48000 IOPS (4K Blocks)", + "Power - Active": "2.9W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "4.2 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0D8", + "Ordering Code": "SSDSC2KG480GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0D8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4620 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "37μs", + "Random Latency - Read (TYP)": "103μs", + "Sequential Latency - Write (TYP)": "37μs", + "Random Latency - Write (TYP)": "45μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "90000 IOPS (4K Blocks)", + "Random Write (100% Span)": "54000 IOPS (4K Blocks)", + "Power - Active": "3.2W", + "Power - Idle": "1.3W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "7.1 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0D9", + "Ordering Code": "SSDSC2KG960GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0D9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "90000 IOPS (4K Blocks)", + "Random Write (100% Span)": "35000 IOPS (4K Blocks)", + "Power - Active": "4.6W", + "Power - Idle": "1.6W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "23.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "97000 IOPS (4K Blocks)", + "Random Write (100% Span)": "46500 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "9.4 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "240 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "320 MB/s", + "Random Read (100% Span)": "92000 IOPS (4K Blocks)", + "Random Write (100% Span)": "28000 IOPS (4K Blocks)", + "Power - Active": "2.4W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1.6 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "96000 IOPS (4K Blocks)", + "Random Write (100% Span)": "42000 IOPS (4K Blocks)", + "Power - Active": "3.7W", + "Power - Idle": "1.1W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "15.2 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "96000 IOPS (4K Blocks)", + "Random Write (100% Span)": "44500 IOPS (4K Blocks)", + "Power - Active": "3.1W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "3.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4610 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "96000 IOPS (4K Blocks)", + "Random Write (100% Span)": "51000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5.8 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "37μs", + "Random Latency - Read (TYP)": "104μs", + "Sequential Latency - Write (TYP)": "38μs", + "Random Latency - Write (TYP)": "54μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "91000 IOPS (4K Blocks)", + "Random Write (100% Span)": "38000 IOPS (4K Blocks)", + "Power - Active": "3.1W", + "Power - Idle": "1.1W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "8.8 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0CP", + "Ordering Code": "SSDSC2KB019TZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0CP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "240 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "102μs", + "Sequential Latency - Write (TYP)": "37μs", + "Random Latency - Write (TYP)": "61μs", + "Sequential Bandwidth - 100% Read (up to)": "470 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "233 MB/s", + "Random Read (100% Span)": "44000 IOPS (4K Blocks)", + "Random Write (100% Span)": "15500 IOPS (4K Blocks)", + "Power - Active": "2.3W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0AA", + "Ordering Code": "SSDSC2KB240GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0AA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "240 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "102μs", + "Sequential Latency - Write (TYP)": "36μs", + "Random Latency - Write (TYP)": "63μs", + "Sequential Bandwidth - 100% Read (up to)": "400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "233 MB/s", + "Random Read (100% Span)": "42000 IOPS (4K Blocks)", + "Random Write (100% Span)": "14500 IOPS (4K Blocks)", + "Power - Active": "2.1W", + "Power - Idle": "0.9W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1.0 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0DD", + "Ordering Code": "SSDSCKKB240GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8471706000", + "99A0DD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "37μs", + "Random Latency - Read (TYP)": "104μs", + "Sequential Latency - Write (TYP)": "40μs", + "Random Latency - Write (TYP)": "57μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "92000 IOPS (4K Blocks)", + "Random Write (100% Span)": "31000 IOPS (4K Blocks)", + "Power - Active": "3.7W", + "Power - Idle": "1.2W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "15.3 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0D6", + "Ordering Code": "SSDSC2KB038TZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0D6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "102μs", + "Sequential Latency - Write (TYP)": "36μs", + "Random Latency - Write (TYP)": "48μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "460 MB/s", + "Random Read (100% Span)": "79000 IOPS (4K Blocks)", + "Random Write (100% Span)": "30000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "1.2W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "2.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0AD", + "Ordering Code": "SSDSC2KB480GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0AD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "102μs", + "Sequential Latency - Write (TYP)": "36μs", + "Random Latency - Write (TYP)": "43μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Random Read (100% Span)": "85000 IOPS (4K Blocks)", + "Random Write (100% Span)": "48000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "0.9W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "4.1 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0DF", + "Ordering Code": "SSDSCKKB480GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8471706000", + "99A0DF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "37μs", + "Random Latency - Read (TYP)": "103μs", + "Sequential Latency - Write (TYP)": "37μs", + "Random Latency - Write (TYP)": "57μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "86000 IOPS (4K Blocks)", + "Random Write (100% Span)": "30000 IOPS (4K Blocks)", + "Power - Active": "4.3W", + "Power - Idle": "1.4W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "36.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0D7", + "Ordering Code": "SSDSC2KB076TZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0D7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4520 Series", + "Code Name": "Products formerly Youngsville Refresh Refresh", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography Type": "144L TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Latency - Read (TYP)": "36μs", + "Random Latency - Read (TYP)": "102μs", + "Sequential Latency - Write (TYP)": "36μs", + "Random Latency - Write (TYP)": "49μs", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "90000 IOPS (4K Blocks)", + "Random Write (100% Span)": "43000 IOPS (4K Blocks)", + "Power - Active": "3.1W", + "Power - Idle": "1.1W", + "Vibration - Operating": "2.17 GRMS (5 - 700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5 - 800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5.3 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "MM#": "99A0AF", + "Ordering Code": "SSDSC2KB960GZ01", + "ECCN": "5A992C", + "CCATS": "G162706", + "US HTS": "8523510000", + "99A0AF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "7.68 TB", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "89500 IOPS (4K Blocks)", + "Random Write (100% Span)": "21000 IOPS (4K Blocks)", + "Power - Active": "4.6W", + "Power - Idle": "1.7W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "12.3 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "240 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "555 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "275 MB/s", + "Random Read (100% Span)": "87000 IOPS (4K Blocks)", + "Random Write (100% Span)": "16000 IOPS (4K Blocks)", + "Power - Active": "2.2W", + "Power - Idle": "0.8W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "0.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "555 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "480 MB/s", + "Random Read (100% Span)": "91000 IOPS (4K Blocks)", + "Random Write (100% Span)": "18000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "0.8W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1.2 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "555 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "91000 IOPS (4K Blocks)", + "Random Write (100% Span)": "23000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "0.9W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "2.3 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "1.92 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "97000 IOPS (4K Blocks)", + "Random Write (100% Span)": "35500 IOPS (4K Blocks)", + "Power - Active": "3.2W", + "Power - Idle": "1.1W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "6.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "240 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "280 MB/s", + "Random Read (100% Span)": "90000 IOPS (4K Blocks)", + "Random Write (100% Span)": "16000 IOPS (4K Blocks)", + "Power - Active": "2.4W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "0.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "3.84 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "97000 IOPS (4K Blocks)", + "Random Write (100% Span)": "32000 IOPS (4K Blocks)", + "Power - Active": "3.6W", + "Power - Idle": "1.1W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "9.9 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "490 MB/s", + "Random Read (100% Span)": "95000 IOPS (4K Blocks)", + "Random Write (100% Span)": "18000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "1.2 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD D3-S4510 Series", + "Code Name": "Products formerly Youngsville Refresh", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer TLC 3D NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "560 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "510 MB/s", + "Random Read (100% Span)": "95000 IOPS (4K Blocks)", + "Random Write (100% Span)": "36000 IOPS (4K Blocks)", + "Power - Active": "3.0W", + "Power - Idle": "1.0W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "3.5 PBW", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD DC P4101 Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "1 TB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer 3D TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "660 MB/s", + "Random Read (100% Span)": "275000 IOPS (4K Blocks)", + "Random Write (100% Span)": "16000 IOPS (4K Blocks)", + "Power - Active": "6.0W", + "Power - Idle": "0.7W", + "Vibration - Operating": "2.17GRMS", + "Vibration - Non-Operating": "3.13GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Weight": "<10g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD DC P4101 Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "128 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer 3D TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "1150 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "140 MB/s", + "Random Read (100% Span)": "60000 IOPS (4K Blocks)", + "Random Write (100% Span)": "2200 IOPS (4K Blocks)", + "Power - Active": "3.5W", + "Power - Idle": "0.7W", + "Vibration - Operating": "2.15GRMS", + "Vibration - Non-Operating": "3.13GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Weight": "<10g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD DC P4101 Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "2 TB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer 3D TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "840 MB/s", + "Random Read (100% Span)": "275000 IOPS (4K Blocks)", + "Random Write (100% Span)": "16000 IOPS (4K Blocks)", + "Power - Active": "7W", + "Power - Idle": "0.7W", + "Vibration - Operating": "2.17GRMS", + "Vibration - Non-Operating": "3.13GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Weight": "<10g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD DC P4101 Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "256 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer 3D TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "2200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "280 MB/s", + "Random Read (100% Span)": "125000 IOPS (4K Blocks)", + "Random Write (100% Span)": "5700 IOPS (4K Blocks)", + "Power - Active": "4.0W", + "Power - Idle": "0.7W", + "Vibration - Operating": "2.17GRMS", + "Vibration - Non-Operating": "3.13GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Weight": "<10g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD DC P4101 Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "512 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "64-Layer 3D TLC NAND", + "Use Conditions": "Server/Enterprise", + "Sequential Bandwidth - 100% Read (up to)": "2550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "550 MB/s", + "Random Read (100% Span)": "219000 IOPS (4K Blocks)", + "Random Write (100% Span)": "11400 IOPS (4K Blocks)", + "Power - Active": "5.0W", + "Power - Idle": "0.7W", + "Vibration - Operating": "2.17GRMS", + "Vibration - Non-Operating": "3.13GRMS", + "Shock (Operating and Non-Operating)": "1000 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Weight": "<10g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Start Technology": "No", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "380 GB", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "9.35W", + "Power - Idle": "2.52W", + "Vibration - Operating": "2.17 Grms (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "6.93PB written", + "Mean Time Between Failures (MTBF)": "1.6 Million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "12.5 grams", + "Form Factor": "M.2 22 x 110mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "1.5 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "18.6W", + "Power - Idle": "6.2W", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "50 G (11ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "27.37 PB Written", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 230 grams", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "1.5 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "18.6W", + "Power - Idle": "6.2W", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1000 G (0.5ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "27.37 PB Written", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 140 grams", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "16.4W", + "Power - Idle": "6W", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "17.52 PB Written", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Datasheet": "...", + "Product Brief": "View now", + "Weight": "Up to 140 grams", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "960 GB", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "16.4W", + "Power - Idle": "6W", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "50 G (11ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "17.52 PB Written", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 230 grams", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "480 GB", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2600 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2200 MB/s", + "Power - Active": "12.8W", + "Power - Idle": "3.3W", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1000G (0.5ms)", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "8.76 PB Written", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 140 grams", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "280 GB", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "500000 IOPS (4K Blocks)", + "Power - Active": "14W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "50 G (11ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5.11 PB written", + "Mean Time Between Failures (MTBF)": "1,600,000 hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 230 grams", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "480 GB", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "500000 IOPS (4K Blocks)", + "Power - Active": "14W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "50 G (11ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "8.76 PB Written", + "Mean Time Between Failures (MTBF)": "1,600,000 hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 230 grams", + "Form Factor": "HHHL (CEM3.0)", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 9 Series", + "Code Name": "Products formerly Mansion Beach", + "Capacity": "280 GB", + "Status": "Launched", + "Launch Date": "Q4'17", + "Lithography Type": "3D XPoint(TM)", + "Sequential Bandwidth - 100% Read (up to)": "2500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Random Read (100% Span)": "550000 IOPS (4K Blocks)", + "Random Write (100% Span)": "500000 IOPS (4K Blocks)", + "Power - Active": "14W", + "Power - Idle": "5W", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1,000 G (0.5 ms)", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "5.11 PB Written", + "Mean Time Between Failures (MTBF)": "1,600,000 hours", + "Uncorrectable Bit Error Rate (UBER)": "1 Sector per 10^17 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "Up to 140 grams", + "Form Factor": "U.2 15mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit" + }, + { + "Product Collection": "Intel® Optane™ SSD 8 Series", + "Code Name": "Products formerly Brighton Beach", + "Capacity": "118 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "1450 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "640 MB/s", + "Random Read (100% Span)": "250000 IOPS (4K Blocks)", + "Random Write (100% Span)": "145000 IOPS (4K Blocks)", + "Power - Active": "3.75W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Description": "The Intel® Optane™ SSD 800P Series packs the performance of Intel® Optane™ technology in the slim M.2 form factor for storage in mobile and desktop systems.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® Optane™ SSD 8 Series", + "Code Name": "Products formerly Brighton Beach", + "Capacity": "58 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "1450 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "640 MB/s", + "Random Read (100% Span)": "250000 IOPS (4K Blocks)", + "Random Write (100% Span)": "145000 IOPS (4K Blocks)", + "Power - Active": "3.75W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Description": "The Intel® Optane™ SSD 800P Series packs the performance of Intel® Optane™ technology in the slim M.2 form factor for storage in mobile and desktop systems.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® SSD 760p Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "1.024 TB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "3230 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1625 MB/s", + "Power - Active": "60 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "576 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 760p Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "2.048 TB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "3230 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1625 MB/s", + "Power - Active": "70 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "576 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 760p Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "128 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "1640 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "650 MB/s", + "Power - Active": "50 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "72 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 760p Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "256 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "3210 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1315 MB/s", + "Power - Active": "50 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "144 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 760p Series", + "Code Name": "Products formerly Harris Harbor", + "Capacity": "512 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "3230 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1625 MB/s", + "Power - Active": "50 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "288 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.1 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 670p Series", + "Code Name": "Products formerly Keystone Harbor", + "Capacity": "1 TB", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography Type": "3D4 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "3500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2500 MB/s", + "Power - Active": "80 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec Operating---1,500 G (Max) at 0.5 msec non-operating", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "370 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No", + "MM#": "99A39P", + "Ordering Code": "SSDPEKNU010TZX1", + "ECCN": "5A992CN3", + "CCATS": "G182471", + "US HTS": "8471706000", + "99A39P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD 670p Series", + "Code Name": "Products formerly Keystone Harbor", + "Capacity": "2 TB", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography Type": "3D4 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "3500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2700 MB/s", + "Power - Active": "80 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1,000 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "740 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No", + "MM#": "99A39R", + "Ordering Code": "SSDPEKNU020TZX1", + "ECCN": "5A992CN3", + "CCATS": "G182471", + "US HTS": "8471706000", + "99A39R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD 670p Series", + "Code Name": "Products formerly Keystone Harbor", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography Type": "3D4 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "3000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1600 MB/s", + "Power - Active": "80 mW", + "Power - Idle": "25 mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "Operating; 1,000 G/0.5 ms --Non Operation; 1,500 G/0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "185 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No", + "MM#": "99A39N", + "Ordering Code": "SSDPEKNU512GZX1", + "ECCN": "5A992CN3", + "CCATS": "G182471", + "US HTS": "8471706000", + "99A39N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® SSD 665p Series", + "Code Name": "Products formerly Neptune Harbor Refresh", + "Capacity": "1 TB", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography Type": "3D3 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "2000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1925 MB/s", + "Power - Active": "0.1 W", + "Power - Idle": "0.04 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "300 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 665p Series", + "Code Name": "Products formerly Neptune Harbor Refresh", + "Capacity": "2 TB", + "Status": "Discontinued", + "Launch Date": "Q1'20", + "Lithography Type": "3D3 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "2000 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Power - Active": "0.1 W", + "Power - Idle": "0.04 W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "600 TBW", + "Mean Time Between Failures (MTBF)": "1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 660p Series", + "Code Name": "Products formerly Neptune Harbor", + "Capacity": "1.024 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "3D2 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "1800 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1800 MB/s", + "Power - Active": "0.1 W", + "Power - Idle": "0.040W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "200 TBW", + "Mean Time Between Failures (MTBF)": ">= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 660p Series", + "Code Name": "Products formerly Neptune Harbor", + "Capacity": "2.048 TB", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography Type": "3D2 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "1800 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1800 MB/s", + "Power - Active": "0.1 W", + "Power - Idle": "0.040W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "400 TBW", + "Mean Time Between Failures (MTBF)": ">= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 660p Series", + "Code Name": "Products formerly Neptune Harbor", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "03'18", + "Lithography Type": "3D2 QLC", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "1500 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1000 MB/s", + "Power - Active": "0.1 W", + "Power - Idle": "0.040W", + "Vibration - Operating": "2.17 GRMS", + "Vibration - Non-Operating": "3.13 GRMS", + "Shock (Operating and Non-Operating)": "1000 G", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "100 TBW", + "Mean Time Between Failures (MTBF)": ">= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "128 GB", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "440 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "50mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1500 G(Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "72 TBW", + "Mean Time Between Failures (MTBF)": ">= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "65 grams ± 2 grams", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "128 GB", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography Type": "3D TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "440 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "40mW", + "Shock (Operating and Non-Operating)": "1500 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "72 TBW", + "Mean Time Between Failures (MTBF)": ">= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "9 grams ± 1 gram", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "512 GB", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "40mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1500 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "288 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "9 grams ± 1 gram", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "256 GB", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "50mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1500 G(Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "144 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "65 grams ± 2 grams", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "256 GB", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "40mW", + "Shock (Operating and Non-Operating)": "1500 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "144 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "9 grams ± 1 gram", + "Form Factor": "M.2 22 x 80mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® SSD 545s Series", + "Code Name": "Products formerly Liberty Harbor", + "Capacity": "512 GB", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography Type": "3D2 TLC", + "Sequential Bandwidth - 100% Read (up to)": "550 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "500 MB/s", + "Power - Active": "4.5W", + "Power - Idle": "50mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1500 G (Max) at 0.5 msec", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "288 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "<1 sector per 10^15 bit read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Weight": "65 grams ± 2 grams", + "Form Factor": "2.5\" 7mm", + "Interface": "SATA 3.0 6Gb/S", + "Enhanced Power Loss Data Protection": "No", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "No", + "End-to-End Data Protection": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "10000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "414 Kb", + "Digital Signal Processing (DSP) Blocks": "23", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "179", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "E144, U256, F256", + "Additional Information": "View now", + "MM#": "974403", + "Spec Code": "SRCG2", + "Ordering Code": "EP4CE10F17I7N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "972461": "PCN", + "972460": "PCN", + "972459": "PCN", + "970201": "PCN", + "973169": "PCN", + "971882": "PCN", + "971881": "PCN", + "971880": "PCN", + "971879": "PCN", + "967286": "PCN", + "974403": "PCN", + "967285": "PCN", + "974402": "PCN", + "971149": "PCN", + "971148": "PCN", + "971147": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "114000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "3.888 Mb", + "Digital Signal Processing (DSP) Blocks": "266", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "528", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F484, F780", + "Additional Information": "View now", + "MM#": "973178", + "Spec Code": "SRB4N", + "Ordering Code": "EP4CE115F29I7", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "973173": "PCN", + "973172": "PCN", + "967023": "PCN", + "970203": "PCN", + "967022": "PCN", + "970202": "PCN", + "967021": "PCN", + "967020": "PCN", + "967019": "PCN", + "967288": "PCN", + "967287": "PCN", + "973178": "PCN", + "973177": "PCN", + "973176": "PCN", + "973174": "PCN", + "972463": "PCN", + "971883": "PCN", + "971150": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "15000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "504 Kb", + "Digital Signal Processing (DSP) Blocks": "56", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "343", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "E144, M164, M256, U256, F256, F484", + "Additional Information": "View now", + "MM#": "974412", + "Spec Code": "SRCGB", + "Ordering Code": "EP4CE15M9C7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "967293": "PCN", + "970204": "PCN", + "970209": "PCN", + "967297": "PCN", + "970208": "PCN", + "967296": "PCN", + "967295": "PCN", + "970207": "PCN", + "967026": "PCN", + "967294": "PCN", + "970206": "PCN", + "971889": "PCN", + "971888": "PCN", + "971887": "PCN", + "973185": "PCN", + "973184": "PCN", + "973181": "PCN", + "971153": "PCN", + "971152": "PCN", + "972514": "PCN", + "972513": "PCN", + "974412": "PCN", + "974411": "PCN", + "972515": "PCN", + "967030": "PCN", + "967029": "PCN", + "967028": "PCN", + "967027": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "22000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "594 Kb", + "Digital Signal Processing (DSP) Blocks": "66", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "153", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "E144, U256, F256", + "Additional Information": "View now", + "MM#": "974417", + "Spec Code": "SRCGG", + "Ordering Code": "EP4CE22F17I7", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "967304": "PCN", + "967303": "PCN", + "967302": "PCN", + "967301": "PCN", + "970212": "PCN", + "967300": "PCN", + "972518": "PCN", + "971158": "PCN", + "973187": "PCN", + "967033": "PCN", + "971157": "PCN", + "974417": "PCN", + "974416": "PCN", + "974415": "PCN", + "970213": "PCN", + "973189": "PCN", + "973188": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "29000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "594 Kb", + "Digital Signal Processing (DSP) Blocks": "66", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "532", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F324, F484, F780", + "Additional Information": "View now", + "MM#": "974418", + "Spec Code": "SRCGH", + "Ordering Code": "EP4CE30F23I8L", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "967305": "PCN", + "967309": "PCN", + "967308": "PCN", + "967307": "PCN", + "967306": "PCN", + "974418": "PCN", + "973196": "PCN", + "973195": "PCN", + "973194": "PCN", + "973193": "PCN", + "972522": "PCN", + "973192": "PCN", + "971895": "PCN", + "971894": "PCN", + "971163": "PCN", + "971893": "PCN", + "971162": "PCN", + "971892": "PCN", + "971161": "PCN", + "971160": "PCN", + "971891": "PCN", + "971159": "PCN", + "972521": "PCN", + "973191": "PCN", + "973190": "PCN", + "972520": "PCN", + "972519": "PCN", + "970214": "PCN", + "967036": "PCN", + "967035": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "40000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.134 Mb", + "Digital Signal Processing (DSP) Blocks": "116", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "532", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F324, F484, F780", + "Additional Information": "View now", + "MM#": "974422", + "Spec Code": "SRCGM", + "Ordering Code": "EP4CE40U19I7", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "971902": "PCN", + "971901": "PCN", + "971900": "PCN", + "971899": "PCN", + "971898": "PCN", + "971897": "PCN", + "973201": "PCN", + "967310": "PCN", + "973199": "PCN", + "974419": "PCN", + "973198": "PCN", + "973197": "PCN", + "972524": "PCN", + "972523": "PCN", + "971166": "PCN", + "971896": "PCN", + "973200": "PCN", + "971165": "PCN", + "971164": "PCN", + "974422": "PCN", + "974421": "PCN", + "974420": "PCN", + "967041": "PCN", + "970219": "PCN", + "970218": "PCN", + "967312": "PCN", + "970217": "PCN", + "967311": "PCN", + "970216": "PCN", + "970215": "PCN", + "967040": "PCN", + "967039": "PCN", + "967038": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "56000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "2.34 Mb", + "Digital Signal Processing (DSP) Blocks": "154", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "374", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F484, F780", + "Additional Information": "View now", + "MM#": "974425", + "Spec Code": "SRCGQ", + "Ordering Code": "EP4CE55F23C9LN", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "971167": "PCN", + "973203": "PCN", + "973202": "PCN", + "971171": "PCN", + "971170": "PCN", + "971169": "PCN", + "971168": "PCN", + "972527": "PCN", + "972526": "PCN", + "972525": "PCN", + "970227": "PCN", + "970226": "PCN", + "970225": "PCN", + "974425": "PCN", + "971906": "PCN", + "974424": "PCN", + "971905": "PCN", + "971904": "PCN", + "974423": "PCN", + "971903": "PCN", + "967042": "PCN", + "970224": "PCN", + "967314": "PCN", + "967313": "PCN", + "970223": "PCN", + "967317": "PCN", + "970222": "PCN", + "967316": "PCN", + "967315": "PCN", + "970220": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "6000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "270 Kb", + "Digital Signal Processing (DSP) Blocks": "15", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "179", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "E144, U256, F256", + "Additional Information": "View now", + "MM#": "974430", + "Spec Code": "SRCGV", + "Ordering Code": "EP4CE6F17I8LN", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "967044": "PCN", + "971912": "PCN", + "974430": "PCN", + "971911": "PCN", + "974429": "PCN", + "974428": "PCN", + "971173": "PCN", + "971915": "PCN", + "971914": "PCN", + "971913": "PCN", + "970231": "PCN", + "967319": "PCN", + "967318": "PCN", + "972532": "PCN", + "972531": "PCN", + "972530": "PCN" + }, + { + "Product Collection": "Cyclone® IV E FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "75000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "2.745 Mb", + "Digital Signal Processing (DSP) Blocks": "200", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "426", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F484, F780", + "Additional Information": "View now", + "MM#": "974434", + "Spec Code": "SRCGZ", + "Ordering Code": "EP4CE75U19I7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "974434": "PCN", + "967326": "PCN", + "973206": "PCN", + "967325": "PCN", + "967056": "PCN", + "967324": "PCN", + "967323": "PCN", + "967322": "PCN", + "971917": "PCN", + "971916": "PCN", + "973211": "PCN", + "973210": "PCN", + "973209": "PCN", + "970232": "PCN", + "971919": "PCN", + "971918": "PCN", + "967321": "PCN", + "972536": "PCN", + "967320": "PCN", + "972535": "PCN", + "972534": "PCN", + "972533": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "109000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "5.49 Mb", + "Digital Signal Processing (DSP) Blocks": "280", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "475", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "118", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "8", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.124 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F484, F672, F896", + "Additional Information": "View now", + "MM#": "974436", + "Spec Code": "SRCH1", + "Ordering Code": "EP4CGX110DF31C8", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "967328": "PCN", + "967078": "PCN", + "967077": "PCN", + "970234": "PCN", + "973213": "PCN", + "973212": "PCN", + "967329": "PCN", + "971923": "PCN", + "971922": "PCN", + "971921": "PCN", + "972537": "PCN", + "971920": "PCN", + "971176": "PCN", + "971175": "PCN", + "974436": "PCN", + "974435": "PCN", + "967069": "PCN", + "970233": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "14000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "3", + "Maximum Embedded Memory": "540 Kb", + "Digital Signal Processing (DSP) Blocks": "0", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "72", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "14", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "2", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "2.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F169", + "Additional Information": "View now", + "MM#": "974438", + "Spec Code": "SRCH3", + "Ordering Code": "EP4CGX15BF14A7N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "971179": "PCN", + "970237": "PCN", + "971178": "PCN", + "974438": "PCN", + "967171": "PCN", + "967334": "PCN", + "971929": "PCN", + "971928": "PCN", + "971927": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "150000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "6.48 Mb", + "Digital Signal Processing (DSP) Blocks": "360", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "475", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "118", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "8", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.124 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F484, F672, F896", + "Additional Information": "View now", + "MM#": "974437", + "Spec Code": "SRCH2", + "Ordering Code": "EP4CGX150DF27I7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "967080": "PCN", + "970236": "PCN", + "970235": "PCN", + "973214": "PCN", + "967333": "PCN", + "967332": "PCN", + "967331": "PCN", + "967330": "PCN", + "971924": "PCN", + "972540": "PCN", + "972539": "PCN", + "972538": "PCN", + "972679": "PCN", + "972678": "PCN", + "971177": "PCN", + "974437": "PCN", + "971926": "PCN", + "971925": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "21000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "756 Kb", + "Digital Signal Processing (DSP) Blocks": "40", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "150", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "28", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "4", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "2.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F169, F324", + "Additional Information": "View now", + "MM#": "974440", + "Spec Code": "SRCH5", + "Ordering Code": "EP4CGX22CF19C7N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "970241": "PCN", + "970240": "PCN", + "970239": "PCN", + "970238": "PCN", + "974440": "PCN", + "974439": "PCN", + "970242": "PCN", + "973217": "PCN", + "973216": "PCN", + "967174": "PCN", + "973215": "PCN", + "971930": "PCN", + "967178": "PCN", + "967177": "PCN", + "967175": "PCN", + "972682": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "29000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.08 Mb", + "Digital Signal Processing (DSP) Blocks": "80", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "290", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "28", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "4", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.124 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F169, F324, F484", + "Additional Information": "View now", + "MM#": "974444", + "Spec Code": "SRCH9", + "Ordering Code": "EP4CGX30CF23C6", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "972689": "PCN", + "972688": "PCN", + "974444": "PCN", + "972687": "PCN", + "974443": "PCN", + "967336": "PCN", + "972686": "PCN", + "974442": "PCN", + "967335": "PCN", + "974441": "PCN", + "970247": "PCN", + "970246": "PCN", + "970245": "PCN", + "970244": "PCN", + "970243": "PCN", + "971181": "PCN", + "971180": "PCN", + "973220": "PCN", + "973219": "PCN", + "973218": "PCN", + "967182": "PCN", + "971931": "PCN", + "971183": "PCN", + "971182": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "50000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "2.502 Mb", + "Digital Signal Processing (DSP) Blocks": "140", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "310", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "98", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "8", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.124 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F484, F672", + "Additional Information": "View now", + "MM#": "974447", + "Spec Code": "SRCHC", + "Ordering Code": "EP4CGX50DF27I7", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "972690": "PCN", + "967338": "PCN", + "971933": "PCN", + "971932": "PCN", + "967560": "PCN", + "974447": "PCN", + "974446": "PCN", + "974445": "PCN", + "967558": "PCN", + "967556": "PCN", + "967555": "PCN", + "972691": "PCN", + "967189": "PCN", + "973221": "PCN", + "971185": "PCN", + "971184": "PCN" + }, + { + "Product Collection": "Cyclone® IV GX FPGA", + "Status": "Launched", + "Launch Date": "2009", + "Lithography": "60 nm", + "Logic Elements (LE)": "74000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "4.158 Mb", + "Digital Signal Processing (DSP) Blocks": "198", + "Digital Signal Processing (DSP) Format": "Multiply", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, SDR", + "Maximum User I/O Count†": "310", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS, PPDS", + "Maximum LVDS Pairs": "98", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "8", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.124 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "No", + "Analog-to-Digital Converter": "No", + "Package Options": "F484, F672", + "Additional Information": "View now", + "MM#": "974448", + "Spec Code": "SRCHD", + "Ordering Code": "EP4CGX75CF23C7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "971936": "PCN", + "971935": "PCN", + "971934": "PCN", + "972696": "PCN", + "972694": "PCN", + "972693": "PCN", + "972692": "PCN", + "973222": "PCN", + "970248": "PCN", + "972697": "PCN", + "974448": "PCN", + "971187": "PCN", + "971186": "PCN", + "971939": "PCN", + "971938": "PCN", + "971937": "PCN" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "7120A", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "61", + "Processor Base Frequency": "1.24 GHz", + "Max Turbo Frequency": "1.33 GHz", + "Cache": "30.5 MB L2 Cache", + "TDP": "300 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "352 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "PCI bracket included or installed (not on Bulk), 312 mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "934878", + "Spec Code": "S", + "Ordering Code": "SC7120A", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "934878": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "7120D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "61", + "Processor Base Frequency": "1.24 GHz", + "Max Turbo Frequency": "1.33 GHz", + "Cache": "30.5 MB L2 Cache", + "TDP": "270 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "352 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "No Brackets", + "Intel® Turbo Boost Technology ‡": "1.0", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "932330", + "Spec Code": "S", + "Ordering Code": "SC7120D", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "932330": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "3120A", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "57", + "Processor Base Frequency": "1.10 GHz", + "Cache": "28.5 MB L2 Cache", + "TDP": "300 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "6 GB", + "Max # of Memory Channels": "12", + "Max Memory Bandwidth": "240 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "Brackets installed or supplied (not on bulk); PCI 312 mm, ISA 338.79 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "932982", + "Spec Code": "S", + "Ordering Code": "SC3120AKIT", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "927500": "PCN\n |\n MDDS", + "931161": "PCN\n |\n MDDS", + "931162": "PCN\n |\n MDDS", + "932982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "3120P", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "57", + "Processor Base Frequency": "1.10 GHz", + "Cache": "28.5 MB L2 Cache", + "TDP": "300 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "6 GB", + "Max # of Memory Channels": "12", + "Max Memory Bandwidth": "240 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "PCI bracket inluded or installed (not on Bulk), 312 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "931160", + "Spec Code": "S", + "Ordering Code": "SC3120PEB", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "927501": "PCN\n |\n MDDS", + "931160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "5120D", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "60", + "Processor Base Frequency": "1.05 GHz", + "Cache": "30 MB L2 Cache", + "TDP": "245 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "352 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "No Brackets", + "Intel® Turbo Boost Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "927503", + "Spec Code": "S", + "Ordering Code": "SC5120D", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "927503": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "7120P", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "61", + "Processor Base Frequency": "1.24 GHz", + "Max Turbo Frequency": "1.33 GHz", + "Cache": "30.5 MB L2 Cache", + "TDP": "300 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "352 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "PCI bracket inluded or installed (not on Bulk), 312 mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "927499", + "Spec Code": "S", + "Ordering Code": "SC7120P", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "927499": "PCN\n |\n MDDS", + "931158": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "7120X", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "61", + "Processor Base Frequency": "1.24 GHz", + "Max Turbo Frequency": "1.33 GHz", + "Cache": "30.5 MB L2 Cache", + "TDP": "300 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "352 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "No Brackets", + "Intel® Turbo Boost Technology ‡": "1.0", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "927498", + "Spec Code": "S", + "Ordering Code": "SC7120X", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "927498": "PCN\n |\n MDDS", + "927506": "PCN" + }, + { + "Product Collection": "Intel® Xeon Phi™ x100 Product Family", + "Code Name": "Products formerly Knights Corner", + "Vertical Segment": "Server", + "Processor Number": "5110P", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "22 nm", + "Total Cores": "60", + "Processor Base Frequency": "1.05 GHz", + "Cache": "30 MB L2 Cache", + "TDP": "225 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "320 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Bracket Height": "PCI bracket inluded or installed (not on Bulk), 312 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® IMCI", + "MM#": "932981", + "Ordering Code": "SC5110PKIT", + "Spec Code": "S", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471500150", + "924038": "MDDS", + "924044": "PCN\n |\n MDDS", + "931159": "PCN\n |\n MDDS", + "932981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7210", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "64", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.50 GHz", + "Cache": "32 MB L2 Cache", + "TDP": "215 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2133", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "102 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "947607", + "Spec Code": "SR2ME", + "Ordering Code": "HJ8066702859300", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951272": "PCN\n |\n MDDS", + "947607": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7210F", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "64", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.50 GHz", + "Cache": "32 MB L2 Cache", + "TDP": "230 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2133", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "102 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "951274", + "Spec Code": "SR2X5", + "Ordering Code": "HJ8066702975000", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951274": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7230", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "64", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.50 GHz", + "Cache": "32 MB L2 Cache", + "TDP": "215 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "947609", + "Spec Code": "SR2MF", + "Ordering Code": "HJ8066702859400", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951270": "PCN\n |\n MDDS", + "947609": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7230F", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "64", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.50 GHz", + "Cache": "32 MB L2 Cache", + "TDP": "230 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "951268", + "Spec Code": "SR2X2", + "Ordering Code": "HJ8066702269002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951268": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7250", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "68", + "Processor Base Frequency": "1.40 GHz", + "Max Turbo Frequency": "1.60 GHz", + "Cache": "34 MB L2 Cache", + "TDP": "215 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "947605", + "Spec Code": "SR2MD", + "Ordering Code": "HJ8066702859200", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951266": "PCN\n |\n MDDS", + "947605": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7250F", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "68", + "Processor Base Frequency": "1.40 GHz", + "Max Turbo Frequency": "1.60 GHz", + "Cache": "34 MB L2 Cache", + "TDP": "230 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "951264", + "Spec Code": "SR2X0", + "Ordering Code": "HJ8066702268900", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951264": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7290", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "72", + "Processor Base Frequency": "1.50 GHz", + "Max Turbo Frequency": "1.70 GHz", + "Cache": "36 MB L2 Cache", + "TDP": "245 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port 1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "951260", + "Spec Code": "SR2WY", + "Ordering Code": "HJ8066702974700", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ x200 Product Family", + "Code Name": "Products formerly Knights Landing", + "Vertical Segment": "Server", + "Processor Number": "7290F", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "72", + "Processor Base Frequency": "1.50 GHz", + "Max Turbo Frequency": "1.70 GHz", + "Cache": "36 MB L2 Cache", + "TDP": "260 W", + "VID Voltage Range": "0.550-1.125V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Intel Xeon Phi processors do not currently support Virtualization. Intel is working with interested OEMs, customers, and the virtualization developer community in providing them with Virtualization feature at a later date.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "SVLCLGA3647", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "951262", + "Spec Code": "SR2WZ", + "Ordering Code": "HJ8066702975200", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "951262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ 72x5 Processor Family", + "Code Name": "Products formerly Knights Mill", + "Vertical Segment": "Server", + "Processor Number": "7235", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "64", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.40 GHz", + "Cache": "32 MB L2 Cache", + "TDP": "250 W", + "VID Voltage Range": "0.550-1.200V", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2133", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "102 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x 16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port 1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "TCASE": "72°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "962809", + "Spec Code": "SR3VF", + "Ordering Code": "HJ8068303823900", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "962809": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ 72x5 Processor Family", + "Code Name": "Products formerly Knights Mill", + "Vertical Segment": "Server", + "Processor Number": "7285", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "68", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "1.40 GHz", + "Cache": "34 MB L2 Cache", + "TDP": "250 W", + "VID Voltage Range": "0.550-1.200V", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port 1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "TCASE": "72°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "962808", + "Spec Code": "SR3VE", + "Ordering Code": "HJ8068303823800", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "962808": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon Phi™ 72x5 Processor Family", + "Code Name": "Products formerly Knights Mill", + "Vertical Segment": "Server", + "Processor Number": "7295", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "72", + "Processor Base Frequency": "1.50 GHz", + "Max Turbo Frequency": "1.60 GHz", + "Cache": "36 MB L2 Cache", + "TDP": "320 W", + "VID Voltage Range": "0.550-1.200V", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "115.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x16 port (Port 2 and 3) may negotiate down to x8, x4, x2, or x1. x4 port (Port 1) may negotiate down to x2, or x1", + "Max # of PCI Express Lanes": "36", + "Sockets Supported": "SVLCLGA3647", + "TCASE": "77°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "MM#": "962788", + "Spec Code": "SR3VD", + "Ordering Code": "HJ8068303823700", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G065916", + "US HTS": "8542310001", + "962788": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Converged Network Adapter X550", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6 up to 55m; Category 6A up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Description": "NBASE-T support in Linux Only", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10GbE/5GbE/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x4 Lane", + "Controller": "Intel® Ethernet Controller X550", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Converged Network Adapter X550", + "Status": "Launched", + "Launch Date": "Q1'16", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6 up to 55m; Category 6A up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Datasheet": "View now", + "Description": "NBASE-T support in Linux Only", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/5GbE/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 4 Lane", + "Controller": "Intel® Ethernet Controller X550", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "940128", + "Ordering Code": "X550T2", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "940128": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Converged Network Adapter X540", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6 up to 55m; Category 6A up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® Ethernet Controller X540", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Converged Network Adapter X540", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6 up to 55 m; Category 6A up to 100 m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® Ethernet Controller X540", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "QSFP+ Direct Attach Twin Axial Cabling up to 10m", + "Bracket Height": "Low Profile and Full Height", + "TDP": "20 W", + "Port Configuration": "Single", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel 82599", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "921255", + "Ordering Code": "X520QDA1G1P5", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "921253": "PCN\n |\n MDDS", + "921255": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Niantic", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attached Twin Axial Cabling up to 10m", + "Bracket Height": "No bracket", + "Ethernet Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel 82599", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Niantic", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attached Twin Axial Cabling up to 10m", + "Bracket Height": "No bracket", + "Ethernet Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel 82599", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Iron Pond", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ-45 Category-6 up to 55 m; Category-6A up to 100 m", + "Bracket Height": "Low Profile and Full Height", + "TDP": "19 W", + "Ethernet Controller": "Intel® 82599EB 10 Gigabit Ethernet Controller", + "Supported Operating Systems": "Windows Server 2012 R2*, Windows Server 2012*, Windows 8*, Windows Server 2008 R2*, Windows 7*, Windows Server 2008* SP2, Windows Vista* SP2, Windows Server 2003 R2*, Windows Server 2003* SP2, Linux* Stable Kernel version 3.x, 2.6,x, Red Hat Enterprise Linux* 5, 6, SUSE Linux Enterprise Server* 10, 11, FreeBSD 9*, VMware ESX/ESXi*", + "Port Configuration": "Dual", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel 82599EB", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "902916", + "Ordering Code": "E10G42BTG1P5", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "902900": "PCN\n |\n MDDS", + "902916": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Spring Fountain", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attached Twin Axial Cabling up to 10m", + "Bracket Height": "Low Profile & Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Spring Fountain", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "SMF up to 10km", + "Bracket Height": "Low Profile & Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Spring Fountain", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "MMF up to 300m", + "Bracket Height": "Low Profile & Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter X520", + "Code Name": "Products formerly Spring Fountain", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "MMF up to 300m", + "Bracket Height": "Low Profile & Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Controller": "Intel® 82599 10 Gigabit Ethernet Controller", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Tri-Band Wireless-AC 18000 Series", + "Code Name": "Products formerly Oak Peak", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*, Android*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 Ghz, 5 Ghz", + "Max Speed": "867 Mbs", + "Wi-Fi CERTIFIED*": "802.11ac/ad", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 3030", + "Package Size": "30 mm x 30 mm x 2.4 mm", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Tri-Band Wireless-AC 18000 Series", + "Code Name": "Products formerly Douglas Peak", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Weight (in grams)": "3.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "802.11ac/ad", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 Type 2230", + "Package Size": "9 mm x 25 mm x 2.45 mm", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Tri-Band Wireless-AC 17000 Series", + "Code Name": "Products formerly Maple Peak", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Weight (in grams)": "3.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "802.11ac/ad", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 3030", + "Package Size": "30 mm x 30 mm x 2.4 mm", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Gigabit 11000 Series", + "Code Name": "Products formerly Pine Peak", + "Status": "Launched", + "Launch Date": "Q1'18", + "Weight (in grams)": "2", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10*", + "Warranty Period": "1 yrs", + "Antenna": "Gigabit", + "Product Brief": "View now", + "TX/RX Streams": "Gigabit", + "Bands": "60 GHz", + "Max Speed": "4.7 Gbps", + "Wi-Fi CERTIFIED*": "802.11ad", + "Compliance": "FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "Soldered module 1216", + "Package Size": "20.5x14.2mm2x1.8mm", + "System Interface Type": "PCIe, DP", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No", + "Intel® Smart Connect Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Gigabit 11000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Weight (in grams)": "2", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "Gigabit", + "TX/RX Streams": "Gigabit", + "Bands": "60 GHz only", + "Max Speed": "4.7 Gbps", + "Wi-Fi CERTIFIED*": "802.11ad", + "Compliance": "FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "Soldered module 1216", + "Package Size": "20.5x14.2mm2x1.8mm", + "System Interface Type": "PCIe, DP", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Gigabit Sink W13000 Series", + "Code Name": "Products formerly Maple Peak", + "Status": "Launched", + "Launch Date": "Q2'18", + "Weight (in grams)": "5.16", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Warranty Period": "1 yrs", + "Antenna": "Gigabit", + "TX/RX Streams": "Gigabit", + "Bands": "60 GHz", + "Max Speed": "4.62 Gb/s", + "Wi-Fi CERTIFIED*": "802.11ad", + "Board Form Factor": "M.2 4230", + "Package Size": "42 mm x 30 mm x 2.6 mm" + }, + { + "Product Collection": "Intel® Wireless Gigabit Sink W13000 Series", + "Code Name": "Products formerly Maple Peak", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Weight (in grams)": "5.16", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Warranty Period": "1 yrs", + "Antenna": "Gigabit", + "TX/RX Streams": "Gigabit", + "Bands": "Gigabit", + "Max Speed": "multi-Gbps IO", + "Wi-Fi CERTIFIED*": "802.11ad", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 4230", + "Package Size": "42 mm x 30 mm x 2.6 mm", + "System Interface Type": "M.2 Key G", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Gigabit Antenna-M Series", + "Code Name": "Products formerly Buckwell Peak", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Weight (in grams)": "1", + "Operating Temperature Range": "80°C to 0°C", + "Operating Temperature (Maximum)": "0 °C", + "Operating Temperature (Minimum)": "80 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*", + "Warranty Period": "1 yrs", + "Wi-Fi CERTIFIED*": "802.11ad", + "Integrated Bluetooth": "Yes", + "Package Size": "7 mm x 19.3 mm x 1.8 mm", + "Supported Under Intel vPro® Technology": "No", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Gigabit Antenna-M Series", + "Code Name": "Products formerly Douglas Peak", + "Status": "Launched", + "Launch Date": "Q2'15", + "Weight (in grams)": "1", + "Operating Temperature Range": "80°C to 0°C", + "Operating Temperature (Maximum)": "0 °C", + "Operating Temperature (Minimum)": "80 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Wi-Fi CERTIFIED*": "802.11ad", + "Package Size": "9 mm x 25 mm x 2.45 mm", + "Supported Under Intel vPro® Technology": "No", + "Intel® Smart Connect Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "1x2", + "Bands": "2.4GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11bgn", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half Mini Card", + "Package Size": "26.80mm x 30mm x 3.10mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Supported Operating Systems": "Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Product Brief": "View now", + "TX/RX Streams": "1x2", + "Bands": "2.4 GHz/5GHz", + "Max Speed": "150Mbps Tx/300 Mbps Rx", + "Wi-Fi CERTIFIED*": "802.11 a/g/n", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe", + "Package Size": "See Product Brief", + "System Interface Type": "Wi-Fi(PCIe), WiMAX(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No", + "Intel® Smart Connect Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Supported Operating Systems": "Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "TX/RX Streams": "3x3", + "Bands": "2.4 GHz/5GHz", + "Max Speed": "450 Mbps", + "Wi-Fi CERTIFIED*": "802.11 a/g/n", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe", + "Package Size": "See Product Brief", + "System Interface Type": "Wi-Fi(PCIe), WiMAX(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Kilmer Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4.5", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*, Linux*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz/5 Ghz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11a/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.65 mm x 29.85 mm x 4.39 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Puma Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*, Linux*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz/5 Ghz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11a/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm Top / 1.35 mm Bottom", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Taylor Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz/5 Ghz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11a/b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm Top / 1.35 mm Bottom", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Rainbow Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz/5 Ghz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11a/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm Top / 1.35 mm Bottom", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "2012", + "Weight (in grams)": "3.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz/ 5GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11 a/b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half Mini Card, PCIe M.2", + "Package Size": "Top- 26.80mm x 30mm x 2.4mm/ Bottom - 1.35mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Puma Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Warranty Period": "1 yrs", + "Antenna": "3x3", + "TX/RX Streams": "3x3", + "Bands": "2.4 GHz/5 Ghz", + "Max Speed": "450 Mbps", + "Wi-Fi CERTIFIED*": "802.11a/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm Top / 1.35 mm Bottom", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Kelsey Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "4.5", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "1x2", + "Bands": "2.4 GHz", + "Max Speed": "150 Mbps Tx/300 Mbps Rx", + "Wi-Fi CERTIFIED*": "802.11b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.65 mm x 29.85 mm x 4.39 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Crane Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Antenna": "1x1", + "Product Brief": "View now", + "TX/RX Streams": "1x1", + "Bands": "2.4 GHz", + "Max Speed": "150 Mbps", + "Wi-Fi CERTIFIED*": "802.11b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Rainbow Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Vista 32*, Windows Vista 64*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "1x2", + "Bands": "2.4 GHz", + "Max Speed": "300 Mbps RX/150 Mbps TX", + "Wi-Fi CERTIFIED*": "802.11b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "2012", + "Weight (in grams)": "2.9", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Product Brief": "View now", + "TX/RX Streams": "1x1", + "Bands": "2.4 GHz", + "Max Speed": "150 Mbps", + "Wi-Fi CERTIFIED*": "802.11 b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half Mini Card", + "Package Size": "Top - 26.80mm x 30mm x 2.4mm/ Bottom - 1.35mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Code Name": "Products formerly Crane Peak", + "Status": "Discontinued", + "Launch Date": "2011", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "1x1", + "Bands": "2.4 GHz", + "Max Speed": "150 Mbps", + "Wi-Fi CERTIFIED*": "802.11b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half MiniCard", + "Package Size": "26.80 mm x 30 mm x 3.10 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "2012", + "Weight (in grams)": "2.9", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Warranty Period": "1 yrs", + "Product Brief": "View now", + "TX/RX Streams": "1x1", + "Bands": "2.4 GHz", + "Max Speed": "150 Mbps", + "Wi-Fi CERTIFIED*": "802.11 b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half Mini Card", + "Package Size": "Top - 26.80mm x 30mm x 2.4mm/ Bottom - 1.35 mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "MM#": "917357", + "Ordering Code": "135BN.HMWG", + "ECCN": "5A992C", + "CCATS": "G400243", + "US HTS": "8517620090", + "917357": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "2012", + "Weight (in grams)": "3", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Warranty Period": "1 yrs", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11 b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "No", + "Board Form Factor": "PCIe Half Mini Card", + "Package Size": "Top - 26.80mm x 30mm x 2.4mm/ Bottom - 1.35mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless Series", + "Status": "Discontinued", + "Launch Date": "2012", + "Weight (in grams)": "3.45", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Warranty Period": "1 yrs", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11 b/g/n", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half Mini Card", + "Package Size": "Top 26.80mm x 30mm x 2.4mm/ Bottom 1.35mm", + "System Interface Type": "PCIe", + "MU-MIMO": "No", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Cyclone® V E FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "25000", + "Adaptive Logic Modules (ALM)": "9434", + "Adaptive Logic Module (ALM) Registers": "37736", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.956 Mb", + "Digital Signal Processing (DSP) Blocks": "25", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "224", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "112", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M383, U324, U484, F256, F484", + "Additional Information": "View now", + "MM#": "970594", + "Spec Code": "SR8U9", + "Ordering Code": "5CEFA2U19C6N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968885": "PCN", + "968882": "PCN", + "968343": "PCN", + "968342": "PCN", + "968341": "PCN", + "968890": "PCN", + "968888": "PCN", + "970594": "PCN", + "970593": "PCN", + "967849": "PCN", + "968340": "PCN", + "968336": "PCN", + "968335": "PCN", + "965678": "PCN", + "968193": "PCN", + "968183": "PCN", + "968182": "PCN", + "968181": "PCN", + "965945": "PCN", + "965944": "PCN", + "965943": "PCN", + "967844": "PCN", + "967843": "PCN", + "965673": "PCN", + "967842": "PCN", + "965672": "PCN", + "965671": "PCN", + "967841": "PCN" + }, + { + "Product Collection": "Cyclone® V E FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "49000", + "Adaptive Logic Modules (ALM)": "18480", + "Adaptive Logic Module (ALM) Registers": "73920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "3.383 Gb", + "Digital Signal Processing (DSP) Blocks": "66", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "224", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "112", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M383, U324, U484, F256, F484", + "Additional Information": "View now", + "MM#": "973741", + "Spec Code": "SRBM8", + "Ordering Code": "5CEFA4F23I7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968344": "PCN", + "968886": "PCN", + "970591": "PCN", + "968887": "PCN", + "968884": "PCN", + "967862": "PCN", + "965675": "PCN", + "967851": "PCN", + "965674": "PCN", + "967850": "PCN", + "965680": "PCN", + "965679": "PCN", + "965947": "PCN", + "965946": "PCN", + "967845": "PCN", + "965948": "PCN", + "967863": "PCN", + "968184": "PCN", + "973734": "PCN", + "973733": "PCN", + "970595": "PCN", + "968892": "PCN", + "968891": "PCN", + "965941": "PCN", + "973741": "PCN", + "965940": "PCN", + "965939": "PCN", + "973736": "PCN", + "973735": "PCN" + }, + { + "Product Collection": "Cyclone® V E FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "77000", + "Adaptive Logic Modules (ALM)": "29080", + "Adaptive Logic Module (ALM) Registers": "116320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.884 Gb", + "Digital Signal Processing (DSP) Blocks": "150", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "224", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "120", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M383, U484, F484", + "Additional Information": "View now", + "MM#": "973743", + "Spec Code": "SRBMA", + "Ordering Code": "5CEFA5U19A7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "973743": "PCN", + "968345": "PCN", + "965950": "PCN", + "965949": "PCN", + "967864": "PCN", + "968185": "PCN", + "965676": "PCN", + "968895": "PCN", + "968894": "PCN", + "968893": "PCN", + "973742": "PCN", + "968197": "PCN", + "968196": "PCN", + "965681": "PCN", + "968195": "PCN", + "968337": "PCN", + "973737": "PCN" + }, + { + "Product Collection": "Cyclone® V E FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "149500", + "Adaptive Logic Modules (ALM)": "56480", + "Adaptive Logic Module (ALM) Registers": "225920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "7", + "Maximum Embedded Memory": "7.696 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "240", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M484, U484, F484, F672, F896", + "Additional Information": "View now", + "MM#": "973748", + "Spec Code": "SRBMF", + "Ordering Code": "5CEFA7U19C7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968205": "PCN", + "968347": "PCN", + "968346": "PCN", + "968911": "PCN", + "970592": "PCN", + "968189": "PCN", + "968188": "PCN", + "968187": "PCN", + "965953": "PCN", + "967847": "PCN", + "965952": "PCN", + "967846": "PCN", + "967867": "PCN", + "965684": "PCN", + "968339": "PCN", + "965683": "PCN", + "965951": "PCN", + "967868": "PCN", + "967865": "PCN", + "967866": "PCN", + "973748": "PCN", + "973747": "PCN", + "968186": "PCN", + "973746": "PCN", + "973745": "PCN", + "973744": "PCN", + "968897": "PCN", + "970597": "PCN", + "968896": "PCN", + "970596": "PCN", + "973738": "PCN", + "968898": "PCN", + "970598": "PCN" + }, + { + "Product Collection": "Cyclone® V E FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "301000", + "Adaptive Logic Modules (ALM)": "113560", + "Adaptive Logic Module (ALM) Registers": "454240", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "13.917 Mb", + "Digital Signal Processing (DSP) Blocks": "342", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "240", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F484, F672, F896", + "Additional Information": "View now", + "MM#": "973750", + "Spec Code": "SRBMH", + "Ordering Code": "5CEFA9F27C8N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968206": "PCN", + "968348": "PCN", + "973750": "PCN", + "973749": "PCN", + "968208": "PCN", + "968207": "PCN", + "965677": "PCN", + "968192": "PCN", + "968191": "PCN", + "968190": "PCN", + "965956": "PCN", + "965955": "PCN", + "967848": "PCN", + "967870": "PCN", + "965685": "PCN", + "965942": "PCN", + "973740": "PCN", + "973739": "PCN", + "968901": "PCN", + "968900": "PCN", + "968899": "PCN" + }, + { + "Product Collection": "Cyclone® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "77000", + "Adaptive Logic Modules (ALM)": "29080", + "Adaptive Logic Module (ALM) Registers": "116320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.884 Mb", + "Digital Signal Processing (DSP) Blocks": "150", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "336", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.144 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M301, M383, U484, F484, F672", + "Additional Information": "View now", + "MM#": "973753", + "Spec Code": "SRBML", + "Ordering Code": "5CGTFD5F5M11C7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965957": "PCN", + "973753": "PCN", + "968903": "PCN", + "973752": "PCN", + "965686": "PCN", + "973751": "PCN", + "968073": "PCN", + "968072": "PCN", + "968902": "PCN", + "968210": "PCN", + "968209": "PCN", + "970599": "PCN" + }, + { + "Product Collection": "Cyclone® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "149500", + "Adaptive Logic Modules (ALM)": "56480", + "Adaptive Logic Module (ALM) Registers": "225920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "7", + "Maximum Embedded Memory": "7.696 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "240", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.144 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M484, U484, F484, F672, F896", + "Additional Information": "View now", + "MM#": "970602", + "Spec Code": "SR8UH", + "Ordering Code": "5CGTFD7D5F27I7", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965689": "PCN", + "968074": "PCN", + "965688": "PCN", + "965687": "PCN", + "968212": "PCN", + "968211": "PCN", + "968349": "PCN", + "965958": "PCN", + "968905": "PCN", + "968904": "PCN", + "970602": "PCN", + "970601": "PCN", + "970600": "PCN" + }, + { + "Product Collection": "Cyclone® V GT FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "301000", + "Adaptive Logic Modules (ALM)": "113560", + "Adaptive Logic Module (ALM) Registers": "454240", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "13.917 Mb", + "Digital Signal Processing (DSP) Blocks": "342", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "560", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "280", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.144 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F484, F672, F896, F1152", + "Additional Information": "View now", + "MM#": "973754", + "Spec Code": "SRBMM", + "Ordering Code": "5CGTFD9C5F23I7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965959": "PCN", + "968077": "PCN", + "965691": "PCN", + "968076": "PCN", + "965690": "PCN", + "968075": "PCN", + "968906": "PCN", + "973754": "PCN", + "968213": "PCN", + "970604": "PCN", + "970603": "PCN", + "968350": "PCN" + }, + { + "Product Collection": "Cyclone® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "35500", + "Adaptive Logic Modules (ALM)": "13460", + "Adaptive Logic Module (ALM) Registers": "53840", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.641 Mb", + "Digital Signal Processing (DSP) Blocks": "57", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "208", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "104", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "3", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U324, U484, F484", + "Additional Information": "View now", + "MM#": "973755", + "Spec Code": "SRBMN", + "Ordering Code": "5CGXFC3B6U19C7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965692": "PCN", + "965704": "PCN", + "965703": "PCN", + "965702": "PCN", + "970609": "PCN", + "965969": "PCN", + "968913": "PCN", + "965968": "PCN", + "968352": "PCN", + "968351": "PCN", + "965693": "PCN", + "968907": "PCN", + "973755": "PCN", + "968358": "PCN", + "968357": "PCN", + "968509": "PCN", + "968912": "PCN", + "968506": "PCN", + "968914": "PCN", + "965960": "PCN", + "968910": "PCN" + }, + { + "Product Collection": "Cyclone® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "50000", + "Adaptive Logic Modules (ALM)": "18868", + "Adaptive Logic Module (ALM) Registers": "75472", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "2.795 Mb", + "Digital Signal Processing (DSP) Blocks": "70", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "336", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M301, M383, U484, F484, F672", + "Additional Information": "View now", + "MM#": "999J5Z", + "Spec Code": "SRGCK", + "Ordering Code": "5CGXFC4C6F23I7", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968218": "PCN", + "965972": "PCN", + "965971": "PCN", + "965970": "PCN", + "968214": "PCN", + "999J5Z": "PCN", + "968491": "PCN", + "968353": "PCN", + "965695": "PCN", + "965694": "PCN", + "965706": "PCN", + "968220": "PCN", + "965705": "PCN", + "968219": "PCN", + "973757": "PCN", + "973756": "PCN", + "973758": "PCN", + "970611": "PCN", + "968774": "PCN", + "968919": "PCN", + "970610": "PCN", + "968916": "PCN", + "968917": "PCN", + "968915": "PCN", + "970612": "PCN", + "968908": "PCN", + "968221": "PCN", + "968772": "PCN", + "968771": "PCN", + "968359": "PCN" + }, + { + "Product Collection": "Cyclone® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "77000", + "Adaptive Logic Modules (ALM)": "29080", + "Adaptive Logic Module (ALM) Registers": "116320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.884 Mb", + "Digital Signal Processing (DSP) Blocks": "150", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "336", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "168", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M301, M383, U484, F484, F672", + "Additional Information": "View now", + "MM#": "973763", + "Spec Code": "SRBMV", + "Ordering Code": "5CGXFC5C7F23C8N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968215": "PCN", + "968987": "PCN", + "968354": "PCN", + "965696": "PCN", + "965708": "PCN", + "965707": "PCN", + "973763": "PCN", + "965962": "PCN", + "973762": "PCN", + "973760": "PCN", + "965961": "PCN", + "968918": "PCN", + "970605": "PCN", + "969100": "PCN", + "970618": "PCN", + "970617": "PCN", + "970616": "PCN", + "968923": "PCN", + "970615": "PCN", + "970614": "PCN", + "968920": "PCN", + "970613": "PCN", + "968776": "PCN", + "968921": "PCN", + "968225": "PCN", + "968224": "PCN", + "968223": "PCN", + "968222": "PCN" + }, + { + "Product Collection": "Cyclone® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "149500", + "Adaptive Logic Modules (ALM)": "56480", + "Adaptive Logic Module (ALM) Registers": "225920", + "Fabric and I/O Phase-Locked Loops (PLLs)": "7", + "Maximum Embedded Memory": "7.696 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "240", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "M484, U484, F484, F672, F896", + "Additional Information": "View now", + "MM#": "973766", + "Spec Code": "SRBMY", + "Ordering Code": "5CGXFC7D7F27C8N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965974": "PCN", + "968216": "PCN", + "965699": "PCN", + "968355": "PCN", + "965698": "PCN", + "965697": "PCN", + "965979": "PCN", + "965978": "PCN", + "965977": "PCN", + "965976": "PCN", + "968497": "PCN", + "965975": "PCN", + "969102": "PCN", + "969103": "PCN", + "973766": "PCN", + "973765": "PCN", + "965964": "PCN", + "973764": "PCN", + "965963": "PCN", + "970623": "PCN", + "970622": "PCN", + "970621": "PCN", + "970620": "PCN", + "970619": "PCN", + "970606": "PCN", + "968925": "PCN", + "968922": "PCN", + "968227": "PCN", + "968909": "PCN", + "968226": "PCN", + "965709": "PCN", + "968362": "PCN", + "968230": "PCN", + "968361": "PCN", + "968229": "PCN", + "968360": "PCN", + "968969": "PCN" + }, + { + "Product Collection": "Cyclone® V GX FPGA", + "Status": "Launched", + "Launch Date": "2011", + "Lithography": "28 nm", + "Logic Elements (LE)": "301000", + "Adaptive Logic Modules (ALM)": "113560", + "Adaptive Logic Module (ALM) Registers": "454240", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "13.917 Mb", + "Digital Signal Processing (DSP) Blocks": "342", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "560", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "280", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, F484, F672, F896, F115", + "Additional Information": "View now", + "MM#": "973767", + "Spec Code": "SRBMZ", + "Ordering Code": "5CGXFC9A6U19A7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968217": "PCN", + "965701": "PCN", + "965700": "PCN", + "965967": "PCN", + "973767": "PCN", + "965983": "PCN", + "968356": "PCN", + "965981": "PCN", + "969106": "PCN", + "969104": "PCN", + "965966": "PCN", + "965965": "PCN", + "970608": "PCN", + "970607": "PCN", + "968234": "PCN", + "970625": "PCN", + "970624": "PCN", + "965713": "PCN", + "965712": "PCN", + "968503": "PCN", + "965711": "PCN", + "965710": "PCN", + "968233": "PCN", + "968232": "PCN", + "968363": "PCN", + "968231": "PCN", + "968971": "PCN", + "965714": "PCN" + }, + { + "Product Collection": "Cyclone® V SE SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "25000", + "Adaptive Logic Modules (ALM)": "9434", + "Adaptive Logic Module (ALM) Registers": "37736", + "Fabric and I/O Phase-Locked Loops (PLLs)": "5", + "Maximum Embedded Memory": "1.538 Mb", + "Digital Signal Processing (DSP) Blocks": "36", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Single Arm* Cortex*-A9 or Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "145", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "69", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, U672", + "Additional Information": "View now", + "MM#": "973783", + "Spec Code": "SRBNC", + "Ordering Code": "5CSEMA2U23C6N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965722": "PCN", + "968367": "PCN", + "968973": "PCN", + "968972": "PCN", + "970628": "PCN", + "968992": "PCN", + "970627": "PCN", + "973783": "PCN", + "965984": "PCN", + "973769": "PCN", + "970630": "PCN", + "973768": "PCN", + "970629": "PCN", + "969118": "PCN", + "968974": "PCN", + "966131": "PCN", + "968365": "PCN", + "968364": "PCN", + "965716": "PCN", + "965715": "PCN", + "965986": "PCN", + "965985": "PCN" + }, + { + "Product Collection": "Cyclone® V SE SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "40000", + "Adaptive Logic Modules (ALM)": "15094", + "Adaptive Logic Module (ALM) Registers": "60376", + "Fabric and I/O Phase-Locked Loops (PLLs)": "5", + "Maximum Embedded Memory": "2.931 Mb", + "Digital Signal Processing (DSP) Blocks": "84", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Single Arm* Cortex*-A9 or Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "145", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "69", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, U672", + "Additional Information": "View now", + "MM#": "973775", + "Spec Code": "SRBN4", + "Ordering Code": "5CSEBA4U23I7", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "968241": "PCN", + "968370": "PCN", + "968240": "PCN", + "968369": "PCN", + "968239": "PCN", + "968368": "PCN", + "968238": "PCN", + "968237": "PCN", + "966132": "PCN", + "968993": "PCN", + "968381": "PCN", + "968246": "PCN", + "969107": "PCN", + "968245": "PCN", + "970632": "PCN", + "973770": "PCN", + "969109": "PCN", + "965717": "PCN", + "965987": "PCN", + "970634": "PCN", + "973775": "PCN", + "970633": "PCN", + "973771": "PCN" + }, + { + "Product Collection": "Cyclone® V SE SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "85000", + "Adaptive Logic Modules (ALM)": "32075", + "Adaptive Logic Module (ALM) Registers": "128300", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.45 Mb", + "Digital Signal Processing (DSP) Blocks": "87", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Single Arm* Cortex*-A9 or Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, U672, F896", + "Additional Information": "View now", + "MM#": "999LG8", + "Spec Code": "SRGN9", + "Ordering Code": "5CSEBA5U19I7LN", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "999LG8": "PCN", + "968979": "PCN", + "968977": "PCN", + "969119": "PCN", + "973778": "PCN", + "969117": "PCN", + "970635": "PCN", + "973776": "PCN", + "968243": "PCN", + "968242": "PCN", + "968377": "PCN", + "965724": "PCN", + "965723": "PCN", + "966134": "PCN", + "968249": "PCN", + "968383": "PCN", + "969110": "PCN", + "968382": "PCN", + "969099": "PCN", + "969111": "PCN", + "969108": "PCN", + "984770": "PCN", + "968379": "PCN", + "968378": "PCN", + "968247": "PCN", + "965719": "PCN", + "965991": "PCN", + "965990": "PCN", + "965989": "PCN" + }, + { + "Product Collection": "Cyclone® V SE SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "110000", + "Adaptive Logic Modules (ALM)": "41509", + "Adaptive Logic Module (ALM) Registers": "166036", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "6.191 Mb", + "Digital Signal Processing (DSP) Blocks": "112", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Single Arm* Cortex*-A9 or Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U484, U672, F896", + "Additional Information": "View now", + "MM#": "973784", + "Spec Code": "SRBND", + "Ordering Code": "5CSEMA6F31C8N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "973782": "PCN", + "973781": "PCN", + "970640": "PCN", + "969177": "PCN", + "973784": "PCN", + "968980": "PCN", + "969116": "PCN", + "968387": "PCN", + "969114": "PCN", + "968386": "PCN", + "969115": "PCN", + "970639": "PCN", + "969122": "PCN", + "970638": "PCN", + "973780": "PCN", + "970637": "PCN", + "973779": "PCN", + "970636": "PCN", + "968250": "PCN", + "965721": "PCN", + "968385": "PCN", + "969112": "PCN", + "968384": "PCN", + "969113": "PCN", + "966124": "PCN", + "965720": "PCN" + }, + { + "Product Collection": "Cyclone® V ST SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "85000", + "Adaptive Logic Modules (ALM)": "32075", + "Adaptive Logic Module (ALM) Registers": "128300", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.45 Mb", + "Digital Signal Processing (DSP) Blocks": "87", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.144 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896", + "Additional Information": "View now", + "MM#": "968388", + "Spec Code": "SR70Z", + "Ordering Code": "5CSTFD5D5F31I7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968388": "PCN" + }, + { + "Product Collection": "Cyclone® V ST SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "110000", + "Adaptive Logic Modules (ALM)": "41509", + "Adaptive Logic Module (ALM) Registers": "166036", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "6.191 Mb", + "Digital Signal Processing (DSP) Blocks": "112", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "6.144 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "F896", + "Additional Information": "View now", + "MM#": "966137", + "Spec Code": "SR54T", + "Ordering Code": "5CSTFD6D5F31I7N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "966137": "PCN" + }, + { + "Product Collection": "Cyclone® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "25000", + "Adaptive Logic Modules (ALM)": "9434", + "Adaptive Logic Module (ALM) Registers": "37736", + "Fabric and I/O Phase-Locked Loops (PLLs)": "5", + "Maximum Embedded Memory": "1.538 Mb", + "Digital Signal Processing (DSP) Blocks": "36", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "145", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "69", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U672", + "Additional Information": "View now", + "MM#": "969328", + "Spec Code": "SR7UE", + "Ordering Code": "5CSXFC2C6U23C8N", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "968389": "PCN", + "969121": "PCN", + "969326": "PCN", + "968391": "PCN", + "969328": "PCN" + }, + { + "Product Collection": "Cyclone® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "40000", + "Adaptive Logic Modules (ALM)": "15094", + "Adaptive Logic Module (ALM) Registers": "60376", + "Fabric and I/O Phase-Locked Loops (PLLs)": "5", + "Maximum Embedded Memory": "2.931 Mb", + "Digital Signal Processing (DSP) Blocks": "84", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "145", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "69", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U672", + "Additional Information": "View now", + "MM#": "978998", + "Spec Code": "SRCZF", + "Ordering Code": "5CSXFC4C6U23I7LN", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965727": "PCN", + "969123": "PCN", + "969125": "PCN", + "978998": "PCN", + "973785": "PCN", + "968390": "PCN" + }, + { + "Product Collection": "Cyclone® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "85000", + "Adaptive Logic Modules (ALM)": "32075", + "Adaptive Logic Module (ALM) Registers": "128300", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "4.45 Mb", + "Digital Signal Processing (DSP) Blocks": "87", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U672, F896", + "Additional Information": "View now", + "MM#": "969555", + "Spec Code": "SR805", + "Ordering Code": "5CSXFC5D6F31I7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "968253": "PCN", + "968252": "PCN", + "969334": "PCN", + "969555": "PCN", + "968393": "PCN", + "969327": "PCN", + "969551": "PCN", + "965729": "PCN", + "965728": "PCN" + }, + { + "Product Collection": "Cyclone® V SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2012", + "Lithography": "28 nm", + "Logic Elements (LE)": "110000", + "Adaptive Logic Modules (ALM)": "41509", + "Adaptive Logic Module (ALM) Registers": "166036", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "6.191 Mb", + "Digital Signal Processing (DSP) Blocks": "112", + "Digital Signal Processing (DSP) Format": "Variable Precision", + "Hard Processor System (HPS)": "Dual-core Arm* Cortex*-A9", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR2, DDR3, LPDDR2", + "Maximum User I/O Count†": "288", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, HiSpi, SLVS, Sub-LVDS", + "Maximum LVDS Pairs": "144", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "9", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "3.125 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen1", + "FPGA Bitstream Security": "Yes", + "Analog-to-Digital Converter": "No", + "Package Options": "U672, F896", + "Additional Information": "View now", + "MM#": "973786", + "Spec Code": "SRBNF", + "Ordering Code": "5CSXFC6C6U23C7N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "970646": "PCN", + "970645": "PCN", + "970644": "PCN", + "970642": "PCN", + "969559": "PCN", + "969558": "PCN", + "965732": "PCN", + "968395": "PCN", + "965731": "PCN", + "973786": "PCN", + "966139": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Mobile Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'22", + "TDP": "3.7 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "Supports Memory Overclocking": "IA, Memory", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "28", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 10 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99ALLM", + "Spec Code": "SRL2Y", + "Ordering Code": "FH82HM670", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99ALLM": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Mobile Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'22", + "TDP": "3.7 W", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "28", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 10 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99ALLN", + "Spec Code": "SRL2Z", + "Ordering Code": "FH82WM690", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99ALLN": "PCN" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q3'21", + "Bus Speed": "8 GT/s", + "TDP": "2.9 W", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Configuration": "-Up to 10 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 10 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AAMG", + "Spec Code": "SRKLS", + "Ordering Code": "FH82HM570E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AAMG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q3'21", + "Bus Speed": "8 GT/s", + "TDP": "2.9 W", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "-Up to 10 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 10 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AAMH", + "Spec Code": "SRKLT", + "Ordering Code": "FH82QM580E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AAMH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q3'21", + "Bus Speed": "8 GT/s", + "TDP": "3.4 W", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "-Up to 10 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 10 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AAMF", + "Spec Code": "SRKLR", + "Ordering Code": "FH82RM590E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AAMF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'21", + "Bus Speed": "8 GT/s", + "TDP": "3.4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Configuration": "-Up to 8 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 8 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AC55", + "Spec Code": "SRKMA", + "Ordering Code": "FH82HM570", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC55": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'21", + "Bus Speed": "8 GT/s", + "TDP": "3.4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "-Up to 10 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 10 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC5F", + "Spec Code": "SRKMC", + "Ordering Code": "FH82QM580", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC5F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Mobile Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'21", + "Bus Speed": "8 GT/s", + "TDP": "3.4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "-Up to 10 USB3.2 Gen 2x1 (10Gb/s) Ports -Up to 10 USB3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC5D", + "Spec Code": "SRKMB", + "Ordering Code": "FH82WM590", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC5D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Mobile Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 6 USB 3.2 Gen 2 Ports - Up to 10 USB 3.2 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "999RGV", + "Spec Code": "SRH17", + "Ordering Code": "FH82WM490", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RGV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Mobile Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Configuration": "8 Total USB 3.2 Ports - Up to 4 USB 3.2 Gen 2 Ports - Up to 8 USB 3.2 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99A034", + "Spec Code": "SRJAU", + "Ordering Code": "FH82HM470", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99A034": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Mobile Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 6 USB 3.2 Gen 2 Ports - Up to 10 USB 3.2 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes" + }, + { + "Product Collection": "Intel® 300 Series Mobile Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "NO", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Configuration": "8 Total USB 3.1 Ports - Up to 4 USB 3.1 Gen 2 Ports - Up to 8 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "964269", + "Spec Code": "SR40B", + "Ordering Code": "FH82HM370", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964269": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 300 Series Mobile Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "NO", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.1 Ports - Up to 6 USB 3.1 Gen 2 Ports - Up to 10 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Package Size": "25mm x 24mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "964271", + "Spec Code": "SR40D", + "Ordering Code": "FH82QM370", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964271": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Mobile Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "2.6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11.6", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "952186", + "Spec Code": "SR30W", + "Ordering Code": "GL82HM175", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "952186": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Mobile Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "2.6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11.6", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "952185", + "Spec Code": "SR30V", + "Ordering Code": "GL82QM175", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "952185": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Mobile Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "2.6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "943509", + "Spec Code": "SR2C4", + "Ordering Code": "GLHM170", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943509": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Mobile Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "2.6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "943508", + "Spec Code": "SR2C3", + "Ordering Code": "GLQM170", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943508": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Included Items": "(1) Metal bracket (1) Extension bracket (1) Power cable", + "Description": "Accelerator Card Kit for Intel® Server System D50TNP2MFALAC Acceleration Module Supports Nvidia* Tesla* A100 accelerator add-in card", + "MM#": "99AJJC", + "Ordering Code": "TNPACCLBZA100", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Included Items": "(1) Metal bracket (1) Power cable", + "Description": "Accelerator Card Kit DC that supports programmable acceleration card with Intel® Stratix 10 SX FPGA add-in card for Intel® Acceleration Module 2U Full-Width Air-Cooled D50TNP2MFALAC", + "MM#": "99A2AR", + "Ordering Code": "TNPACCLBZDC", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471804000" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Included Items": "(1) Metal bracket (1) Extension bracket (1) Power cable", + "Description": "Accelerator card kit for Intel® Acceleration Module 2U Full-Width Air-Cooled D50TNP2MFALAC Supports Nvidia *Tesla* V100 accelerator add-in card", + "MM#": "99A2HZ", + "Ordering Code": "TNPACCLBZV100", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471804000" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2023", + "Description": "4-port internal x16 PCIe Gen3 retimer for enabling 4 x4 OCuLink connections to internal NVMe drives. For use in Riser2 of S2600WF family of products", + "MM#": "958240", + "Ordering Code": "AXXP3RTX16040", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "958240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "SB X8 4 Port Switch AICThis switch AIC is used to increase the number of PCIe SSD drives within the system by 4.The 4 Drive Switch is a low profile MD2 form factor PCIe card.Additional Required Accessory:One of the following cable kits is required to connect the 4 port switch to the HSBP in R2208, R2208+8 and R2224 systems:A2U4PSWCXCXK1A2U4PSWCXCXK2", + "Description": "Accessory 4-Port PCIe Gen3 x8 Switch AIC. Connects 4x NVMe drives.", + "MM#": "958241", + "Ordering Code": "AXXP3SWX08040", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "958241": "MDDS" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "SB X8 8 Port Switch AICThis switch AIC is used to increase the number of PCIe SSD drives within the system by 8.The 8 Drive Switch is a full height form factor PCIe card.Additional Required Accessory:One of the following cable kits is required to connect the 8 port switch to the HSBP in R2208, R2208+8 and R2224 systems:A2U8PSWCXCXK1A2U8PSWCXCXK2A2U8PSWCXCXK3", + "Description": "Accessory 8-Port PCIe Gen3 x8 Switch AIC. Connects 8x NVMe drives.", + "MM#": "958242", + "Ordering Code": "AXXP3SWX08080", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000" + }, + { + "Product Collection": "Add-in Cards", + "Code Name": "Products formerly Monte Vista", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, May 11, 2020", + "Last Order": "Saturday, August 1, 2020", + "Last Receipt Attributes": "Tuesday, December 1, 2020", + "Sockets Supported": "N/A", + "TDP": "235 W", + "Description": "Full height, full width, near full length PCIe add-in card for media transcode and graphics rendering. 235W TDP. Comprised of 3 x Intel® Xeon® processors E3-1585L v5", + "MM#": "954907", + "Ordering Code": "VCA1585LMV", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471804000", + "954907": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Add-in Cards", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "1U Riser3 Retimer Card, cables, drive carriers", + "Description": "1U Riser3 Retimer Card supporting 2x PCIe* SSD drives, includes cables and drive carriers(for Intel® Server System R100WT family) AXX4PX8HDAIC" + }, + { + "Product Collection": "Add-in Cards", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "4P NVMe, x8 Host PCIe Switch AIC, FH & LP brackets, cables", + "Description": "Low-profile PCIe* Switch Add-in Card for 4x NVMe* SSD" + }, + { + "Product Collection": "Accelerator Options", + "Status": "Launched", + "Launch Date": "Q4'21", + "Vertical Segment": "Server", + "Use Conditions": "Communications Commercial Temp", + "Product Brief": "View now" + }, + { + "Product Collection": "Accelerator Options", + "Status": "Launched", + "Launch Date": "Q2'18", + "TDP": "21 W", + "Supported Operating Systems": "Linux*", + "Operating Temperature Range": "50°C to 0°C", + "Operating Temperature (Maximum)": "0 °C", + "Operating Temperature (Minimum)": "50 °C", + "Embedded Options Available": "No", + "Description": "ACCEL CARD x8", + "Product Brief": "View now", + "Data Rate Per Port": "Up to 50G", + "Board Form Factor": "PCIe", + "Package Size": "2.7\" x 6.6\"", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "MM#": "99AHH4", + "Ordering Code": "IQA89601G3P5", + "ECCN": "5A002R", + "CCATS": "G171158L2", + "US HTS": "8473301180", + "999L51": "PCN", + "99AHH4": "PCN" + }, + { + "Product Collection": "Accelerator Options", + "Status": "Launched", + "Launch Date": "Q2'18", + "TDP": "23 W", + "Supported Operating Systems": "Linux*", + "Operating Temperature Range": "50°C to 0°C", + "Operating Temperature (Maximum)": "0 °C", + "Operating Temperature (Minimum)": "50 °C", + "Embedded Options Available": "No", + "Description": "ACCEL CARD x16", + "Product Brief": "View now", + "Data Rate Per Port": "Up to 100G", + "Board Form Factor": "PCIe", + "Package Size": "2.7\" x 6.6\"", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "MM#": "99AHH3", + "Ordering Code": "IQA89701G3P5", + "ECCN": "5A002R", + "CCATS": "G171158L2", + "US HTS": "8473301180", + "999L52": "PCN\n |\n MDDS", + "99AHH3": "PCN" + }, + { + "Product Collection": "Accelerator Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Included Items": "(1) Intel® Quick Assist Accelerator I/O Module", + "Description": "Intel® Quick Assist Accelerator I/O Module Accessory", + "MM#": "920561", + "Ordering Code": "AXXQAAIOMOD", + "ECCN": "HOLD", + "CCATS": "NA", + "US HTS": "8471801000", + "920561": "MDDS" + }, + { + "Product Collection": "Accelerator Options", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Included Items": "(1) Intel® Quick Assist Accelerator PCIe card", + "Description": "Intel® Quick Assist Accelerator PCIe card Accessory", + "MM#": "920562", + "Ordering Code": "AXXQAAPCIE", + "ECCN": "HOLD", + "CCATS": "NA", + "US HTS": "8471801000", + "920562": "MDDS" + }, + { + "Product Collection": "Bezel Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Description": "2U Bezel Kit", + "MM#": "99A5T7", + "Ordering Code": "CYP2UBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Bezel Options", + "Code Name": "Products formerly Mystic Pass", + "Status": "Launched", + "Launch Date": "Q2'20", + "Expected Discontinuance": "2023", + "Included Items": "(1) 1U bezel", + "Description": "1U bezel for 1U family of rack chassis.", + "MM#": "99A2D7", + "Ordering Code": "MYP1UBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Bezel Options", + "Status": "Announced", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2H'20", + "Description": "Bezel spare with locking key for RAF1000 storage systems." + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) 2U Bezel A2UBEZEL, (2) snap-in badges and (1) snap-on swoosh for branding", + "Description": "2U locking Bezel A2UBEZEL for 2U family of rack chassis" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) 1U Bezel A1UBEZEL, (2) snap on badges and (1) snap-on swoosh for branding", + "Description": "1U locking Bezel A1UBEZEL for 1U family of rack chassis" + }, + { + "Product Collection": "Bezel Options", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) Security Door AUPBEZEL4UD for Intel® Server Chassis P4000 Family, compatible with AUPBEZEL4UF", + "Description": "Rack bezel accessory-Security door for Intel® Server Chassis P4000 in rack configuration. Only includes security door", + "MM#": "915637", + "Ordering Code": "AUPBEZEL4UD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915637": "MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) Bezel frame for Intel® Server Chassis P4000 Family, (2) Rack Handles", + "Description": "Rack bezel kit for converting Intel® Server Chassis P4000 Family pedestal server chassis to rack chassis", + "MM#": "915636", + "Ordering Code": "AUPBEZEL4UF", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915636": "MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Description": "The black bezel ADWRXBLACK is for Intel(R) Server System SR1630HGPRX", + "MM#": "917915", + "Ordering Code": "ADWRXBLACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200040", + "917915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Description": "1U Chassis Bezel", + "MM#": "909420", + "Ordering Code": "A1695GPRXBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "909420": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Description": "Bezel for the SR2612UR Server System", + "MM#": "909828", + "Ordering Code": "ASR2612BEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "909828": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel for use with Local Control Panel on SR26xx/25xx/24xx", + "MM#": "857586", + "Ordering Code": "ADRLCDBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "857586": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel for use with LCP Control Panel on SR1550/1625", + "MM#": "879209", + "Ordering Code": "ASR1550LCDBEZ", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "879209": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel for Mini Control Panel", + "MM#": "879211", + "Ordering Code": "ASR1550MINBEZ", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "879211": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel for Standard Control Panel", + "MM#": "857675", + "Ordering Code": "ADRBEZBLACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "857675": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel for Standard Control Panel", + "MM#": "865064", + "Ordering Code": "ADWBEZBLACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "865064": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Black Bezel with Optional Cosmetic Outer Bezel", + "MM#": "888348", + "Ordering Code": "AHJBEZBLACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "888348": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "4U Front Bezel", + "MM#": "861922", + "Ordering Code": "AHW4URBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "861922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "One upper and one lower bezel customization panel", + "Description": "Chassis bezel branding panels" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Description": "Black Bezel for Standard Control Panel", + "MM#": "879406", + "Ordering Code": "ASR1550BEZ", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "879406": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Bezel Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Description": "Bezel with Door", + "MM#": "871862", + "Ordering Code": "APP3STDBEZEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "871862": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Kelton Pass", + "Status": "Launched", + "Launch Date": "Q1'21", + "Included Items": "(1) Slimline SAS Cable x8 (CPU to Riser0) 390mm (1) Slimline SAS Cable x8 (CPU to Riser0) 485mm (1) Slimline SAS Cable x8 (CPU to Riser0) 530mm", + "Description": "Cable kit for M70KLP4S2UHH system to upgrade Riser0 when more than 6 PCIe Slot need it.", + "MM#": "99AF8D", + "Ordering Code": "KLPCBLR0FHK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Kelton Pass", + "Status": "Launched", + "Launch Date": "Q1'21", + "Included Items": "(1) Slimline SAS Cable x8 (CPU to Riser1) 340mm", + "Description": "Cable kit for M70KLP4S2UHH system to upgrade Riser1when more than 6 PCIe Slot need it.", + "MM#": "99AF8G", + "Ordering Code": "KLPCBLR1HHK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Mystic Pass", + "Status": "Discontinued", + "Launch Date": "Q2'20", + "Expected Discontinuance": "2022", + "EOL Announce": "Thursday, April 7, 2022", + "Last Order": "Friday, July 1, 2022", + "Last Receipt Attributes": "Wednesday, August 31, 2022", + "Included Items": "(1) Front control panel cable (1) USB 3.0 cable (1) PMBus cable (1) Backplane 4-pin power cables (1) Main power cable (1) CPU power cable", + "Description": "Internal cables kit for the Intel® Server System M20MYP1UR." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'20", + "Expected Discontinuance": "2023", + "Included Items": "(1)720 mm and 685 mm long, cable kit MiniSAS HD right angle to Oculink Verticle angle connector. (1)750 mm and 705 mm long, cable kit MiniSAS HD right angle to Oculink Verticle angle connector.", + "Description": "Cable Kit dualmode 720mm & 750mm MiniSAS HD right angle to Oculink Verticle angle connector. Connects 4x NVMe Drive to Raid Module. Used with 1U WFP systems", + "MM#": "984361", + "Ordering Code": "A1U4PTRICXCVK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'18", + "Expected Discontinuance": "2023", + "Included Items": "1U Retimer accessory cable kit, Riser 1 or Riser 2 (1 cable included). Contains the following OCuLink bundled cable:945mm long, four straight OCuLink SFF-8611connectors to four straight OCuLink SFF-8611 connectorsUsed in the R1208 to connect AXXP3RTX16040 4-Port PCIe SSD Retimer AIC to a PCIe SSD capable HSBP SSD ports 4-7", + "Description": "Cable Kit Oculink 1U 4 port Retimer Card for Riser 1 or 2. Connects 4x NVMe drives.", + "MM#": "958358", + "Ordering Code": "A1U4PRTCXCXK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'18", + "Expected Discontinuance": "2023", + "Included Items": "2U Retimer accessory cable kit, Riser 1 or Riser 2 (1 cable included). Contains the following OCuLink bundled cable:815mm long, straight OCuLink SFF-8611connectors to straight OCuLink SFF-8611 connectorsUsed in the R2208 to connect AXXP3RTX16040 4-Port PCIe SSD Retimer AIC to a PCIe SSD capable HSBP SSD ports (1 cable kit required per retimer installed)", + "Description": "Cable Kit Oculink 2U 4 port Switch Card for Riser 1 or 2 to Left Drive Bay. Connects 4x NVMe drives.", + "MM#": "958264", + "Ordering Code": "A2U4PRTCXCXK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Status": "Announced", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2H'20", + "Description": "3m straight SFF8644 to straight SFF8644 HD cable for Intel® Storage System RAF1000JSP." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q1'18", + "Expected Discontinuance": "2023", + "Included Items": "1U 4 port Switch accessory cable kit (1 cable included). Contains the following OCuLink bundled cable:890mm long, bundled cable kit (1 cable included) right-angle OCuLink SFF-8611 connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R1208 to connect switch AIC to HSBP PCIe SSD ports.", + "Description": "Cable Kit Oculink 1U 4 port Switch Card for connecting 4x NVMe drives.", + "MM#": "964522", + "Ordering Code": "A1U4PSWCXCVK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q1'18", + "Expected Discontinuance": "2023", + "Included Items": "2U 4 port Switch accessory cable kit, Riser 2 or Riser 3 (1 cable included). Contains the following OCuLink bundled cable:875mm long, bundled cable kit (1 cable included) straight OCuLink SFF-8611 connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R2208+8 to connect switch AIC to HSBP PCIe SSD ports (SSD ports depend on installed location of the switch AIC)", + "Description": "Cable Kit Oculink 2U 4 port Switch Card for Riser 1 or 2 to Middle Drive Bay. Connects 4x NVMe drives.", + "MM#": "958267", + "Ordering Code": "A2U4PSWCXCXK2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Redundant FAN Cable assembly", + "Description": "Redundant FAN Cable assembly", + "MM#": "959900", + "Ordering Code": "FXXSTCBLFAN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) 95mm QAT Bridge cable", + "Description": "95mm QAT Bridge cableFor Intel® Server Board S2600STQ only", + "MM#": "959878", + "Ordering Code": "AXXSTCBLQAT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "235 mm long, accessory cable kit (1 cable included), straight IFP28 connector to LEC54B right angle – left exit connectorUsed to connect fabric processor #2 to the IFT Carrier mezzanine board", + "Description": "Cable Kit IFP Omnipath 235 mm Left connector. Connects CPU0 to AWF1PFABKITM Kit and CPU1 to AWF1PFABKITP Kit." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "235 mm long, spare cable kit (1 cable included), straight IFP28 plug to LEC54B right angle – right exit connectorUsed to connect fabric processor #1 to the IFT Carrier mezzanine board", + "Description": "Cable Kit IFP Omnipath 235 mm Right connector. Connects CPU0 to AWF1PFABKITP Kit." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "2U 4 port Switch accessory cable kit, Riser 1 or Riser 2 (1 cable included). Contains the following OCuLink bundled cable:755mm long, bundled cable kit (1 cable included) straight OCuLink SFF-8611 connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R2208, R2208+8 and R2224 to connect switch AICs to HSBP PCIe SSD ports (SSD ports depend on installed location of the switch AIC)", + "Description": "Cable Kit Oculink 2U 4 port Switch Card for Riser 1 or 2 to Left Drive Bay. Connects 4x NVMe drives.", + "MM#": "958266", + "Ordering Code": "A2U4PSWCXCXK1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "2U 8 port Switch accessory cable kit, Riser 1 or Riser 2 (2 cables included). Contains the following OCuLink bundled cables:725mm long, bundled cable kit (2 cables included) straight OCuLink SFF-8611 connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R2208, R2208+8 and R2224 to connect switch AICs to HSBP PCIe SSD ports (SSD ports depend on installed location of the switch AIC)", + "Description": "Cable Kit Oculink 2U 8 port Switch Card for Riser 1 or 2 to Left Drive Bay. Connects 8x NVMe drives.", + "MM#": "958365", + "Ordering Code": "A2U8PSWCXCXK1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "2U 8 port Switch accessory cable kit, Riser 1 or Riser 2 (2 cables included). Contains the following OCuLink bundled cables:875mm long, bundled cable kit (2 cables included) straight OCuLink SFF-8611 connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R2208+8 and R2224 to connect switch AIC installed in Riser 2 to HSBP PCIe SSD ports 0 -7", + "Description": "Cable Kit Oculink 2U 8 port Switch Card for Riser 1 or 2 to Middle Drive Bay. Connects 8x NVMe drives.", + "MM#": "958270", + "Ordering Code": "A2U8PSWCXCXK2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "Included Items": "2U 8 port Switch accessory cable kit, Riser 2 (2 cables included). Contains the following OCuLink bundled cables:810mm long, bundled cable kit (2 cables included) straight OCuLink SFF-8611connectors to straight/right angle OCuLink SFF-8611 connectorsUsed in the R2224 to connect switch AIC 2 installed in Riser 2 to HSBP PCIe SSD ports 0 -7", + "Description": "Cable Kit Oculink 2U 8 port Switch Card for Riser 1 or 2 to Right Drive Bay. Connects 8x NVMe drives.", + "MM#": "958272", + "Ordering Code": "A2U8PSWCXCXK3", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3.17", + "Expected Discontinuance": "2023", + "Included Items": "(1) – 30-pin 920mm front panel cable(1) – 800mm USB 3.0 cable for front panel", + "Description": "Spare Front Panel Cable Kit", + "MM#": "959730", + "Ordering Code": "AXXSTFPCBLKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) – 4-pin to 6-pin 350mm I2C cable(1) – 4-pin to 5-pin 350mm I2C cable(1) – 5-pin to 6-pin 220mm I2C cable(1) – 6-pin to 6-pin 220mm I2C cable(1) – 5-pin to 5-pin 220mm I2C cable(1) – 5-pin to 5-pin 75mm I2C cable(1) – “Y” shaped 150mm power cable for backplane", + "Description": "I2C cable kit E-CBL-KIT-I2CDRV", + "MM#": "960398", + "Ordering Code": "AXXSTI2CCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) - LAN Riser Card with full height bracket pre-installed (1) - 30-Pin Front Panel cable (1) - Low profile bracket(2) - Screws", + "Description": "Lan Riser accessory kit for Low Profile, half length, PCIe* add-in card, supports 2 SFP+ connectors", + "MM#": "960190", + "Ordering Code": "AXXSTSFPPKIT", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8517620090" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "370 mm long, accessory cable kit (1 cable included), straight IFP28 connector to LEC54B right angle – right exit connectorUsed to connect fabric processor #2 to the PCIe IFT Carrier add-in board", + "Description": "Cable Kit IFP Omnipath 370 mm Straight connector. Connects CPU1 to AWF1PFABKITM Kit." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) cable bundle", + "Description": "450mm Server Board to HSBP OCuLink cable Straight to Right angled (1 bundled cable included)", + "MM#": "959880", + "Ordering Code": "AXXSTCBLHSBP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) 625mm OCuLink cable", + "Description": "OCuLink Cable kit AXXCBL625CVCX to connect to the 4 port switch", + "MM#": "960191", + "Ordering Code": "AXXCBL625CVCX", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2019", + "Included Items": "(1) 665mm OCuLink cable kit bundle", + "Description": "665mm Hot Swap Back Plane (HSBP) to Retimer Add-in Card (AIC) OCuLink cable kit" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "470 mm long, spare cable kit (1 cable included), straight OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed in R1208, R2208, R2208+8, and R2224 systems to connect a server board OCuLink SSD connector to a HSBP SSD connector", + "Description": "Cable Kit Oculink 470mm Vertical to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "958258", + "Ordering Code": "AXXCBL470CVCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "530 mm long, spare cable kit (1 cable included), straight OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed in R1208, R2208, R2208+8, and R2224 systems to connect the server board OCuLink SSD connector to a HSBP SSD connector", + "Description": "Cable Kit Oculink 530mm Vertical to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "958260", + "Ordering Code": "AXXCBL530CVCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000", + "958260": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "600 mm long, accessory cable kit (1 cable included), straight OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed to connect a server board OCuLink connector SSD#3 to HSBP drive 11 of the R2312 system SKUs", + "Description": "Cable Kit Oculink 600mm Vertical to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "959345", + "Ordering Code": "AXXCBL600CVCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "620 mm long, spare cable kit (1 cable included), right angle OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed to connect a server board OCuLink connector SSD#2 to HSBP drive 10 of the R2312 system SKUs", + "Description": "Cable Kit Oculink 620mm Right to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "958263", + "Ordering Code": "AXXCBL620CRCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "700 mm long, spare cable kit (1 cable included), straight OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed in R1208, R2208, R2208+8, and R2224 systems to connect the server board OCuLink SSD connector to a HSBP SSD connector", + "Description": "Cable Kit Oculink 700mm Vertical to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "958261", + "Ordering Code": "AXXCBL700CVCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000", + "958261": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "700 mm long, cable kit (2 cables included) straight SFF-8643 connector to dual straight OCuLink SFF-8611 connectorsUsed to connect Trimode RAID AICs to HSBP PCIe #0 & PCIe #1 and PCIe #2 & PCIe #3", + "Description": "Cable Kit Trimode 700mm MiniSAS HD Straight to Oculink Verticle angle connector. Connects 2x NVMe Drive to Raid Module.", + "MM#": "958273", + "Ordering Code": "AXXCBL700HDCV", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "800 mm long, spare cable kit (1 cable included), straight OCuLink SFF-8611 connector to right angle OCuLink SFF-8611 connectorUsed in R1208, R2208, R2208+8, and R2224 systems to connect the server board OCuLink SSD connector to a HSBP SSD connector", + "Description": "Cable Kit Oculink 800mm Vertical to Right angle connector. Connects 1x NVMe Drive.", + "MM#": "958262", + "Ordering Code": "AXXCBL800CVCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "430 mm long, spare cable kit (1 cable included), bundled straight 430mm, 2x12 HFI Sideband Y Cable, Single Omni-Path Sideband IFT Carrier to dual Omni-Path CPU connectors Used to connect SB OmniPath IFT Carrier board or Mezzaine to the server board in support of fabric processors", + "Description": "Cable Kit IFT  Omnipath 430 mm Sideband Y Cable. Connects Carrier Kit Mezz/PCIe to Motherboard." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(2) – 4pin to SATA power cable", + "Description": "SATA Power adapter cable kit", + "MM#": "960399", + "Ordering Code": "AXXSTCBLSATA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "Kit Includes: (1) VGA video cable, (1) Rear panel mounting bracket for VGA port", + "Description": "Video Debug Cable Option for S2600BP Family", + "MM#": "958366", + "Ordering Code": "AXXBPVIDCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000", + "958366": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "650 mm long, spare/accessory cable kit (2 cables included), straight HD Mini SAS SFF8643 connector to right angle HD Mini SAS SFF8643 connectorUsed in a R1208 as a spare and/or accessory to connect mSAS-HD connectors on the server board to the HSBP to support drives 0-3", + "Description": "Cable Kit MiniSAS HD 650mm Straight to Right angle connector Tall 27mm. Connects 4x SAS/SATA Drives.", + "MM#": "958254", + "Ordering Code": "AXXCBL650HDHRT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "850 mm long, spare/accessory cable kit (2 cables included), straight HD Mini SAS SFF8643 connector to right angle HD Mini SAS SFF8643 connectorUsed in a R1208 as a spare and/or accessory to connect mSAS-HD connectors on the server board to the HSBP to support drives 4-7", + "Description": "Cable Kit MiniSAS HD 850mm Straight to Right angle connector Short 18mm. Connects 4x SAS/SATA Drives.", + "MM#": "958255", + "Ordering Code": "AXXCBL850HDHRS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000", + "958255": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "850 mm long, cable kit (2 cables included), straight HD Mini SAS SFF8643 connector to right angle HD Mini SAS SFF8643 connectorUsed in a R1304 as a spare and/or accessory to connect mSAS-HD connectors on the server board to the HSBP to support drives 0-3", + "Description": "Cable Kit MiniSAS HD 850mm Straight to Right angle connector Tall 27mm. Connects 4x SAS/SATA Drives.", + "MM#": "958257", + "Ordering Code": "AXXCBL850HDHRT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Included Items": "Kit Includes: (1) VGA video cable, (2) Rear panel mounting bracket for VGA port", + "Description": "Video Debug Cable Option for S7200AP Family" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 340mm cables", + "Description": "340mm cable spare, miniSAS HD (8643) to miniSAS (8087)" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 570mm cables", + "Description": "570mm cable spare, miniSAS HD (8643) to miniSAS (8087)" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) cables connecting onboard SATA connector to miniSAS connectors.", + "Description": "Cable kit to connect SATA connectors on S1200SP board to miniSAS connectors on backplane (upgrade P4000XXSFDR with backplane). Two cables in the kit." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) cables in the kit, 7-pin SATA to SFF-8643, 270 mm and 530 mm long", + "Description": "2 cables to support connection from onboard SATA connectors to 12Gb/s backplane." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 585 mm straight SFF8643 to right angle mini SAS right connector cables", + "Description": "Cable kit with two 585mm cables for straight SFF8643 to right angle mini SAS right connectors" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'23", + "Included Items": "(2) 730 mm straight SFF8643 to right angle 7-pin connector cables", + "Description": "Cable kit with two 730 mm cables for straight SFF8643 to right angle 7-pin connectors", + "MM#": "937316", + "Ordering Code": "AXXCBL900HD7R", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "937316": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) power cable to provide power to rear HDDs and fixed SSDs (1) fan out data cable Mini-SASHD to four 7-pin", + "Description": "Cable kit with two cables to enable fixed SSD and rear drive simultaneously in R2000WT family of products", + "MM#": "937328", + "Ordering Code": "A2UCBLSSD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "937328": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) 730mm Cable and (1) 800mm cable with straight SFF8643 to right angle SFF8643 connectors", + "Description": "Combination cable kit containing two cables used in the Intel® Server System R1000WT family for onboard SATA port connectivity with right angle SFF8643 to straight SFF8643 connectors" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q4'23", + "Included Items": "(2) 800 mm long, straight SFF8643 to straight SFF8643", + "Description": "Cable kit with two 800mm cable for straight SFF8643 to straight SFF8643 connectors", + "MM#": "937312", + "Ordering Code": "AXXCBL800HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "937312": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 800mm Cables with straight SFF8643 to straight SFF8087 connectors", + "Description": "Cable kit with two 800mm cable for straight SFF8643 to SFF8087 connectors" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 875mm long straight SFF8643 to straight SFF8087 cables", + "Description": "Cable kit with two 875mm cable for straight SFF8643 to SFF8087 connectors. Required in WT 2U systems with 6G SAS ROC module or 6G SAS RAID cards. (1304 and 1208 with HBA, 2216,2224,2312 with HBA/module)" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 950mm Cables with straight SFF8643 to straight SFF8087 connectors", + "Description": "Cable kit with two 950mm cable for straight SFF8643 to straight SFF8087 connectors" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(3) 165mm Cables, (1) 185mm cable, (1) 245mm cable, and (1) 300mm cable with SFF8643 to SFF8087 connectors", + "Description": "Cable Kit with SFF8643 to SFF8087 connectors for installing an integrated expander in a 2U rack chassis with mixed connector requirements" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2023", + "Included Items": "(2) 380mm Cables with straight SFF8643 to straight SFF8643 connectors", + "Description": "Cable kit with two 380mm cables for straightSFF8643 to straight SFF8643 connectors", + "MM#": "936427", + "Ordering Code": "AXXCBL380HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "936427": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'23", + "Included Items": "(2) 450mm Cables with straight SFF8643 to 7-pin SATA connectors", + "Description": "Cable kit with two 450mm cables for straight SFF8643 to 7-pin SATA connectors", + "MM#": "936428", + "Ordering Code": "AXXCBL450HD7S", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "936428": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q4'23", + "Included Items": "(2) 650mm Cables for straight SFF8643 to straight SFF8643 connectors", + "Description": "Cable kit with two 650mm cables for straight SFF8643 to straight SFF8643 connectors", + "MM#": "937129", + "Ordering Code": "AXXCBL650HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "937129": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Launched", + "Launch Date": "Q3 14", + "Expected Discontinuance": "2023", + "Included Items": "(1) 13 foot DC power cable.", + "Description": "Spare power cable for the DC power supply. 8 feet long. Connects directly to power supply, replacing O-ring terminal adapter", + "MM#": "922062", + "Ordering Code": "AXXDCCRPSCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "922062": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2023", + "Included Items": "(2) 730mm Cables with straight SFF8643 to straight SFF8643 connectors", + "Description": "Cable kit with two 730mm cable for straight SFF8643 to SFF8643 connectors", + "MM#": "936178", + "Ordering Code": "AXXCBL730HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "936178": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'23", + "Included Items": "(2) 875mm Cables with straight SFF8643 to straight SFF8643 connectors", + "Description": "Cable kit with two 875mm cable for straight SFF8643 to SFF8643 connectors", + "MM#": "936123", + "Ordering Code": "AXXCBL875HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "936123": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'23", + "Included Items": "(2) 950mm Cables with straight SFF8643 to straight SFF8643 connectors", + "Description": "Cable kit with two 950mm cables for straight SFF8643 to SFF8643 connectors", + "MM#": "936122", + "Ordering Code": "AXXCBL950HDHD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "936122": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q2'23", + "Included Items": "(2) 650mm long cables, straight MiniSAS-HD to straight MiniSAS", + "Description": "Cable Kit with two 650mm High Density Mini-SAS to 8087 Mini-SAS cables", + "MM#": "927237", + "Ordering Code": "AXXCBL650HDMS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "927237": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) 730mm long cables, cable kit cabstraight MiniSAS-HD to straight MiniSAS", + "Description": "Cable Kit with two 730mm High Density Mini-SAS to 8087 Mini-SAS cables" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Rainbow Pass", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Sunday, October 30, 2016", + "Last Order": "Sunday, April 30, 2017", + "Last Receipt Attributes": "Thursday, August 31, 2017", + "Included Items": "SAS/SATA 4 Drive cable", + "Description": "SAS/SATA cable - 8087 connector fans out to 4x 7 pin connectors", + "MM#": "930878", + "Ordering Code": "AXXE34DRVCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "930878": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q3'13", + "Expected Discontinuance": "2023", + "Included Items": "(1) GPGPU 17in long cable", + "Description": "GPGPU cable accessory AXXGPGPU, 17in long (430mm), supporting Intel® Xeon Phi and similar cards. Card end has one 6 pin and one 6/8 pin configurable connectors.", + "MM#": "919761", + "Ordering Code": "AXXGPGPUCABLE", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "919761": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Sunday, October 30, 2016", + "Last Order": "Sunday, April 30, 2017", + "Last Receipt Attributes": "Thursday, August 31, 2017", + "Included Items": "(1) SAS Cable, miniSAS 8087 to mini 8087", + "Description": "SAS Cable from IOM to backplane", + "MM#": "928729", + "Ordering Code": "AXXE38DRVCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "928729": "PCN" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Iron Pass", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Flex cable, brackets and screws.", + "Description": "IO Module Cable and brackets required when installing an IO Module in the S2600IP or a 2nd I/O module into the S4600LH Intel Server Systems.", + "MM#": "920852", + "Ordering Code": "AXXIOMKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "920852": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Launched", + "Launch Date": "Q3'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) 880mm SATA cable for OOD. Orderable in packs of 10.", + "Description": "880mm SATA cable for OOD.", + "MM#": "922988", + "Ordering Code": "AXXCBL880SATA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "922988": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables 165mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "(1) Kit of 2 cables 165mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables 185mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "(1) Kit of 2 cables 185mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables 245mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "(1) Kit of 2 cables 245mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) 1394 cable, (1) mounting kit, optimized for Intel® Server Board S2600CO in Intel® Server Chassis P4000M", + "Description": "1394 cable kit accessory, supporting 1394b header connection from Intel® Server Board S2600CO to knock out at the back of Intel® Server Chassis P4000M", + "MM#": "919563", + "Ordering Code": "AUPM1394CBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "919563": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) 1U/2U Cable Management Arm AXX1U2UCMA for use with AXXPRAIL", + "Description": "1U/2U Cable Management Arm AXX1U2UCMA for use with AXXPRAIL", + "MM#": "913117", + "Ordering Code": "AXX1U2UCMA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "913117": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 500mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "(1) Kit of 2 cables, 500mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 1030mm length, right-angle SFF-8087 to right angle 7-pin SATA connectors.", + "Description": "Kit of 2 cables, 1030mm length, right-angle SFF-8087 connector on one end and 4 x right angle 7-pin SATA connectors plus SGPIO connector on the other end." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 550mm length, right angle SFF-8087 to right angle SFF-8087 connectors.", + "Description": "Kit of 2 cables, 550mm length, right angle SFF-8087 to right angle SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 585mm length, straight SFF-8087 to right angle SFF-8087 connectors.", + "Description": "Kit of 2 cables, 585mm length, straight SFF-8087 to right angle SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 600mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "Kit of 2 cables, 600mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 650mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "Kit of 2 cables, 650mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 730mm length, right angle SFF-8087 to right angle SFF-8087 connectors.", + "Description": "Kit of 2 cables, 730mm length, right angle SFF-8087 to right angle SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Kit of 2 cables, 730mm length, straight SFF-8087 to SFF-8087 connectors.", + "Description": "Kit of 2 cables, 730mm length, straight SFF-8087 to SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "(1) Kit of 2 cables, 770mm length, straight SFF-8087 to right angle SFF-8087 connectors.", + "Description": "Kit of 2 cables, 770mm length, straight SFF-8087 to right angle SFF-8087 connectors." + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Included Items": "Kit of 2 cables, 850mm length, straight SFF-8087 connector on one end and 4 x right angle 7-pin SATA connectors plus SGPIO connector on the other end.", + "Description": "Kit of 2 cables, 850mm length, straight SFF-8087 connector on one end and 4 x right angle 7-pin SATA connectors plus SGPIO connector on the other end." + }, + {}, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Included Items": "(1) cable", + "Description": "Mini-SAS cable for Intel RAID add-in cards", + "MM#": "909656", + "Ordering Code": "AXXSR16XXRAIDCA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "909656": "MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Internal video cable to external VGA port", + "MM#": "901767", + "Ordering Code": "FXXSCVDCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "901767": "PCN" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Mini SAS Cable Accessory Kit", + "MM#": "905181", + "Ordering Code": "ASR2612SASCBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "905181": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "Two serial cable converter dongles (RJ45 to DB9) - one for DSD, one for DCD (modem), one serial ribbon cable for cabling 2nd serial port", + "Description": "RJ45 To DB9 Cable", + "MM#": "903041", + "Ordering Code": "AXXRJ45DB92", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "903041": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Cable Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Description": "Converter Cable to Connect Drive Power Kit", + "MM#": "879352", + "Ordering Code": "ASLPWRCABLE", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "879352": "PCN" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Launched", + "Launch Date": "Q4'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) Set 2U storage rack handles with USB and control panel, (1) cable and adapter board, (1) bag of screws, and (1) set of 2U regular rack handles, (1) set of 1U regular rack handles", + "Description": "Rack handle kit for Intel® Server Chassis R2000G family", + "MM#": "936038", + "Ordering Code": "A2UHANDLKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "936038": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q1'19", + "EOL Announce": "Thursday, February 7, 2019", + "Last Order": "Saturday, March 23, 2019", + "Last Receipt Attributes": "Wednesday, October 30, 2019", + "Included Items": "(1) LCP module wtih 2 USB ports, and bracket. Note: No front video connector", + "Description": "LCP Module (local control panel) enables system to display critical errors from SEL for instant diagnostic. Also allows custom message for branding" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Local control panel, (1) tray, (1) USB cable for 4U pedestal chassis", + "Description": "Local control panel kit for 4U pedestal chassis", + "MM#": "921029", + "Ordering Code": "A4ULCP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "921029": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "(1) Front IO Panel for W2600CR with audio, eSATA, 1394b ports and a slot for a 3.5\" device with a filler.", + "Description": "Front IO Panel for W2600CR in UPL-WS Chassis.", + "MM#": "920851", + "Ordering Code": "AUPLWSFIO", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "920851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Included Items": "(1) Local Control Panel module assebmly, (1) metal tray for mounting into chassis, (1) USB cable", + "Description": "Local Control Panel Module AXXLCPANEL for use with Intel® Server Systems (Please Check configuration guides for compatibility)", + "MM#": "918936", + "Ordering Code": "AXXLCPANEL2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Includes cable and adapter board, screws, second matching (empty) rack handle.", + "Description": "Storage rack ear control panel kit compatible with R2000 family.", + "MM#": "918248", + "Ordering Code": "A2USTOPANEL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "918248": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Local Control Panel Accessory Kit", + "MM#": "901013", + "Ordering Code": "ASR1625LCP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "901013": "PCN" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Local Control Panel Accessory Kit", + "MM#": "901014", + "Ordering Code": "ASR2600LCP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "901014": "PCN" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Local Control Panel Accessory Kit", + "MM#": "901015", + "Ordering Code": "AXLCPRACK2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "901015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Standard Front Panel Accessory Kit", + "MM#": "900991", + "Ordering Code": "ASR1625FP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200040", + "900991": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "Button Control Panel Module", + "MM#": "881379", + "Ordering Code": "AXXBCPMOD2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200040", + "881379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "Local Control Panel", + "MM#": "862491", + "Ordering Code": "AXXLCPMOD2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "862491": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Local Control Panel", + "MM#": "881676", + "Ordering Code": "ASR1550LCP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Local Control Panel", + "MM#": "881264", + "Ordering Code": "ASR2500LCP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "881264": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Description": "Local Control Panel", + "MM#": "879579", + "Ordering Code": "AXXLCPPED", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "879579": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Included Items": "(1) Local control panel", + "Description": "Local Control Panel", + "MM#": "861305", + "Ordering Code": "AXXLCPRACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "861305": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Mini Control Panel", + "MM#": "881675", + "Ordering Code": "ASR1550MINFP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200020", + "881675": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Included Items": "One metal filler plate for mini control panel location", + "Description": "Standard Control Panel", + "MM#": "881677", + "Ordering Code": "ASR1550FP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200040", + "881677": "MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Standard Control Panel", + "MM#": "881452", + "Ordering Code": "ASR2500FP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109150", + "881452": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Chassis Control Panel Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Standard Control Panel", + "MM#": "861048", + "Ordering Code": "AXXRACKFP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8531200040", + "861048": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(8) 2.5 SSD drive mounting rails plus drive extraction lever", + "Description": "2.5\" SSD Drive Mounting Rail Plus Drive (spare)", + "MM#": "99A3MZ", + "Ordering Code": "CYP25HSCARRIER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Drive cage, (1) backplane board, (8) 2.5 inch drive carriers, and (1) I2C jumper cable", + "Description": "Accessory 8x2.5” Dual Port SAS Front Mount Hot Swap Drive Bay Module forall 2U 2.5” systems . Connects 8x SAS DP drives.", + "MM#": "958247", + "Ordering Code": "A2U8X25S3DPDK2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "958247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "8x2.5” SAS/NVMe Combo Front Mount Hot Swap Drive Bay Module for all 2U 2.5” systemsKit includes:(1) Drive Bay Assembly Module(1) 8x2.5 SAS/NVMe Combo Backplane(8) 2.5” drive carriers + drive blanks(1) 75mm 6pin – 6pin I2C jumper cable(1) 75mm 5pin-6pin I2C jumper cableRequired (Sold Separately):SAS / SATA Data CablesPCIe OCuLink Cables", + "Description": "Accessory 8x2.5” SAS/SATA/NVMe Combo Front Mount Hot Swap Drive Bay Module for all 2U 2.5” systems . Connects 8x SAS/SATA/NVMe drives.", + "MM#": "955858", + "Ordering Code": "A2U8X25S3PHS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "955858": "PCN" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Drive cage, (1) backplane board, (8) 3.5 inch drive carriers, and (1) I2C jumper cable", + "Description": "Accessory 8x3.5” SAS/SATA drives Front Mount Hot Swap Drive Bay Module. Connects 8x SAS/SATA drives.", + "MM#": "958246", + "Ordering Code": "A2U8X35S3HSDK1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "958246": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Backplane with cage, (2) trays withscrews, (2) 7pin SATA cables, and (1) power cable", + "Description": "Accessory 2x2.5 SATA Rear drive cage for R2000WF Systems. Connects 2x SATA Drives.", + "MM#": "958243", + "Ordering Code": "A2UREARHSDK2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "958243": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "1) - Drive bay(1) - Hot Swap Back Plane(4) - 3.5“ Hot Swap Tool Less Drive Carriers – FXX35HSCAR2(2) - I2C cable(1) - EMI cover", + "Description": "3.5\" Hot Swap Drive Kit for P4000 server chassis. For usage with S2600ST family boards", + "MM#": "959879", + "Ordering Code": "AUP4X35S3HSDK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471801000" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "4P NVMe Kit for 2U R2000, x8 Host PCIe Switch AIC, FH brackets, w/ 2U combo HSBP & cables, drive carriers", + "Description": "4P NVMe Kit for 2U R2000, x8 Host PCIe Switch AIC, FH brackets, w/ 2U combo HSBP & cables, drive carriers Support" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Drive cage, (1) backplane board, (8) drive carriers, (1) I2C jumper cable, mounting screws", + "Description": "2.5 inch Drive Upgrade Kit for R2200 system family and R2000 chassis" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 20, 2020", + "Last Order": "Thursday, August 20, 2020", + "Last Receipt Attributes": "Tuesday, October 20, 2020", + "Included Items": "(1) Drive cage, (1) hot-swap backplane, (8) hot-swap drive carriers, (1) I2C cable, (1) power adapter cable accessory, and (1) ID filler panel", + "Description": "2.5 inch hot-swap drive cage kit FUP8X25S3HSDK supporting up to eight drives" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Tray, (6) screws, (1) power cable, and (1) SATA cable", + "Description": "Accessory kit to install a single 2.5 inch SSD into a 1U chassis ODD bay" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Drive cage, (1) hot-swap combination backplane, (8) hot-swap drive carriers, (2) PCI data cables 600mm, (1) PCIe slot adapter board, (1) I2C cable, (1) PEM cable, ID filler panels, and (1) power adapter cable accessory", + "Description": "Hot-swap backplane PCIe combination drive cage kit for the Intel® Server Chassis P4000 family supporting 2.5 inch NVM Express SSDs" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 20, 2020", + "Last Order": "Thursday, August 20, 2020", + "Last Receipt Attributes": "Tuesday, October 20, 2020", + "Included Items": "(1) 3.5 Inch hot-swap backplane FUP4X35S3HSBP, (4) 3.5 inch hot-swap drive carriers FXX35HSCAR, (1) drive cage, (1) IC2 cable, and (1) ID filler", + "Description": "3.5 inch hot-swap drive cage kit for the Intel® Server Chassis P4000 family.Supports drives up to 12GB/s. For usage with S2600CW family boards" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Drive cage, (1) backplane board, (8) 2.5 inch drive carriers, and (1) I2C jumper cable", + "Description": "Dual-port upgrade kit supporting eight 2.5 inch drives for 2U rack systems", + "MM#": "936193", + "Ordering Code": "A2U8X25DKBB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Drive cage, (1) backplane board, (1) x16 riser card, (1) x16 PCIe adapter card, (4) data cables, (4) hot-swap drive carriers, (4) lockable carriers, (1) I2C jumper cable, (1) PEM cable, and screws", + "Description": "Upgrade kit to enable NVM Express suport in select 2U rack chassis. Allows support for up to four PCIe SSDs (NVMe) drives out of eight; all eight slots continue to support SAS/SATA drives" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Backplane with cage, (2) trays withscrews, (2) 7pin SATA cables, and (1) power cable", + "Description": "Rear 2 drive cage accessory for the Intel® Server System R2000WT family" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) x16 Adapter board, (2) PCIe cables, (4) PCIe SFF SSD (NVMe) Hot Swap Drive Carriers (Blue Latch), (4) SAS/SATA Hot Swap Drive Carriers (Green Latch) and (1) Combo Hot Swap Backplane PCBA.", + "Description": "Upgrade kit to enable NVM Express for up to four drives in 1U 8x2.5”" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Jackson Pass", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "rIOM riser for 6Gb/s SAS of Slot2, 6Gb/s SAS module RMS25LB080 and cables, dedicated NIC port for management.", + "Description": "This accessory is used when adding 6G SAS module into Slot 2 of JP System", + "MM#": "924115", + "Ordering Code": "A1UJP6GKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "924115": "PCN" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Jefferson Pass", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "6Gb/s SAS accessories kit (cable-free) for H2000JF family including (1) 6Gb/s SAS bridge board w/ gold finger connection, (1) customized rIOM riser, (1) 6Gb/s SAS module RMS25LB", + "Description": "6Gb/s SAS accessories kit (cable-free) for H2000JF family", + "MM#": "922863", + "Ordering Code": "AH2000JF6GKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "922863": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Lincoln Pass", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Included Items": "6Gb/s SAS accessories kit (cable-free) for H2000LP family including (1) 6Gb/s SAS bridge board w/ gold finger connection, (1) customized rIOM riser, (1) 6Gb/s SAS module RMS25LB", + "Description": "6Gb/s SAS accessories kit (cable-free) for H2000LP family" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Washington Pass", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "6Gb/s SAS accessories kit (cable-free) for H2000WP family including (1) 6Gb/s SAS bridge board w/ gold finger connection, (1) customized rIOM riser, (1) 6Gb/s SAS module RMS25LB", + "Description": "6Gb/s SAS accessories kit (cable-free) for H2000WP family", + "MM#": "922864", + "Ordering Code": "AH2000WP6GKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "922864": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Code Name": "Products formerly Jefferson Pass", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) 6Gb/s SAS bridge board, (1) 6Gb/s SAS cable", + "Description": "6Gb/s SAS bridge board and cable accessories kit (not cable-free) for Intel® Compute Module product families", + "MM#": "922862", + "Ordering Code": "AHWJFWP6GBGB", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "922862": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "EOL Announce": "Thursday, December 22, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Included Items": "(1) Drive cage, (1) backplane board, (8) 2.5 inch drive carriers, and (1) I2C jumper cable", + "Description": "Upgrade kit supporting eight 2.5 inch drives for 2U rack systems" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "Carrier board kit for HNS2600JF and HNS2400LP compute module family including (1) PCI Express x16 (164 pin) rIOM riser, (1) rIOM carrier board", + "Description": "PCI Express x16 (164 pin) rIOM riser and rIOM carrier board kit for providing dedicated RMM4 NIC port and containing Intel® I/O module for HNS2600JF and HNS2400LP compute module family", + "MM#": "918249", + "Ordering Code": "AXXRMM4IOM", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473301180", + "918249": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "Carrier Board kit for HNS2600WP compute module family includes: (1) PCI Express x24 (200 pin) rIOM riser, (1) rIOM carrier board", + "Description": "PCI Express x24 (200 pin) rIOM riser and rIOM carrier board kit for providing dedicated RMM4 NIC port and containing Intel® I/O module for HNS2600WP compute module family", + "MM#": "918304", + "Ordering Code": "AXXRMM4IOMW", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473305100", + "918304": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Drive Bay Upgrade Kit Includes: (1) metal cage, (1) backplane board, (1) power Y-cable, (1) I2C short cable for R2200 product family", + "Description": "Spare or accessory Dual Ported 8x2.5” HDD hot-swap drive upgrade kit for R2200 product family", + "MM#": "917966", + "Ordering Code": "A2U8X25DPDK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471704065", + "917966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "Includes (1) Drive Cage,(1) Hot Swap Backplane, (4) Hot Swap Drive carriers, data cables, I2C cable, and ID filler", + "Description": "3.5\" Hot Swap Drive Cage Kit for P4000 Server Chassis" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Fixed Drive Kit", + "MM#": "903534", + "Ordering Code": "ASR26XXFXDRV", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "903534": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "USB cable", + "Sockets Supported": "N/A", + "Description": "SATA/SAS Backplane", + "MM#": "903510", + "Ordering Code": "ASR1500SASBP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "903510": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Description": "2.5\" SATA to SAS Converter Board", + "MM#": "903639", + "Ordering Code": "AXXTM3SATA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "903639": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "Backplane board, 6 drive carriers, 6 data cables, 6-drive bay, IPMB cable, SES cable and SGPIO cable, installation guide, SATA/SAS configuration label", + "Description": "4-drive bay that supports SAS/SATA drives. Requires four free SAS or SATA ports. SAS hard drive support requires SAS connectors from a SAS module or SAS RAID Card. Support 6Gb SAS Hard Drives with compatible 6Gb SAS adapters.", + "MM#": "900404", + "Ordering Code": "AXX4DRV3GR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "900404": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "Backplane board, 6 drive carriers, 6 data cables, 6-drive bay, IPMB cable, SES cable, SGPIO cable, installation guide, SATA/SAS configuration label", + "Description": "6-drive bay that supports SAS/SATA drives. Requires six free SAS or SATA ports.SAS hard drive support requires SAS connectors from a SAS module or SAS RAID Card. Support 6Gb SAS Hard Drives with compatible 6Gb SAS adapters", + "MM#": "900405", + "Ordering Code": "AXX6DRV3GR", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8537109170", + "900405": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Included Items": "Hardware to mount four additional non Hot-Swap drives", + "Description": "4-Drive Fixed Drive Bay Assembly", + "MM#": "857882", + "Ordering Code": "AXX4FIXDB", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8471704065", + "857882": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "Backplane board, 4 drive carriers, 2 data cables, 4-drive bay, IPMB cable, installation guide, SATA/SAS configuration label", + "Description": "Expander-based 4-drive bay that supports SAS/SATA drives. Requires two free SAS ports from the SAS module or SAS RAID card.", + "MM#": "877236", + "Ordering Code": "AXX4DRV3GEXP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "877236": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Included Items": "Board, Four drive carriers, SCSI cable, 4-drive bay, I2C cable, Installation Guide", + "Description": "4-Drive Hot-Swap SCSI Backplane" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Included Items": "(1) set of brackets", + "Description": "5.25\" Slim-Line Optical/Floppy Conversion Kit" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "One 3.5–inch drive carrier, backplane board insert, One power cable, One SAS/SATA cable", + "Description": "6th SAS/SATA Drive Kit", + "MM#": "902045", + "Ordering Code": "ASR2500SIXDRV", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "902045": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "left and right rails (10 Pack)", + "Description": "DLT Accessory Kit - Permits mounting a full height 5.25” peripheral", + "MM#": "856600", + "Ordering Code": "ARIGDLTRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "856600": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Description": "Drive Accessory Bracket Kit. Needed to install a 3.5” HDD (cabled) or a 3.5” USB floppy in a standard 5.25” drive bay. Must remove the bracket bezel for 3.5” HDD", + "MM#": "868171", + "Ordering Code": "AXXFHDDBRK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "868171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "SAS Midplane with optional Integrated Server RAID", + "MM#": "880521", + "Ordering Code": "FALSASMP", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8537109170", + "880521": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "SAS Midplane-2 with optional Integrated Server RAID", + "MM#": "892611", + "Ordering Code": "FALSASMP2", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8537109170", + "892611": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Included Items": "Three SAS/SATA cables", + "Sockets Supported": "N/A", + "Description": "Passive Hot Swap Backplane", + "MM#": "905063", + "Ordering Code": "ASR1500PASBP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "905063": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Description": "SATA Tape Drive Mounting Kit", + "MM#": "881260", + "Ordering Code": "ASR2500SATAPE", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "881260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Included Items": "Tape tray, drive power cable to connect to backplane, terminated SCSI cable", + "Description": "SCSI Tape Mounting Kit", + "MM#": "882437", + "Ordering Code": "ADRTAPEKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "882437": "MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "Installation guide", + "Description": "3.5\" to 2.5'' Hard Disk Drive Converter Kit", + "MM#": "904083", + "Ordering Code": "AXX25DRVADPTR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "904083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "Backplane board, 6 drive carriers, 2 data cables, 6-drive bay, IPMB cable, installation guide, SATA/SAS configuration label", + "Description": "Expander-based 6-drive bay that supports SAS/SATA drives. Requires a SAS module or SAS RAID card with two free ports.", + "MM#": "877235", + "Ordering Code": "AXX6DRV3GEXP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "877235": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Included Items": "Backplane, Six drive carriers, cables, 6th-drive bay, installation guide, configuration label", + "Description": "6-Drive Hot-Swap SCSI Backplane" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "One cooling fan, One fan holder, Two Hot-Swap cage brackets", + "Description": "Cooling and mounting kit required for 6-drive hot-swap backplanes installed. This kit should be used with AXX6DRV3GEXP.", + "MM#": "882456", + "Ordering Code": "APP3HSDBKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "882456": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "One cooling fan, One fan holder, Two Hot-Swap cage brackets", + "Description": "Cooling and mounting kit required for 6-drive hot-swap backplanes installed. This kit should be used with AXX6DRV3GR", + "MM#": "901181", + "Ordering Code": "APPTHSDBKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414901080", + "901181": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Drive Bay Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Included Items": "Holder, cable, interposer card", + "Description": "Solid State Drive Mounting Kit", + "MM#": "892675", + "Ordering Code": "AXXZU130KIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "892675": "MDDS" + }, + { + "Product Collection": "Fan Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q4'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Metal shipping bracket(2) Non-Intel GPGPU secure mounting adaptersNote: Intel Xeon Phi cards with active heat sinks are NOT supported in systems configured with the high air flow air duct. Note: Systems configured with any type of Intel® Xeon Phi™ card and/or non-Intel GPGPU card must have the shipping bracket installed before the system is exposed to any level of shock or vibration or is shipped to the end user location. Failure to install the shipping bracket has the potential to cause serious damage to various components within the system.", + "Description": "High Air Flow Air Duct Bracket Kit when when installing an Intel® Xeon Phi™ coprocessor with passive heat sink (heat sink only, no fan) or non-Intel GPGPU with passive heat sink with the 2000WF Family", + "MM#": "961675", + "Ordering Code": "AWFCOPRODUCTBKT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Fan Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q4'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) High air flow air duct Note: Intel Xeon Phi cards with active heat sinks are NOT supported in systems configured with the high air flow air duct. Additional Required Accessory: AWFCOPRODUCTBKT: High Air flow Air Duct Bracket Kit & A2UL16RISER2: 2-slot PCIe* Riser card", + "Description": "High Air Flow Air Duct Kit is required when using Intel® Xeon Phi™ coprocessor with passive heat sink (heat sink only, no fan) or non-Intel GPGPU with passive heat sink with the 2000WF Family", + "MM#": "961767", + "Ordering Code": "AWFCOPRODUCTAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "961767": "MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Launched", + "Launch Date": "Q4'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) Airduct A4UCWDUCT", + "Description": "Spare Airduct for S2600CW server board support in P4000M chassis familyNote: Included in chassis", + "MM#": "936419", + "Ordering Code": "A4UCWDUCT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "936419": "MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Airduct, (1) set of metal support brackets required for systems shipping with Intel® Xeon Phi™ Coprocessors or dual-wide PCI Express cards with matching mount points", + "Description": "Airduct kit enabling support of two dual-wide passive cooled PCI cards (such as Intel® Xeon Phi™ Coprocessors and some dual-wide PCI Express cards) direct air to enable cooling of up to 300W per card", + "MM#": "934572", + "Ordering Code": "AWTCOPRODUCTSPP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "934572": "MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Airduct, (2) x16 A2UL16RISER riser cards, (2) power cables", + "Description": "Specially designer airduct to support passive dual wide cards with power consumption up to 300W on R2x08GZ systems. Validated with Intel Xeon PHI cards.", + "MM#": "926348", + "Ordering Code": "AGZCOPRODUCT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "926348": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Air Duct for Intel® Server Board S2600IP in Intel® Server Chassis R2000IP", + "Description": "Air Duct FIP2UAD (For Intel® Server Board S2600IP in R2000IP Chassis)", + "MM#": "917830", + "Ordering Code": "FIP2UAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "917830": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "Accessory Fan Kit ASCUPSFLFANKIT for moving PCI Fan to allow Full Length PCI cards, includes: (1) Fan mounting brackets for drive bay, (1) PCI Full length card bracket. For use with the Intel® Server Board S2400SC2 in Intel® P4000S Chassis Family", + "Description": "Accessory Fan Kit ASCUPSFLFANKIT to support moving PCI Fan to allow Full Length PCI cards (for Intel® Server Board S2400SC Chassis P4000S Family)", + "MM#": "919713", + "Ordering Code": "ASCUPSFLFANKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "919713": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Air duct and unique cable kit for Intel® Server Board S2600CO to be used Intel® Server Chassis P4000M", + "Description": "Air duct and unique cable kit for Intel® Server Board S2600CO to be used Intel® Server Chassis P4000M", + "MM#": "919559", + "Ordering Code": "FCOUPMAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "919559": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Air duct and unique cable kit for Intel® Server Board S2600CP to be used Intel® Server Chassis P4000M", + "Description": "Air duct and unique cable kit for Intel® Server Board S2600CP to be used Intel® Server Chassis P4000M", + "MM#": "915623", + "Ordering Code": "FCPUPMAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915623": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Included Items": "(1) Air duct and unique cable kit for Intel® Server Board S2400GP to be used Intel® Server Chassis P4000M", + "Description": "Air duct and unique cable kit for Intel® Server Board S2400GP to be used Intel® Server Chassis P4000M", + "MM#": "915633", + "Ordering Code": "FGPUPMAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915633": "PCN" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "(1) Air duct spare for S2600IP and W2600CR in P4000L/P4000L-WS server chassis", + "Description": "Air duct spare for S2600IP and W2600CR in P4000L/P4000L-WS server chassis", + "MM#": "915631", + "Ordering Code": "FIPCRUPMAD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915631": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Included Items": "(1) Redundant Cooling Fan Upgrade Kit with 6 fans for R2000IP system", + "Description": "Hotswap and redundant fan upgrade kit for R2000IP system family.", + "MM#": "917903", + "Ordering Code": "AR2000HSFANKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "Includes 1 hot-swap 92mm fan and 1 hot-swap 120 mm fan", + "Description": "Spare Intel® Server Chassis SC5600 hot swap fan kit", + "MM#": "901657", + "Ordering Code": "FRIGTHSFANKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500", + "901657": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "Six fans, fan structure", + "Description": "Redundant Fan Upgrade Kit", + "MM#": "901078", + "Ordering Code": "ASR2600LXFANS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500", + "901078": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "2010", + "Included Items": "One system fan, One CPU fan", + "Description": "System Fan Kit", + "MM#": "887431", + "Ordering Code": "AOWFANKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500", + "887431": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Fan Upgrade Kit", + "MM#": "881263", + "Ordering Code": "ASRLXFANS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500", + "881263": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Fan Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Included Items": "Two pairs of Hot-Swap fan cables (four each), installation guide, label", + "Description": "Hot-Swap Fan Upgrade Kit", + "MM#": "877868", + "Ordering Code": "ARIG2HSFANKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8414591500", + "877868": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly North Pass", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "2025", + "Included Items": "(1) Backplane Note: Mounting hardware included with the system", + "Description": "1U backplane with support for up to four 3.5” or 2.5” drives. Each drive connector is hot swap capable and supports SATA, SAS, or NVMe drive interfaces.", + "MM#": "99AN3D", + "Ordering Code": "AXXHSBP1304", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly North Pass", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "2025", + "Included Items": "(1) 8x2.5” Backplane (1) 75 mm I2C cable – 5-pin to 5-pin communication cable installed between two backplanes", + "Description": "2U backplane with support for up to eight 2.5” drives. Each drive connector is hot swap capable and supports SATA, SAS, or NVMe drive interfaces. Kit is offered as a required accessory when looking to upgrade the front drive bay to 16 drives.", + "MM#": "99ANFK", + "Ordering Code": "AXXHSBP2208", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) EVAC heat sink", + "Description": "Spare EVAC heat sink", + "MM#": "99A3NV", + "Ordering Code": "CYP1UHSEVAC", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "99A3NV": "MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) – 1U tall heat sink", + "Description": "1U Tall Heat Sink", + "MM#": "99A3NP", + "Ordering Code": "CYP1UHSSTD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) SAS Interposer card", + "Description": "SAS Interposer kit provides additional SAS/SATA front drive bay support for system configurations having more than eight SAS/SATA drives.", + "MM#": "99A3PX", + "Ordering Code": "CYPSASMODINT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3PX": "MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) – 2U tall heat sink", + "Description": "2U Tall Heat Sink", + "MM#": "99A3RL", + "Ordering Code": "CYP2UHSSTD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Carrier Clip Spare", + "Description": "CPU carrier clip spare", + "MM#": "960401", + "Ordering Code": "AXXSTCPUCAR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2020", + "EOL Announce": "Thursday, May 7, 2020", + "Last Order": "Friday, October 30, 2020", + "Last Receipt Attributes": "Wednesday, December 30, 2020", + "Included Items": "D2C Liquid Cooling Kit for HNS2600BPBLC & HNS2600BPBLC24.", + "Description": "D2C Liquid Cooling Kit for HNS2600BPBLC & HNS2600BPBLC24." + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Included Items": "(1) 1U Liquid Assisted Air Cooled (LAAC) kit.", + "Description": "Spare 1U Liquid Assisted Air Cooled (LAAC) kit, supporting Intel® Compute Module HNS7200APRL" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) 1U Passive Heat Sink", + "Description": "1U Passive Heat Sink AXXSTPHMKIT1U", + "MM#": "960403", + "Ordering Code": "AXXSTPHMKIT1U", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) 2U Hybrid Heat Sink", + "Description": "2U Hybrid Heat Sink AXXSTPHMKIT2U", + "MM#": "960402", + "Ordering Code": "AXXSTPHMKIT2U", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "960402": "MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "EOL Announce": "Thursday, March 11, 2021", + "Last Order": "Friday, October 1, 2021", + "Last Receipt Attributes": "Wednesday, December 1, 2021", + "Included Items": "Passive Heat-Sink for LGA3647 socket", + "Description": "Passive Heat-sink solution for LGA3647 socket. Supports up to 135 Watts." + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Launched", + "Launch Date": "Q3'17", + "Included Items": "Passive Heat-Sink for LGA3647 socket", + "Description": "Passive Heat-sink solution for LGA3647 socket. Supports up to 135 Watts." + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "EOL Announce": "Thursday, March 11, 2021", + "Last Order": "Friday, October 1, 2021", + "Last Receipt Attributes": "Wednesday, December 1, 2021", + "Included Items": "Passive/Active Heat-Sink for LGA3647 socket", + "Description": "Passive/Active Heat-sink solutions for LGA3647 Socket. 91x88x64 mm. Support for up to 280W." + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) - Heat sink(1) - CPU carrier clip", + "Description": "Tower Passive Heat-sink Kit - One kit is required for each processor to be installed on the Intel® Server Board S2600ST in P4000 chassis", + "MM#": "959813", + "Ordering Code": "AXXSTPHMKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Heat-Sink Options", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Included Items": "(1) Passive heat sink AXXAPHS (80mm x 100mm), single", + "Description": "(1) Passive heat sink AXXAPHS (80mm x 100mm), single" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Included Items": "(1) Heat-sink", + "Description": "Intel Boxed Thermal Solutions, heat sink combo with removable fan. For use with 2U/3U/4U/5U non-Intel chassis." + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(2) Passive heat sink", + "Description": "Passive heat sink (92mm x 100mm) for the Intel® Server Board S2600CW family" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Included Items": "(1) passive 25.5mm heat sink", + "Description": "Intel Boxed Thermal Solutions, passive 25.5mm heat sink. For use with 1U non-Intel chassis" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Passive Heat Sink for Intel® Server Boards S2400SC, S2400GP, & S1400FP in Chassis P4000 Family", + "Description": "Passive Heat Sink for Intel® Server Boards S2400SC, S2400GP, & S1400FP in Intel® P4000 Chassis Family", + "MM#": "919883", + "Ordering Code": "AXXCA90X902UHS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "919883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Cu-Al, 91.5mmx91.5mm, Passive Heat Sinks for Intel® Server Boards S2600IP in R2000 Chassis", + "Description": "Spare Passive CPU Heatsink for Intel® Server Boards S2600IP in R2000 Chassis", + "MM#": "915295", + "Ordering Code": "ABPSRCACP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915295": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "98mmx100mm Active Heat Sink for Intel® Workstation Boards S2600CR in P4000L-WS Chassis, or Intel® Server Board 2600COE to be used in production Intel® 4U pedestal chassis P4000M with 150W CPU installed.", + "Description": "Spare active CPU heat sink for Intel® Workstation Boards S2600CR in P4000L-WS Chassis, or 2600COE in P4000M with 150W CPU installed.", + "MM#": "915294", + "Ordering Code": "AUPSRCBTA", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915294": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(2) 98mmx100mm Passive Heat Sinks for Intel® Server Boards S2600CP, S2600IP, S2600CO in P4000 chassis.", + "Description": "2-pack of spare passive CPU heat sinks for Intel® Server Boards S2600CP, S2600IP, S2600CO in P4000 chassis.", + "MM#": "915293", + "Ordering Code": "AUPSRCBTP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915293": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Included Items": "(1) Heat-sink with Ducted airflow", + "Description": "Passive Heat-Sink with Ducted Airflow", + "MM#": "900492", + "Spec Code": "S", + "Ordering Code": "BXSTS100P", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "900492": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "(1) Heat-sink with Fixed Fan", + "Description": "Active Heat-Sink with Fixed Fan. Supports processors up to 90 Watts", + "MM#": "900490", + "Spec Code": "S", + "Ordering Code": "BXSTS100A", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "900490": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "(1) Heat-sink with Removable Fan", + "Description": "Passive/Active Combination Heat-Sink with Removable Fan. Supports processors up to 130W Watts.", + "MM#": "900491", + "Spec Code": "S", + "Ordering Code": "BXSTS100C", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "900491": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "Includes two Heatsinks", + "Description": "Tower Heat-Sink - Heatsink for pedestal servers. Price per heatsink, can be ordered in pairs only.", + "MM#": "904992", + "Ordering Code": "FXXRGTHS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "904992": "PCN" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Tower Heat-Sink" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "CEK processor Blank", + "MM#": "891014", + "Ordering Code": "AFCPROCBLANK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "891014": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Heat-Sink Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "CEK Processor Heat-Sink", + "MM#": "891013", + "Ordering Code": "AFCPROCHS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "891013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Scalable Memory Buffers", + "Code Name": "Products formerly Jordan Creek", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "32 nm", + "TDP": "9 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4 1333/1600/1866, DDR3 1066/1333/1600, RDIMM/LRDIMM/LVDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "# of DIMMs per channel": "2", + "Package Size": "31mm x 19.5mm", + "MM#": "936265", + "Spec Code": "SLKHU", + "Ordering Code": "DH82C112", + "Stepping": "D1", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8542310001", + "936265": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Scalable Memory Buffers", + "Code Name": "Products formerly Jordan Creek", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "32 nm", + "TDP": "9 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4 1333/1600/1866, DDR3 1066/1333/1600, RDIMM/LRDIMM/LVDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "# of DIMMs per channel": "3", + "Package Size": "31mm x 19.5mm", + "MM#": "936266", + "Spec Code": "SLKHV", + "Ordering Code": "DH82C114", + "Stepping": "D1", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8542310001", + "936266": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Scalable Memory Buffers", + "Code Name": "Products formerly Jordan Creek", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "32 nm", + "TDP": "9 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 1066/1333/1600, RDIMM/LRDIMM/LVDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "# of DIMMs per channel": "2", + "Package Size": "31mm x 19.5mm", + "MM#": "927815", + "Spec Code": "SLK4Q", + "Ordering Code": "DH82C102", + "Stepping": "C1", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8542310001", + "927815": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Scalable Memory Buffers", + "Code Name": "Products formerly Jordan Creek", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "32 nm", + "TDP": "9 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 1066/1333/1600, RDIMM/LRDIMM/LVDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "# of DIMMs per channel": "3", + "Package Size": "31mm x 19.5mm", + "MM#": "927816", + "Spec Code": "SLK4P", + "Ordering Code": "DH82C104", + "Stepping": "C1", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8542310001", + "927816": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "Kit includes: (1) IFT Carrier PCIe Add-in Board (1) 235mm cable, 1 port, PCIe add-in card to Fabric Processor #1 (1) 430mm 2x12 HFI Sideband Y Cable, Single Omni-Path Sideband IFT Carrier to dual Omni-Path CPU connectors (PCIe add-in card to server board CPU HFI Sideband connectors) (1) Fabric Processor Clip Dual Fabric Processor Support: Dual Fabric processor configurations require the following additional accessory kits to be ordered separately: Cable kit AXXCBL235IFPR1 – 235mm cable for PCIe Add-in card to Fabric Processor #2 Fabric Processor Clip Kit FXXCPUCLIPF – Used to attach fabric enabled processor to processor heat sink", + "Description": "Accessory IFT Fab Carrier PCIe kit to support Xeon Fabric processor. Includes 1 sideband cable and 1 IFP cable." + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Saturday, August 1, 2020", + "Last Order": "Thursday, October 1, 2020", + "Last Receipt Attributes": "Thursday, December 31, 2020", + "Included Items": "(1) Dual Port IFT carrier, (4) IFT Cables, (1) sideband cable and (2) Fabric processor clips", + "Description": "Dual Port Fabric Upgrade Kit for dual CPU install (with 4 IFT Cables and 1 sideband cable)" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Saturday, August 1, 2020", + "Last Order": "Thursday, October 1, 2020", + "Last Receipt Attributes": "Thursday, December 31, 2020", + "Included Items": "(1) Dual Port IFT carrier, (2) IFT Cables, (1) sideband cable and (1) Fabric processor clip", + "Description": "Dual Port Fabric Upgrade Kit for single CPU install (CPU1) (with 2 IFT Cables and 1 sideband cable)" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Main Canal", + "Status": "Launched", + "Launch Date": "Q3'17", + "Included Items": "(1) Intel® Ethernet Network Connection OCP I357-T4 module", + "Description": "Intel® Ethernet Network Connection OCP I357-T4 is a Quad Port 1GBASE-T (RJ45) OCP Type 1 PHY Mezzanine card, featuring 4 x 1GBASE-T uplinks, and 4 x SGMII host connections via OCP PHY Mezzanine Connector C", + "MM#": "948352", + "Ordering Code": "I357T4OCPG1P5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "948352": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Cascade Canal", + "Status": "Launched", + "Launch Date": "Q3'17", + "Included Items": "(1) Intel® Ethernet Network Connection OCP X527-DA2 module", + "Description": "Intel® Ethernet Network Connection OCP X527-DA2 is a Dual port 10GbE SFP+ OCP Type 1 PHY Mezzanine card, featuring 2 x SFP+ uplinks, and 2 x KR host connections via OCP PHY Mezzanine Connector C", + "MM#": "950126", + "Ordering Code": "X527DA2OCPG1P5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "950126": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Cascade Canal", + "Status": "Launched", + "Launch Date": "Q3'17", + "Included Items": "(1) Intel® Ethernet Network Connection OCP X527-DA4 module", + "Description": "Intel® Ethernet Network Connection OCP X527-DA4 is a Quad port 10GbE SFP+ OCP Type 1 PHY Mezzanine card, featuring 4 x SFP+ uplinks, and 4 x KR host connections via OCP PHY Mezzanine Connector C", + "MM#": "950127", + "Ordering Code": "X527DA4OCPG1P5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "950127": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Taylor Canal", + "Status": "Launched", + "Launch Date": "Q3'17", + "Included Items": "(1) Intel® Ethernet Network Connection OCP X557-T2 module", + "Description": "Intel® Ethernet Network Connection OCP X557-T2 is a Dual Port 10GBASE-T (RJ45) OCP Type 1 PHY Mezzanine card, featuring 2 x 10GBASE-T uplinks, and 2 x KR host connections via OCP PHY Mezzanine Connector C", + "MM#": "950179", + "Ordering Code": "X557T2OCPG1P5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "950179": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q4'20", + "EOL Announce": "Tuesday, August 25, 2020", + "Last Order": "Sunday, November 1, 2020", + "Last Receipt Attributes": "Friday, January 1, 2021", + "Included Items": "Allows external access to the Host Fabric Interface (HFI) on supported processors. The connection to the external access is done through two QSFP+28 style connections.The fabric carrier is designed to be mounted at the OCP Mezz location found on the baseboard/chassis. There is no connection to the motherboard OCP connector. All required signals/power for the board are passed through the sideband cable.Kit includes:(1) IFT Carrier Board Mezz(1) 235mm, 1 port, straight IFP28 connector to LEC54B right angle – right exit connector (Mezzanine card to Fabric Processor #1)(1) 430mm, 2x12 HFI Sideband Y Cable, Single Omni-Path Sideband IFT Carrier to dual Omni-Path CPU connectors (Mezzanine card to server board CPU HFI Sideband connectors)(2) Fabric Processor Clips(4) Mounting ScrewsAdditional Required Accessory:Dual processor configurations requires the addition of cable kit AXXCBL370IFPS1 (Mezzanine card to Fabric Processor #2)", + "Description": "Accessory IFT Fab Carrier Mezzanine kit to support Xeon Fabric processor. Includes 1 sideband cable and 1 IFP cable." + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Included Items": "(1) KNL fabric carrier; (1) 2 port KNL fabric carrier; (1) 2 port IFP card; (1) 2 port IFP cable; (1) sideband cable", + "Description": "Intel® Omni-Path 2 port upgrade kit for S7200AP family only" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, April 21, 2020", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) IO module AXX10GBTWLIOM3 (3) screws", + "Description": "Dual Port Intel® X540-BT2 10GbE I/O Module AXX10GBTWLIOM3", + "Additional Information": "View now" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Washington Pass", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "(1) AXX10GBTWLHW2 module, screws, port label.", + "Description": "Dual Port 10GBaseT IO module based on Intel® Ethernet Controller X540 for use on S2600JF and S2600WP servers", + "Additional Information": "View now", + "MM#": "940047", + "Ordering Code": "AXX10GBTWLHW2", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8517620090", + "940047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, April 21, 2020", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) AXX10GBTWLHW3 module, screws, port label.", + "Description": "Dual Port 10GBaseT IO module, based on Intel® Ethernet Controller X540 used on S2600TP, S2600KP, S1600JP and S1200V3RP server boards", + "Additional Information": "View now" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Included Items": "(1) Ethernet I/O module XL710-QDA1 AXX1P40FRTIOM", + "Description": "1/10/40GbE single-port, QSFP, Intel XL710, Ethernet I/O module AXX1P40FRTIOM" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Included Items": "(1) Ethernet I/O module XL710-QDA2 AXX2P40FRTIOM", + "Description": "dual-port, QSFP, 1/10/40GbE, Ethernet I/O module AXX2P40FRTIOM" + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, June 2, 2016", + "Last Order": "Friday, September 2, 2016", + "Last Receipt Attributes": "Friday, December 2, 2016", + "Included Items": "(1) AXX10GBTWLHW module, screws, port label.", + "Description": "10G base T IO module, dual port, based on Intel® Ethernet Controller X540. It is dedicated for Intel(R) Multi-node Server System H2000 Family", + "MM#": "924136", + "Ordering Code": "AXX10GBTWLHW", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8517620090", + "924136": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Launched", + "Launch Date": "Q3'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) 1040mm Serial 10pin header to DB9 Cable, (1) 520mm Serial 10pin header to DB9 Cable, (1) 100mm DCD RJ45 to DB9 Cable, (1) 100mm DSR RJ45 to DB9 Cable", + "Description": "Kit of serial adapter cables", + "MM#": "920430", + "Ordering Code": "AXXRJ45DB93", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544422000", + "920430": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, April 21, 2020", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) IO module AXX10GBNIAIOM (3)screws. Transceivers are NOT included.", + "Description": "Dual Port SFP+ Intel® 82599ES 10GbE I/O Module AXX10GBNIAIOM" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Included Items": "(1) IO module AXX10GBTWLIOM, (3) screws.", + "Description": "Dual Port RJ45 Intel® X540-BT2 10GbE I/O Module AXX10GBTWLIOM", + "Additional Information": "View now", + "MM#": "917907", + "Ordering Code": "AXX10GBTWLIOM", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8517620090", + "917907": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) IO module AXX1FDRIBIOM, mounting screws, port label sticker.", + "Description": "Single port, FDR 56GT/S speed Intel I/O Expansion Infiniband module, with QSFP connector, based on Mellanox CX3 MT27504A1-FCCR-FV chip." + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) IO Module AXX2FDRIBIOM, screws, port label sticker", + "Description": "Dual port, FDR 56GT/S (per port capable) speed Infiniband module, with QSFP connector, based on Mellanox ConnectX-3 MT27508A1-FCCR-FV chip. Note, due to PCIe3 x8 bandwidth limitation, both ports can’t simultaneously function at full speed." + }, + { + "Product Collection": "I/O Options", + "Code Name": "Products formerly Crown Pass", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "(1) IO Shield for W2600CR2 board.", + "Description": "IO Shield for W2600CR2", + "MM#": "920857", + "Ordering Code": "AW2600CR2IOS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "920857": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "IO Shield spare AXX2IOS", + "Description": "IO shield AXX2IOS for the S2600CP2, S2400GP2, and S2400SC2 Intel Server Board", + "MM#": "919757", + "Ordering Code": "AXX2IOS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "919757": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "IO Shield spares AXX4IOS", + "Description": "IO shield AXX4IOS for the S2600CP4, S2600IP4, and S2400GP4 Intel Server Board", + "MM#": "919758", + "Ordering Code": "AXX4IOS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "919758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, April 21, 2020", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) IO module AXX4P1GBPWLIOM, (3) screws", + "Description": "Quad Port Intel® I350-AE4, RJ-45, 10/100/1000Mb/s, Intel I350, Ethernet I/O Module AXX4P1GBPWLIOM" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Included Items": "(1) Expansion module", + "Description": "InfiniBand* (QDR) Intel®I/O expansion module with single 4X IB connector", + "MM#": "909786", + "Ordering Code": "AXXIBQDRSR169X", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8473301180" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Expected Discontinuance": "2012", + "Description": "Single Port QDR Infiniband I/O Expansion Module", + "MM#": "904810", + "Ordering Code": "AXXIBQDRIOMV", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "904810": "PCN" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "(1) Expansion module", + "Sockets Supported": "N/A,", + "Description": "2 port, RJ-45, 1GbE I/O Expansion Module. Intel 82571EB", + "MM#": "913137", + "Ordering Code": "AXXGBIOMOD", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8473301180", + "880518": "PCN\n |\n MDDS", + "913137": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "2 port, CX4, 10GbE I/O Expansion Module. Intel 82598. PCIe 2.0 (2.5Gbs)", + "MM#": "900962", + "Ordering Code": "AXX10GBIOMOD", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473301180", + "900962": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "4 port, RJ-45, 1GbE I/O Expansion Module. Intel 82576. PCIe 2.0 (2.5Gbs)", + "MM#": "901359", + "Ordering Code": "AXX4GBIOMOD2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "901359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "1 port QDR speed InfiniBand I/O Module. CX4 powered connector. MT25408A0-FCC-QIS controller", + "MM#": "902559", + "Ordering Code": "AXXIBQDRIOMOD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "902559": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Sockets Supported": "N/A", + "Description": "Intel Modular Server Storage Control Module with SAS interface", + "MM#": "891831", + "Ordering Code": "AXXSCM3S", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8473301180", + "891831": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Sockets Supported": "N/A", + "Description": "Dual Gigabit Ethernet I/O Expansion Mezzanine Card", + "MM#": "891844", + "Ordering Code": "AXXGBIOMEZ", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "891844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Description": "Dual Gigabit Ethernet I/O Expansion Mezzanine Card", + "MM#": "901362", + "Ordering Code": "AXXGBIOMEZV", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8473301180", + "901362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Sockets Supported": "N/A", + "Description": "Gigabit Ethernet Switch Switch Module", + "MM#": "891842", + "Ordering Code": "AXXSW1GB", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8517620020", + "891842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "I/O Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Description": "1 port InfiniBand I/O Expansion Module, SDR speed", + "MM#": "881891", + "Ordering Code": "AXXIBIOMOD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "881891": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q1'21", + "Included Items": "(1) Software electronic key that enables: - Single license for Intel® Data Center Manager - Virtual Media Image Redirection (HTML5 and Java) - Virtual Media over Network Share and Local Folder - Active Directory Support - Full System Firmware Update (for updating drives, memory, RAID) - Out-of-Band Hardware RAID management - Embedded SNMP-SA", + "Description": "Software electronic key to be uploaded to the BMC" + }, + { + "Product Collection": "Management Module Options", + "Status": "Launched", + "Launch Date": "Q3'19", + "Included Items": "(1) Ethernet management port module accessory kit", + "Description": "Two RJ45 ports for management over 1Gbps Ethernet. Port forwarding. Hot-swappable. Access to all present BMCs in the system with only one RJ45 cable. Daisy-chain capability to access multiple systems with one Ethernet connection.", + "MM#": "999D48", + "Ordering Code": "AXXFCEMP", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "999D48": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Included Items": "(1) AXXTPMCHNE8 implements TPM as per TPM PC Client specifications revision 2.0 by the Trusted Computing Group (TCG)", + "Description": "•Intel® Trusted Platform Module 2.0 (China Version)", + "MM#": "960608", + "Ordering Code": "AXXTPMCHNE8", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "960608": "PCN" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "TPM 2.0 Module", + "Description": "TPM 2.0 Module for Intel® Server Board S1200SP Family" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "Intel® Trusted Platform Module (TPM) 2.0A TPM is a hardware-based security device that addresses the growing concern on boot process integrity and offers better data protection. TPM protects the system start-up process by ensuring it is tamper-free before releasing system control to the operating system. A TPM device provides secured storage to store data, such as security keys and passwords. In addition, a TPM device has encryption and hash functions. AXXTPMENC8 implements TPM as per TPM PC Client specifications revision 2.0 by the Trusted Computing Group (TCG)", + "Description": "Accessory TPM 2.0 Module for Rest of World except China.", + "MM#": "955867", + "Ordering Code": "AXXTPMENC8", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "955867": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Launched", + "Launch Date": "Q2'16", + "Expected Discontinuance": "2023", + "Included Items": "Includes (1) Remote Management Lite Module", + "Description": "Remote Management Module for upgrading to Remote KVM features. RoHS free.", + "MM#": "946514", + "Ordering Code": "AXXRMM4LITE2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "946514": "MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "TPM 2.0 Module", + "Description": "TPM 2.0 Module", + "Additional Information": "View now" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "TPM 2.0 Module", + "Description": "TPM 2.0 Module for Intel® Server Board S2600WT and S2600CW product families; for use in China.", + "Additional Information": "View now" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Description": "IO shield spare for Intel(R) Server Board S1200SPL, 10 pieces" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Description": "IO shield spare for Intel(R) Server Board S1200SPS, 10 pieces." + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Friday, June 28, 2019", + "Last Order": "Friday, June 28, 2019", + "Last Receipt Attributes": "Friday, June 28, 2019", + "Included Items": "(1) I/O Shield AXXCWIOS", + "Description": "An I/O shield for the Intel® Server Chassis P4000G family with the Intel® Server Board S2600CW & and Intel® Server Board S2600ST families." + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Jackson Pass", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "I/O Module Carrier, Riser, Bracket. Note:AXXRMM4LITE is NOT included", + "Description": "PCI Express x8 (98 pin) rIOM riser and rIOM carrier board kit for supporting dedicated RMM4 NIC port and containing Intel® I/O module on Slot2 for S1600JP and R1000JP family", + "MM#": "924114", + "Ordering Code": "A1UJPRMM4IOM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "924114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "Intel Remote management module NIC, Activation key", + "Description": "Intel Remote Management Module 4 with activation key - revised for rack systems, direct dock to board", + "MM#": "920858", + "Ordering Code": "AXXRMM4R", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "920858": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) TPM Module AXXTPME5.", + "Description": "TPM 1.2 Module AXXTPME5 for use with Intel® Server Systems running Intel® Xeon® processor E5 family.", + "Additional Information": "View now" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Remote management module", + "Description": "KVM and Dedicated NIC module together", + "MM#": "911670", + "Ordering Code": "AXXRMM4", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "911670": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "EOL Announce": "Wednesday, December 14, 2016", + "Last Order": "Thursday, June 1, 2017", + "Last Receipt Attributes": "Sunday, October 1, 2017", + "Included Items": "Includes (1) Remote Management Lite Module", + "Description": "Remote Management Module for upgrading to Remote KVM features" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "Includes (1) TPM module", + "Description": "Trusted Platfrom Module for E3 based boards and systems" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "2012", + "Description": "Remote Management Module 3 Lite", + "MM#": "905659", + "Ordering Code": "AXXRMM3LITE", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8473301180", + "905659": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Last Order": "Sunday, October 31, 2010", + "Description": "Remote Management Module 2", + "MM#": "894383", + "Ordering Code": "AXXRMM2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "894383": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Remote Management Module", + "MM#": "877421", + "Ordering Code": "AXXRMM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "877421": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Management Module Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "Remote Management Module 3", + "MM#": "900961", + "Ordering Code": "AXXRMM3", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8473301180", + "900961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Launched", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2023", + "Included Items": "Includes (1) SATA Slim-line Optical DVD /- Re-writeable Drive. (1) 880mm SATA cable. Note: A peripheral power cable is included with the systems that have support for optical drives. (Optical drives are not supported in R2312WT & R2224WT based systems) Note: Unoccupied SATA 7-pin port is required for the device installation on Silver Pass Server Systems.", + "Description": "SATA Slim-line Optical DVD +/- Re-writeable Drive", + "MM#": "906873", + "Ordering Code": "AXXSATADVDRWROM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "906873": "PCN\n |\n MDDS", + "937575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Launched", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2023", + "Included Items": "(1) SATA Slim-line Optical DVD Drive. (1) 880mm SATA cable. Note: A peripheral power cable is included with the systems that have support for optical drives. (Optical drives are not supported in R2312WT & R2224WT based systems). Note: Unoccupied SATA 7-pin port is required for the device installation on Silver Pass Server Systems.", + "Description": "SATA Slim-line Optical DVD Drive", + "MM#": "906872", + "Ordering Code": "AXXSATADVDROM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "906872": "PCN\n |\n MDDS", + "937569": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "USB Floppy Device", + "MM#": "881267", + "Ordering Code": "AXXUSBFLOPPY", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471704035", + "881267": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "Slimline DVD-ROM", + "MM#": "891932", + "Ordering Code": "AFCDVD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "891932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Included Items": "Mounting screws", + "Description": "DVD/CDR Slimline Drive", + "MM#": "880559", + "Ordering Code": "AXXDVDCDR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "880559": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Included Items": "Mounting screws", + "Description": "Slimline CD Drive", + "MM#": "885100", + "Ordering Code": "AXXSCD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "885100": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Optical/Floppy Drive Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Included Items": "Mounting screws", + "Description": "Slimline DVD-ROM", + "MM#": "907048", + "Ordering Code": "AXXDVDROM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471706000", + "907048": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "2025", + "Included Items": "(1) Power supply module", + "Description": "750W AC Slimline 80+ Platinum efficiency power supply module Used: Intel® Server System M20NTP1UR304 Power cord sold separately", + "MM#": "99AMPT", + "Ordering Code": "AXXBFP750SLPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q4'21", + "Expected Discontinuance": "2024", + "Included Items": "(1) Power Distribution Board (Primary) VP3MPDBASSMBL", + "Description": "Primary power distribution board assembly spare kit", + "MM#": "99AJLG", + "Ordering Code": "VP3MPDBASSMBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109150", + "99AJLG": "PCN" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q4'21", + "Expected Discontinuance": "2024", + "Included Items": "(1) Power Distribution Board (2) Management risers attached to the power distribution board", + "Description": "Secondary Power Distribution Board Assembly", + "MM#": "99AJLF", + "Ordering Code": "VP3DPDBASSMBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109150", + "99AJLF": "PCN" + }, + { + "Product Collection": "Power Options", + "Code Name": "Products formerly Kelton Pass", + "Status": "Discontinued", + "Launch Date": "Q1'21", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, March 7, 2022", + "Last Order": "Friday, May 6, 2022", + "Last Receipt Attributes": "Tuesday, July 5, 2022", + "Included Items": "(1) 2000W AC Common Redundant Power Supply", + "Description": "2000 W AC common redundant power supply, 80 Plus Platinum efficiency" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q3'19", + "Included Items": "(1) Spare 1600W AC Common Redundant Power Supply AXX1600CRPS", + "Description": "1600 W AC common redundant power supply, 80 PLUS* Titanium efficiency", + "MM#": "99ADF2", + "Ordering Code": "AXX1600TCRPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "99ADF2": "MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q3'19", + "Included Items": "(1) Spare 2100W AC Common Redundant Power Supply FCXX2100CRPS", + "Description": "2100 W AC common redundant power supply, 80 PLUS* Platinum efficiency", + "MM#": "999D4L", + "Ordering Code": "FCXX2100CRPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "999D4L": "PCN" + }, + { + "Product Collection": "Power Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2026", + "Included Items": "1300W AC CRPS 80+ Titanium efficiency power supply modulePower cord sold separately", + "Description": "Accessory 1300W Titanium Power Supply Unit.", + "MM#": "956542", + "Ordering Code": "AXX1300TCRPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "956542": "PCN" + }, + { + "Product Collection": "Power Options", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Included Items": "(1) Node Power Board", + "Description": "Spare Node Power Board for H2000XXKR2 Chassis with the HNS7200AP Compute Module" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q4'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) Power adapter FXXSSIPWR", + "Description": "Power cable extension for Server System Infastructure (SSI) power connectors FXXSSIPWR", + "MM#": "936430", + "Ordering Code": "FXXSSIPWR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "936430": "MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) 1100W AC common redundant power supply AXX1100PCRPS (Platinum Efficiency)", + "Description": "Spare/accessory 1100W AC common redundant power supply with 80 Platinum Efficiency", + "MM#": "936183", + "Ordering Code": "AXX1100PCRPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "936183": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'20", + "EOL Announce": "Monday, April 6, 2020", + "Last Order": "Thursday, May 28, 2020", + "Last Receipt Attributes": "Tuesday, July 28, 2020", + "Included Items": "(1) 750W DC power supply AXX750DCCRPS (Gold Efficiency) and (1) O-ring terminal adapter", + "Description": "750W DC common redundant power supply with 80 Gold Efficiency" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Description": "Intel Server System SR2600/2625 750W Power Suppy - Supports Intel® On Demand Redundant Power Technology (Cold Redundant Power Supplies)", + "MM#": "907612", + "Ordering Code": "AXX750WPSCR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "907612": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "03'10", + "Description": "1U Intel Server System SR1695WB Spare 450-watt DC redundant PSU for SR1695WBDC with PM Bus", + "MM#": "907791", + "Ordering Code": "ASR1695PSDC", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406012", + "907791": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "600W Power Supply - required for power redundancy for the Intel(R) Server Chassis SC5650BRP" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "750W Power Supply Module", + "MM#": "901681", + "Ordering Code": "AXX750WPS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "901681": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "650W Power Supply", + "MM#": "901016", + "Ordering Code": "ASR1625PS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "901016": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Description": "1000W Power Supply Module", + "MM#": "902463", + "Ordering Code": "AXXPSU", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "902463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "1570W Power Supply", + "MM#": "891016", + "Ordering Code": "AFC4UPWR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406007", + "891016": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "2010", + "Description": "600W Power Supply", + "MM#": "903006", + "Ordering Code": "ASR600WPSU", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "903006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "600W Power Supply", + "MM#": "880899", + "Ordering Code": "ASR1500PS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "880899": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "650W Power Supply", + "MM#": "878018", + "Ordering Code": "APP4650WPSU", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "878018": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "750W Power Supply", + "MM#": "881262", + "Ordering Code": "ASR2500PS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "881262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Power Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Description": "650W Power Supply", + "MM#": "881674", + "Ordering Code": "ASR1550PS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504406018", + "881674": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly North Pass", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "2025", + "Included Items": "Left and Right rail assemblies Installation guide", + "Description": "Chassis rail kit supporting 4-Post Racks or Server cabinets o 1U, 2U compatible o Tool-less chassis attachment & installation to rack o Rack installation front and rear post distance adjustment from 547 mm to 850 mm", + "MM#": "99ANFL", + "Ordering Code": "AXXFULLEXTRAILK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q4'21", + "Expected Discontinuance": "2024", + "Included Items": "(1) Tool Less Rack Rail Mount Kit", + "Description": "Tool Less Rack Rail Mount Kit", + "MM#": "99AJJ8", + "Ordering Code": "VPXXRAILKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "99AJJ8": "PCN" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) GPGPU air duct (1) GPGPU air duct bracket (2) 200/250 mm GPGPU power cable (2) 235 mm ATS300W power cable Note: Systems configured with any type of GPGPU card must have the shipping bracket installed before the system is exposed to any level of shock or vibration or is shipped to the end user location. Failure to install the shipping bracket has the potential to cause serious damage to various components within the system.", + "Description": "2U GPGPU Air Duct (when installing GPGPU accelerator add-in cards). Note: The Intel® Server System M50CYP1UR family does not support GPGPU accelerator cards with active heat sinks.", + "MM#": "99A3RD", + "Ordering Code": "CYPGPGPUKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "• Tool-less installation • Rack installation front and rear post distance adjustment from 623 mm ~ 942 mm • 820 mm travel distance • Full extension from rack • 31 Kgs (68.34 lbs) maximum supported weight • Support for Cable Management Arm AXXCMA2", + "Description": "1U and 2U Full Extension Rail Kit with cable management arm (CMA) support", + "MM#": "999ZCN", + "Ordering Code": "CYPFULLEXTRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "• Tool-less chassis attachment • Tools required to attach rails to rack • Rack installation front and rear post distance adjustment from 660 mm to 838 mm • 560 mm travel distance • Half extension from rack • Support for front cover removal and fan replacement • 31 kg (68.34 lbs) maximum support weight", + "Description": "1U and 2U Half Extension Rail Kit Note: No cable management arm support.", + "MM#": "99A3RR", + "Ordering Code": "CYPHALFEXTRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Kelton Pass", + "Status": "Launched", + "Launch Date": "Q1'21", + "Description": "2U Full Extension Rail Kit" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q3'19", + "Included Items": "(4) Internal rails.", + "Description": "Internal rail spare kit for FC2000 chassis.", + "MM#": "999D4H", + "Ordering Code": "FCXX1USPPRT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "999D4H": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q3'19", + "Included Items": "(1) Set of fixed rails", + "Description": "Fixed position rack mount rail kit. Tool less installation.", + "MM#": "999D4J", + "Ordering Code": "FCXXRAILKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "999D4J": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Announced", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2H'20", + "Included Items": "Mounting hardware included.", + "Description": "Cable Management Arm support for AXXAF1RAIL rail kit option only." + }, + { + "Product Collection": "Rail Options", + "Status": "Announced", + "Launch Date": "Q2'18", + "Expected Discontinuance": "2H'20", + "Description": "Rail kit with CMA support for RAF1000 storage systems." + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) Bracket", + "Description": "Bracket to support up to 3 Battery Backup Units installed", + "MM#": "959895", + "Ordering Code": "AXXSTBBUBRKT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "(1) - Bracket(3) – GPGPU power cable(3) – Xeon Phi* specific bracket(1) – 2x2 Aux-In power cable", + "Description": "KIT for securing full length GPU cards to fan bulkhead, for use in P4000 chassis", + "MM#": "959897", + "Ordering Code": "AXXSTPHIKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q3'15", + "Expected Discontinuance": "2023", + "Included Items": "(1) Rail set, screws, installation manual", + "Description": "1U Premium quality rails with CMA support (Travel distance 780mm, adjustment within 609.6mm~762mm to fit difference depth rack, full extension from rack)", + "MM#": "939207", + "Ordering Code": "A1UFULLRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "939207": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q3'15", + "Expected Discontinuance": "2023", + "Included Items": "(1) Rail set screws installation manual", + "Description": "1U Short Rail Kit (Travel distance 780mm, adjustment within 609.6mm~762mm to fit difference depth rack, full extension from rack)", + "MM#": "939208", + "Ordering Code": "A1USHRTRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "939208": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "2023", + "Included Items": "(1) Rail set, screws, installation manual", + "Description": "2/4U Premium quality rails with CMA support (Travel distance 800mm, adjustment within 594.8mm~813mm to fit difference depth rack)", + "MM#": "939209", + "Ordering Code": "AXXFULLRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "939209": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "2023", + "Included Items": "(1) Rail set screws installation manual", + "Description": "2U Premium quality rails no cable management arm (Travel distance 788mm, adjustment within 594.8mm~813mm to fit difference depth rack, bracket adjustment from 594.8mm to 813mm, full extension from rack, supports up to 45Kg)", + "MM#": "939210", + "Ordering Code": "AXXSHRTRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "939210": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q3'15", + "Expected Discontinuance": "2023", + "Included Items": "(1) Cable management arm and installation manual", + "Description": "Cable management arm for 2/4U Premium Rail AXXFULLRAIL only", + "MM#": "939211", + "Ordering Code": "AXXCMA2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "939211": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) set of Rails", + "Description": "Value Rail Kit Works for 438mm wide Intel 1U/2U Rack Chassis (R1300, R1200) Front and rear mounting bracket adjustment distance: 609mm to 705mm (424mm max travel length)" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Union Peak", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "1 bracket, 4 GPGPU power cables, 4 Intel® Xeon® Phi™ Coprocessor PCI Express* Card extension brackets, screws.", + "Description": "Bracket for securing full length double width Xeon Phi cards to fan bulkhead. For use in P4000L/P4000L-WS chasses", + "MM#": "926365", + "Ordering Code": "AUPLCOPROBR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "926365": "PCN" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Union Peak", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 20, 2020", + "Last Order": "Thursday, August 20, 2020", + "Last Receipt Attributes": "Tuesday, October 20, 2020", + "Included Items": "(1) bracket, (2) power cables, (2) extension brackets, screws", + "Description": "Bracket for securing full length double width graphic cards to fan bulkhead. For use in P4000M chassis", + "MM#": "926364", + "Ordering Code": "AUPMCOPROBR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "926364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Beartooth Pass", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) set of rails, no CMA support.", + "Description": "Shortened (no CMA support) premium full extending rails with out CMA support." + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Grizzly Pass", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "One bracket for R2000GZ/GL and R2000BB chassis", + "Description": "Accessory bracket to enable mouting of 3 MFBBUs or 1 MFBBU and 2 SSD over power supply", + "MM#": "921747", + "Ordering Code": "A2UBKTMFBUSSD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "921747": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) Advanced Rail Set for Intel® Server Chassis P4000 Family", + "Description": "Advanced rail kit for P4000M/P4000L/P4000L-WS Server Chassis used when converting Pedestal chassis to 4U rack chassis, and full extension rails are needed. Travel Length 800mm, Full length 1601.7 mm", + "MM#": "915634", + "Ordering Code": "AXX3U5UPRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "915634": "MDDS" + }, + { + "Product Collection": "Rail Options", + "Code Name": "Products formerly Union Peak", + "Status": "Launched", + "Launch Date": "Q3'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) Enhanced value rail kit set", + "Description": "Enhanced Value Rail Kit - Works for all 438mm wide Intel® Rack Chassis 1U, 2U, 4U. (424.2mm maximum travel length, adjustment within 609.6mm~765mm to fit difference depth rack, 2/3 extension from rack, 130 lbs. (59 Kgs) max support weight)", + "MM#": "920970", + "Ordering Code": "AXXELVRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "920970": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Included Items": "Includes 1 bracket, 4 GPGPU power cables, and screws.", + "Description": "Bracket for securing full length double width GPU cards to fan bulkhead in P4000L/P4000L-WS", + "MM#": "920612", + "Ordering Code": "AUPLGPUBR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "920612": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Included Items": "Includes 1 bracket, 2 GPGPU power cables, and screws.", + "Description": "Bracket for securing full length double width GPU cards to fan bulkhead in P4000M.", + "MM#": "920613", + "Ordering Code": "AUPMGPUBR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "920613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "2023", + "Included Items": "(1) Set of fixed mount brackets for 2-post racks", + "Description": "1U/2U fixed mounting brackets for center mount on 2-post racks", + "MM#": "918808", + "Ordering Code": "AXX2POSTBRCKT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "918808": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) Rail set AXXPRAIL for use with R1000/R2000 product families", + "Description": "1U/2U Premium Rail Kit - Full extension and toolless rail kit. (Full extension toolless rail kit allows adjustment within 609.6mm~762mm to fit difference depth rack. Maximum extension when installed (travel distance) 800 mm)", + "MM#": "924417", + "Ordering Code": "AXXPRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "924417": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Included Items": "(1) Set Fixed mounting brackets", + "Description": "Fixed mount rack bracket for R1XXX and R2XXX systems" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) set of rails", + "Description": "Value Rail Kit - Works for all 438mm wide Intel® Rack Chassis 1U, 2U, 4U. Rail allows adjustment within 609.6mm~765mm to fit difference depth rack. Maximum extension when installed (travel distance) 424.2mm.", + "MM#": "912796", + "Ordering Code": "AXXVRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "912796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Basic Rail Kit", + "MM#": "881096", + "Ordering Code": "AXXBASICRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "881096": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Cable Management Arm", + "MM#": "901084", + "Ordering Code": "AXXRACKARM2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "901084": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "2014", + "Description": "Tool-less Rail Kit", + "MM#": "908287", + "Ordering Code": "AXXMFRAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "893313": "PCN\n |\n MDDS", + "908287": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Description": "Tool-less Rail Kit", + "MM#": "881844", + "Ordering Code": "AXXRAIL3U7U", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "881844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "(1) Cable management arm kit", + "Description": "Universal Rack Mode Cable Management Arm", + "MM#": "908428", + "Ordering Code": "AXXCMA3U7U", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8544429090", + "908428": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "Hinge cover; rack handles, intrusion switch jumper, new rail kit assembly, rack hardware kit, icon label, installation guide", + "Description": "Pedestal to Rack Conversion Kit", + "MM#": "908431", + "Ordering Code": "ARIGRACK", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "908431": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Description": "Basic Rail Kit", + "MM#": "899080", + "Ordering Code": "AXXBASRAIL13", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "899080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Included Items": "(1) Set Fixed mounting brackets", + "Description": "Fixed Mount Brackets", + "MM#": "863262", + "Ordering Code": "AXXBRACKETS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "863262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2012", + "Description": "Tool-less Full Extending Rail Kit", + "MM#": "901082", + "Ordering Code": "AXXHERAIL2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "901082": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Description": "Cable Management Arm" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2012", + "Included Items": "Rack rails and hardware for rack installation", + "Description": "Pedestal to Rack Conversion Kit", + "MM#": "882457", + "Ordering Code": "APP3RACKIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "882457": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Rail Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Description": "Tool-less Full Extending Rail Kit", + "MM#": "881328", + "Ordering Code": "AXXHERAIL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "881328": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "2026", + "Last Order": "Friday, July 1, 2022", + "Included Items": "(1) Riser Card", + "Description": "Riser card for Riser Slot #1. Slot 1 (top) - One full height/full length single width slot (x16 electrical, x16 mechanical) Slot 1 (bottom) - One full height/full length single width slot (x16 electrical, x16 mechanical)", + "MM#": "99AM7W", + "Ordering Code": "CYP2URISER1SNL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "2026", + "Last Order": "Friday, July 1, 2022", + "Included Items": "(1) Riser Card", + "Description": "Riser card for Riser Slot #2. Slot 1 (top) - One full height/full length single width slot (x16 electrical, x16 mechanical) Slot 1 (bottom) - One full height/full length single width slot (x16 electrical, x16 mechanical)", + "MM#": "99AM87", + "Ordering Code": "CYP2URISER2SNL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Interposer Riser card PCBA (1) PCIe* NVMe* Riser card PCBA (1) PCIe* Interposer cable", + "Description": "Riser card kit for Riser Slot #2 only. Two-slot PCIe* Interposer Two-slot PCIe* NVMe* Riser card.", + "MM#": "99A3PF", + "Ordering Code": "CYP1URISER2KIT", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #2 only. Supports: one low profile, half length, single-width add-in card (x16 electrical, x16 mechanical)", + "MM#": "99A3P9", + "Ordering Code": "CYP1URISER2STD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P9": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card kit for Riser Slot #3 only. Supports two-slot PCIe* NVMe* Riser Card. • PCIe SSD 0-1 Slot (top) (x8 electrical, x8 mechanical) • PCIe SSD 2-3 Slot (bottom) (x8 electrical, x8 mechanical)", + "MM#": "99A3PA", + "Ordering Code": "CYPRISER3RTM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #1 only. Supports: one low profile, half length, single-width add-in card (x16 electrical, x16 mechanical)", + "MM#": "99A3MX", + "Ordering Code": "CYP1URISER1STD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3MX": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #1 only. Supports: • Slot 3 (top) – One half length or full length single-width slot (x16 mechanical, x16 electrical) • Two x8 PCIe* NVMe* SlimSAS* connectors - PCIe_SSD_0-1 (top) - PCIe_SSD_2-3 (bottom) –", + "MM#": "99A3P3", + "Ordering Code": "CYP2URISER1RTM", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #1 only. Supports: • Slot 1 (top), One full height/full length single • Slot 2 (middle), One full height/full length single • Slot 3 (bottom), One full height/half length single", + "MM#": "99A3P4", + "Ordering Code": "CYP2URISER1STD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P4": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #2 only. Supports: • Slot 1 (top) – One full height/full length single-width slot • Slot 2 (middle) – One full height/full length single-width slot • Slot 3 (bottom) – One full height/half length single-width slot", + "MM#": "99A3P6", + "Ordering Code": "CYP2URISER2STD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P6": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #3 only. Supports: • Slot 1 (top) – low profile/ half length single-width slots (x16 mechanical, x8 electrical) • Slot 2 (bottom) – low profile/ half length single-width slots (x16 mechanical, x8 electrical)", + "MM#": "99A3P8", + "Ordering Code": "CYP2URISER3STD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P8": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #1 only. Supports: • Slot 1 (top) – One full height/full length double-width slot (x16 electrical, x16 mechanical) • Slot 2 (bottom) – One full height/hall length single-width slot (x16 electrical, x16 mechanical)", + "MM#": "99A3P5", + "Ordering Code": "CYP2URISER1DBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P5": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Coyote Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2026", + "Included Items": "(1) Riser card", + "Description": "Riser card for Riser Slot #2 only. Supports: • Slot 1 (top) – One full height/full length double-width slot (x16 electrical, x16 mechanical) • Slot 2 (bottom) – One full height/hall length single-width slot (x16 electrical, x16 mechanical)", + "MM#": "99A3P7", + "Ordering Code": "CYP2URISER2DBL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "99A3P7": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "1x 1U PCI Express x16 Riser Card for slot 1, 2x screws", + "Description": "1U PCI Express x16 Riser Card for Low-profile PCIe* Card AHW1URISER1 (Slot 1), Single", + "MM#": "948931", + "Ordering Code": "AHW1URISER1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "948931": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "1x 1U PCI Express x16 Riser Card with 80mm M.2 connector, 2x screws", + "Description": "1U PCI Express x16 Riser Card for Low-profile PCIe* Card and M.2 Device", + "MM#": "948932", + "Ordering Code": "AHW1UM2RISER2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "948932": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2023", + "Included Items": "1U 1-slot PCIe riser card optionOne PCIe* add-in card slot – PCIe* x16, x16 mechanicalKit includes:(1) Riser card PCBA", + "Description": "Spare 1U Riser card for Slot 1 and Slot 2.", + "MM#": "958249", + "Ordering Code": "F1UL16RISER3", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "958249": "PCN" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Monday, July 29, 2019", + "Last Order": "Friday, July 3, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) riser card for Intel® R1000 chassis", + "Description": "Standard PCIe x 16 Riser card for R1000 chassis. RoHS free." + }, + { + "Product Collection": "Riser Card Options", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "1) PCI Express x16 (200 pin) rIOM riser, (1) rIOM carrier board, (1) SATA cable", + "Description": "1x16 PCI Express Gen 3 (200 pin) rIOM riser and rIOM carrier board kit supporting the Intel I/O module and one SATA 80mm M.2 device for Intel® Compute Module HNS2600KP and Intel® Compute Module HNS2600TP families for Slot 2" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Included Items": "(1) PCI Express x16 (200 pin) rIOM riser, and (1) rIOM carrier board", + "Description": "1x16 PCI Express Gen 3 (200 pin) rIOM riser and rIOM carrier board kit supporting the Intel I/O module for Intel® Compute Module HNS2600KP and Intel® Compute Module HNS2600TP families for Slot 2" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Launched", + "Launch Date": "Q4'14", + "Expected Discontinuance": "2023", + "Included Items": "(1) 2U Spare short riser A2UX8X4RISER", + "Description": "Spare 2U short riser for the Intel® Server System R2000WT family with 1x8 PCIe Gen 3 plus 1x4 PCIe Gen 2 slots", + "MM#": "934883", + "Ordering Code": "A2UX8X4RISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109150", + "934883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Tuesday, October 20, 2015", + "Last Order": "Wednesday, April 20, 2016", + "Last Receipt Attributes": "Wednesday, July 20, 2016", + "Included Items": "1 riser board", + "Description": "230 pin 1U riser – x8 electrical/x16 mechanical slot – routed from CPU1. Long riser slot. Purposed for use with S2400BB", + "MM#": "922057", + "Ordering Code": "A1UL8RISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "922057": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Included Items": "(1) riser card for Intel® R2000M chassis", + "Description": "Standard PCIe x 16 Riser card for Intel® Server Chassis R2000M, Riser has one PCIe x 16 slot", + "MM#": "919822", + "Ordering Code": "AXX2UPCIEX16", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8537109170", + "919822": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Included Items": "(1) riser card for Intel® R2000M chassis", + "Description": "Standard PCIe x 16 Riser card for Intel® Server Chassis R2000M, Riser has one PCIe x 8 and two PCIe x4 slots", + "MM#": "919823", + "Ordering Code": "AXX2UPCIEX8X4", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8537109170", + "919823": "MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Riser A2UL16RISER (passive 1x16 and 1x8) for R2000GZ/GL/BB Intel® Server Systems", + "Description": "2U PCIE Riser A2UL16RISER (passive 1x16 and 1x8) for R2000GZ/GL/BB Intel® Server Systems", + "MM#": "917981", + "Ordering Code": "A2UL16RISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "917981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) PCIE Riser A2UL8RISER (passive 3x8 for R2000GZ/GL/BB Intel® Server Systems)", + "Description": "2U PCIE Riser A2UL8RISER (passive 3x8 Slot) for R2000GZ/GL/BB Intel® Server Systems", + "MM#": "917979", + "Ordering Code": "A2UL8RISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "917979": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Included Items": "(1) Riser A2ULPCIXRISER (passive 2xPCI-X and 1x8)", + "Description": "2U PCIE/X Riser A2ULPCIXRISER (passive 2xPCI-X and 1x8) for R2000 Server Systems", + "MM#": "917980", + "Ordering Code": "A2ULPCIXRISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "917980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "1U PCI Express Riser Assembly", + "MM#": "892597", + "Ordering Code": "AXXPCIE16RISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "892597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Included Items": "Five Slot PCI-Express Active Riser", + "Sockets Supported": "N/A", + "Description": "Five Slot PCI-Express Active Riser", + "MM#": "915539", + "Ordering Code": "ASR26XXFHLPRP", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "901077": "PCN\n |\n MDDS", + "915539": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "Five Slot PCI-Express Active Riser with PCI-X Bridge", + "MM#": "901080", + "Ordering Code": "ASR26XXFHXR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "901080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Low Profile half-lenght PCI-Express x8 Riser card", + "MM#": "900772", + "Ordering Code": "AHJTPCIERISER", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8537109170", + "900772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Description": "Three Slot PCI-X Riser Assembly", + "MM#": "902279", + "Ordering Code": "ASR26XXFH3XR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109150", + "902279": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "2012", + "Sockets Supported": "N/A", + "Description": "Three Slot Passive PCI-Express Riser", + "MM#": "901079", + "Ordering Code": "ASR26XXFHR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "901079": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Memory Riser Board", + "MM#": "899976", + "Ordering Code": "BFCMEM", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8537109170", + "899976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "2011", + "Sockets Supported": "N/A", + "Description": "PCI Express Riser Card", + "MM#": "891938", + "Ordering Code": "ASHPCIEUP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "891938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "2010", + "Description": "Combo PCI Express Riser Card", + "MM#": "887202", + "Ordering Code": "AHJPCIERISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "887202": "PCN" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "2010", + "Description": "Combo PCI Express x8 Adapter/PCI-X 133 Riser Card", + "MM#": "888219", + "Ordering Code": "AHJPCIRISER", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "888219": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Full Height PCI-Express Riser", + "MM#": "856373", + "Ordering Code": "ADWPCIEXPR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "856373": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Full Height PCI-Express Riser Card", + "MM#": "880515", + "Ordering Code": "ASR2500FHR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "880515": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Full Height PCI-X Active Riser Card", + "MM#": "856546", + "Ordering Code": "ADRACTRIS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "856546": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Full Height PCI-X Riser", + "MM#": "865412", + "Ordering Code": "ADWPCIXR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "865412": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2010", + "Description": "Full Height PCI-X Riser Card", + "MM#": "863135", + "Ordering Code": "ADRPCIXRIS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8537109170", + "863135": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Riser Card Options", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "2010", + "Sockets Supported": "N/A", + "Description": "Riser Card", + "MM#": "880522", + "Ordering Code": "ASR15XXLPRIS", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "880522": "MDDS" + }, + { + "Product Collection": "Security Module Option", + "Code Name": "Products formerly Kelton Pass", + "Status": "Launched", + "Launch Date": "Q1'21", + "Included Items": "Intel® Trusted Platform Module (TPM) 2.0", + "Description": "TPM 2.0 Module for Intel® Server Board M70KLP2SB Family.", + "MM#": "99AF8H", + "Ordering Code": "KLPTPM", + "ECCN": "HOLD", + "CCATS": "NA", + "US HTS": "8471801000" + }, + { + "Product Collection": "Security Module Option", + "Code Name": "Products formerly Juniper Pass", + "Status": "Launched", + "Launch Date": "Q4'19", + "Expected Discontinuance": "Q3'22", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Monday, October 31, 2022", + "Last Receipt Attributes": "Saturday, December 31, 2022", + "Included Items": "Intel® Trusted Platform Module (TPM) 2.0", + "Description": "TPM 2.0 Module for Intel® Server Board M10JNP Family for PRC region.", + "MM#": "999PM2", + "Ordering Code": "JNPTPMCH", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471801000", + "999PM2": "PCN" + }, + { + "Product Collection": "Security Module Option", + "Code Name": "Products formerly Juniper Pass", + "Status": "Launched", + "Launch Date": "Q4'19", + "Expected Discontinuance": "2022", + "Included Items": "Intel® Trusted Platform Module (TPM) 2.0", + "Description": "TPM 2.0 Module for Intel® Server Board M10JNP Family.", + "MM#": "999PLH", + "Ordering Code": "JNPTPM", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8471801000" + }, + { + "Product Collection": "Intel® Optane™ Memory H20 with Solid State Storage", + "Code Name": "Products formerly Pyramid Glacier", + "Capacity": "1 TB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Sequential Bandwidth - 100% Read (up to)": "3400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2100 MB/s", + "Power - Active": "170mW", + "Power - Idle": "35mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1500 G /0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "370 TBW", + "Mean Time Between Failures (MTBF)": "= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 1015 bits read", + "Warranty Period": "5 yrs", + "Description": "Premium storage solution featuring Intel Optane Memory Technology and 3rd Gen Intel 3D QLC NAND technology on a single M.2 form factor Drive", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "Yes", + "MM#": "99A26F", + "Ordering Code": "HBRPEKNL0203A01", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471706000", + "99A26F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Optane™ Memory H20 with Solid State Storage", + "Code Name": "Products formerly Pyramid Glacier", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Sequential Bandwidth - 100% Read (up to)": "3400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "2000 MB/s", + "Power - Active": "170mW", + "Power - Idle": "35mW", + "Vibration - Operating": "2.17 GRMS (5-700Hz)", + "Vibration - Non-Operating": "3.13GRMS (5-800Hz)", + "Shock (Operating and Non-Operating)": "1500 G/0.5ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "185 TBW", + "Mean Time Between Failures (MTBF)": "= 1.6 million hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Description": "Premium storage solution featuring Intel Optane Memory Technology and 3rd Gen Intel 3D QLC NAND technology on a single M.2 form factor Drive", + "Weight": "<10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Hardware Encryption": "AES 256 bit", + "High Endurance Technology (HET)": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Memory H10 with Solid State Storage", + "Code Name": "Products formerly Teton Glacier", + "Capacity": "256 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "1450 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "650 MB/s", + "Power - Active": "5.3W", + "Power - Idle": "L1.2 : <12mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1000 G / 0.5 ms and 1500 G / 0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "75TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Additional Information": "View now", + "Description": "Introducing the new Intel® Optane™ Memory H10 with Solid State Storage which combines two breakthrough technologies, Low-latency Intel® Optane™ technology and high-density Intel® QLC 3D NAND in a single M.2 2280 form factor.", + "Weight": "Less than 10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes", + "MM#": "999MJ9", + "Ordering Code": "HBRPEKNX0101A08", + "ECCN": "5A992C", + "CCATS": "G158570", + "US HTS": "8471706000", + "999MJ9": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Memory H10 with Solid State Storage", + "Code Name": "Products formerly Teton Glacier", + "Capacity": "1 TB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "2400 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1800 MB/s", + "Power - Active": "5.8W", + "Power - Idle": "L1.2 : <13mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1000 G / 0.5 ms and 1500 G / 0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "300 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Additional Information": "View now", + "Description": "Introducing the new Intel® Optane™ Memory H10 with Solid State Storage which combines two breakthrough technologies, Low-latency Intel® Optane™ technology and high-density Intel® QLC 3D NAND in a single M.2 2280 form factor.", + "Weight": "Less than 10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes", + "MM#": "999MJG", + "Ordering Code": "HBRPEKNX0203A08", + "ECCN": "5A992C", + "CCATS": "G158570", + "US HTS": "8471706000", + "999MJG": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Memory H10 with Solid State Storage", + "Code Name": "Products formerly Teton Glacier", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Use Conditions": "PC/Client/Tablet", + "Sequential Bandwidth - 100% Read (up to)": "2300 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "1300 MB/s", + "Power - Active": "5.8W", + "Power - Idle": "L1.2 : <13mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz) Max", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz) Max", + "Shock (Operating and Non-Operating)": "1000 G / 0.5 ms and 1500 G / 0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "150 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hours", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Additional Information": "View now", + "Description": "Introducing the new Intel® Optane™ Memory H10 with Solid State Storage which combines two breakthrough technologies, Low-latency Intel® Optane™ technology and high-density Intel® QLC 3D NAND in a single M.2 2280 form factor.", + "Weight": "Less than 10 grams", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x4, NVMe", + "Enhanced Power Loss Data Protection": "Yes", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes", + "MM#": "999MJF", + "Ordering Code": "HBRPEKNX0202A08", + "ECCN": "5A992C", + "CCATS": "G158570", + "US HTS": "8471706000", + "999MJF": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Memory M10 Series", + "Code Name": "Products formerly Stony Beach", + "Capacity": "16 GB", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "900 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "150 MB/s", + "Random Read (100% Span)": "190000 IOPS (4K Blocks)", + "Random Write (100% Span)": "35000 IOPS (4K Blocks)", + "Power - Active": "2W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Description": "A smart, adaptable system accelerator that delivers faster, smoother, and amazingly responsive computing experience.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 42mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Memory M10 Series", + "Code Name": "Products formerly Stony Beach", + "Capacity": "16 GB", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "900 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "150 MB/s", + "Random Read (100% Span)": "190000 IOPS (4K Blocks)", + "Random Write (100% Span)": "35000 IOPS (4K Blocks)", + "Power - Active": "2W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Description": "A smart, adaptable system accelerator that delivers faster, smoother, and amazingly responsive computing experience.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Memory M10 Series", + "Code Name": "Products formerly Stony Beach", + "Capacity": "32 GB", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "1200 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "290 MB/s", + "Random Read (100% Span)": "240000 IOPS (4K Blocks)", + "Random Write (100% Span)": "65000 IOPS (4K Blocks)", + "Power - Active": "2.5W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Description": "A smart, adaptable system accelerator that delivers faster, smoother, and amazingly responsive computing experience.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Memory M10 Series", + "Code Name": "Products formerly Stony Beach", + "Capacity": "64 GB", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography Type": "3D XPoint™", + "Sequential Bandwidth - 100% Read (up to)": "1450 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "640 MB/s", + "Random Read (100% Span)": "255000 IOPS (4K Blocks)", + "Random Write (100% Span)": "145000 IOPS (4K Blocks)", + "Power - Active": "3.25W", + "Power - Idle": "L1.2 : 8mW", + "Vibration - Operating": "2.17 GRMS (5-700 Hz)", + "Vibration - Non-Operating": "3.13 GRMS (5-800 Hz)", + "Shock (Operating and Non-Operating)": "1000 G/0.5msec", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "365 TBW", + "Mean Time Between Failures (MTBF)": "1.6 Million Hrs", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Description": "A smart, adaptable system accelerator that delivers faster, smoother, and amazingly responsive computing experience.", + "Weight": "< 10 g", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Memory Series", + "Code Name": "Products formerly Stony Beach", + "Capacity": "32 GB", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Sequential Bandwidth - 100% Read (up to)": "1350 MB/s", + "Sequential Bandwidth - 100% Write (up to)": "290 MB/s", + "Random Read (100% Span)": "240000 IOPS (4K Blocks)", + "Random Write (100% Span)": "65000 IOPS (4K Blocks)", + "Power - Active": "3.5 Watts", + "Power - Idle": "1 Watt", + "Vibration - Operating": "2.17 Grms (5-800 Hz) MAX", + "Vibration - Non-Operating": "3.13 Grms (5-800 Hz) MAX", + "Shock (Operating and Non-Operating)": "1500 G / 0.5 ms", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Endurance Rating (Lifetime Writes)": "182.5 TB", + "Mean Time Between Failures (MTBF)": "1.6 Million", + "Uncorrectable Bit Error Rate (UBER)": "< 1 sector per 10^15 bits read", + "Warranty Period": "5 yrs", + "Product Brief": "View now", + "Additional Information": "View now", + "Form Factor": "M.2 22 x 80mm", + "Interface": "PCIe 3.0 x2, NVMe", + "Enhanced Power Loss Data Protection": "No", + "Temperature Monitoring and Logging": "Yes", + "End-to-End Data Protection": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Remote Secure Erase": "No" + }, + { + "Product Collection": "Intel® NUC Mini PC with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Phantom Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PHBi7", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "150 W", + "Pre-Installed Operating System": "Windows 11*", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "NVIDIA RTX 2060 w/ 6GB VRAM, Optane™ Mem H10 (32GB+512GB) Solid State Storage, 16G RAM, Windows® 11 Home included. Other features: Includes far-field quad array microphones, stand for vertical usage, VESA plate, RGB-backlit logo with replaceable mask.", + "Included Storage": "512GB", + "Included Memory": "2x 8GB DDR4-3200 RAM", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x TBT4; HDMI 2.0a; mDP 1.4", + "# of Displays Supported ‡": "4", + "Discrete Graphics": "Nvidia Geforce RTX 2060", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80; 22x80,110", + "# of USB Ports": "10", + "USB Configuration": "3x front (2x Type-A, 1x Type-C) and 5x rear (4x Type-A, 1x Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "2", + "USB 3.0 Configuration (External + Internal)": "8", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AC0X", + "Ordering Code": "RNUC11PHKI7CAA6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AC0M": "PCN\n |\n MDDS", + "99AC0P": "PCN\n |\n MDDS", + "99AC0R": "PCN\n |\n MDDS", + "99AC0X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes 8GB DDR4-3200 RAM, 500GB Gen4 NVMe SSD, 15W Wireless charging lid, far-field quad array microphones", + "Included Storage": "500GB PCIe X4 Gen4 NVMe M.2 SSD", + "Included Memory": "2x 4GB DDR4-3200", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 56mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes 16GB DDR4-3200 RAM, 500GB Gen4 NVMe SSD, 15W Wireless charging lid, far-field quad array microphones", + "Included Storage": "500GB PCIe X4 Gen4 NVMe M.2 SSD", + "Included Memory": "2x 8GB DDR4-3200", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 56mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Included Storage": "500GB Gen 4 NVMe SSD", + "Included Memory": "2x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AA5Z", + "Ordering Code": "BNUC11TNKV50WC2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AA5W": "PCN\n |\n MDDS", + "99AA5X": "PCN\n |\n MDDS", + "99AA5Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Embedded Options Available": "No", + "Included Storage": "500GB Gen 4 NVMe SSD", + "Included Memory": "2x 8GB DDR4", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AA62", + "Ordering Code": "BNUC11TNKV70QC2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AA60": "PCN\n |\n MDDS", + "99AA61": "PCN\n |\n MDDS", + "99AA62": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MC5", + "Ordering Code": "BXNUC10I3FNHFA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MC2": "PCN\n |\n MDDS", + "999MC3": "PCN\n |\n MDDS", + "999MC4": "PCN\n |\n MDDS", + "999MC5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MC1", + "Ordering Code": "BXNUC10I3FNHJA1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MC1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD, 1TB HDD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAH", + "Ordering Code": "BXNUC10I5FNHCA1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAT", + "Ordering Code": "BXNUC10I5FNHJA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAJ": "PCN\n |\n MDDS", + "999MAK": "PCN\n |\n MDDS", + "999MAL": "PCN\n |\n MDDS", + "999MAM": "PCN\n |\n MDDS", + "999MAT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAW", + "Ordering Code": "BXNUC10I5FNKPA3", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAV": "PCN\n |\n MDDS", + "999MAW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD, 1TB HDD", + "Included Memory": "2x 8GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAA", + "Ordering Code": "BXNUC10I7FNHAA1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MA8", + "Ordering Code": "BXNUC10I7FNHJA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MA4": "PCN\n |\n MDDS", + "999MA5": "PCN\n |\n MDDS", + "999MA6": "PCN\n |\n MDDS", + "999MA7": "PCN\n |\n MDDS", + "999MA8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, Windows® 10 x64 Home, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAC", + "Ordering Code": "BXNUC10I7FNKPA2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Islay Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8i5INB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module + 1TB 2.5\" HDD, or 256GB M.2 SSD, and Windows® 10, 64-bit Home pre-installed, includes SDXC card slot", + "Included Items": "Intel® Core™ i5-8265U Processor", + "Product Brief": "View now", + "Included Storage": "1TB HDD, or 256GB M.2 SSD", + "Included Memory": "8GB embedded or 8GB embedded + 16GB Intel® Optane™", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3-1866/2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "HDMI 2.0b, Mini-DP 1.4", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Radeon™ 540X, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999AHN", + "Ordering Code": "BXNUC8I5INHJA3", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999AHN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Islay Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8i7INB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module + 1TB 2.5\" HDD, or 128GB SSD + 1TB 2.5\" HDD, or 256GB M.2 SSD, and Windows® 10, 64-bit Home pre-installed, includes SDXC card slot", + "Included Items": "Intel® Core™ i7-8565U Processor", + "Product Brief": "View now", + "Included Storage": "1TB HDD, or 256GB M.2 SSD, or 1TB HDD + 128GB M.2 SSD", + "Included Memory": "8GB embedded or 8GB embedded + 16GB Intel® Optane™", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3-1866/2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "HDMI 2.0b, Mini-DP 1.4", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Radeon™ 540X, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-8559U Processor (8M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.70 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 32GB Intel® Optane™ Memory M.2 module pre-installed, 2TB HDD, Windows® 10 x64 Home, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Included Storage": "32GB Intel® Optane™ Memory, 2TB HDD", + "Included Memory": "32GB Intel® Optane™ Memory + 1x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-8559U Processor (8M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.70 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 512GB NVMe SSD and Windows® 10, 64-bit Home pre-installed, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "512GB Intel 760p NVMe SSD", + "Included Memory": "2x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 36mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i3-8109U Processor (4M Cache, up to 3.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Max Turbo Frequency": "3.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 1x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "980616", + "Ordering Code": "BOXNUC8I3BEHFA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980604": "PCN\n |\n MDDS", + "980605": "PCN\n |\n MDDS", + "980606": "PCN\n |\n MDDS", + "980607": "PCN\n |\n MDDS", + "980616": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8109U", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975758", + "Spec Code": "SRCUT", + "Ordering Code": "FH8068403419433", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-8259U Processor (6M Cache, up to 3.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "3.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 1x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "980603", + "Ordering Code": "BOXNUC8I5BEHFA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980599": "PCN\n |\n MDDS", + "980600": "PCN\n |\n MDDS", + "980601": "PCN\n |\n MDDS", + "980602": "PCN\n |\n MDDS", + "980603": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q4'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-8259U Processor (6M Cache, up to 3.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "3.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD and Windows® 10, 64-bit Home pre-installed, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "256GB Intel 760p NVMe SSD", + "Included Memory": "2x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 36mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "980598", + "Ordering Code": "BOXNUC8I5BEKPA4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980594": "PCN\n |\n MDDS", + "980595": "PCN\n |\n MDDS", + "980596": "PCN\n |\n MDDS", + "980597": "PCN\n |\n MDDS", + "980598": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly CRIMSON CANYON", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 1TB 2.5\" HDD or 16GB Intel® Optane™ Memory M.2 module + 1TB 2.5\" HDD, and Windows® 10, 64-bit Home pre-installed, includes SDXC card slot", + "Included Items": "Intel® Core™ i3-8121U Processor", + "Product Brief": "View now", + "Included Storage": "1TB HDD", + "Included Memory": "8GB LPDDR4-2400", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "2x HDMI 2.0b", + "# of Displays Supported ‡": "2", + "Discrete Graphics": "Radeon™ 540, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen1; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen1", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999M2D", + "Ordering Code": "BOXNUC8I3CYHJA", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly CRIMSON CANYON", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 1TB 2.5\" HDD or 16GB Intel® Optane™ Memory M.2 module + 1TB 2.5\" HDD, and Windows® 10, 64-bit Home pre-installed, includes SDXC card slot", + "Included Items": "Intel® Core™ i3-8121U Processor", + "Product Brief": "View now", + "Included Storage": "1TB HDD", + "Included Memory": "4GB LPDDR4-2400", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "2x HDMI 2.0b", + "# of Displays Supported ‡": "2", + "Discrete Graphics": "Radeon™ 540, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen1; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen1", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999M2G", + "Ordering Code": "BOXNUC8I3CYHFA2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961399": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly HADES CANYON", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8i7HNB", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "65 W", + "DC Input Voltage Supported": "19", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Board Chipset": "Mobile Intel® HM175 Chipset", + "Processor Included": "Intel® Core™ i7-8705G Processor with Radeon™ RX Vega M GL graphics (8M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "3.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 512GB NVMe SSD, 16GB RAM, Windows® 10 x64 Pro pre-installed, includes 2x Thunderbolt 3 (40Gbps) via rear USB-C ports, SDXC card slot and front USB-A and USB-C ports w/ USB 3.1 Gen 2", + "Product Brief": "View now", + "Included Storage": "512GB NVMe SSD", + "Included Memory": "2x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400+ 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Mini-DP 1.2, 2x Thunderbolt 3, F+R HDMI 2.0a", + "# of Displays Supported ‡": "6", + "Discrete Graphics": "Radeon™ RX Vega M GL graphics", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "2230", + "M.2 Card Slot (storage)": "22x42/80, 22x80", + "# of USB Ports": "13", + "USB Configuration": "F: USB3, 2x USB 3.1g2 (Type A and C); R: 4x USB3, 2x Thunderbolt3 (USB3.1g2); INT: 2x USB2, 2x USB3", + "USB Revision": "2.0, 3.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "1F, 4R, 2i", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, 2x USB 3.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "221 x 142 x 39mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "980555", + "Ordering Code": "BOXNUC8I7HNKQC4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980551": "PCN\n |\n MDDS", + "980552": "PCN\n |\n MDDS", + "980553": "PCN\n |\n MDDS", + "980554": "PCN\n |\n MDDS", + "980555": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8705G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961154", + "Spec Code": "SR3RK", + "Ordering Code": "FH8067703417515", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961154": "PCN" + }, + { + "Product Collection": "Intel® NUC Mini PC with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly HADES CANYON", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8i7HVB", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "100 W", + "DC Input Voltage Supported": "19", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Board Chipset": "Mobile Intel® HM175 Chipset", + "Processor Included": "Intel® Core™ i7-8809G Processor with Radeon™ RX Vega M GH graphics (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "3.10 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 1TB NVMe SSD, 16GB RAM, Windows® 10 x64 Home pre-installed, includes 2x Thunderbolt 3 (40Gbps) via rear USB-C ports, SDXC card slot and front USB-A and USB-C ports w/ USB 3.1 Gen 2", + "Product Brief": "View now", + "Included Storage": "1TB NVMe SSD", + "Included Memory": "2x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400+ 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Mini-DP 1.2, 2x Thunderbolt 3, F+R HDMI 2.0a", + "# of Displays Supported ‡": "6", + "Discrete Graphics": "Radeon™ RX Vega M GH graphics", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "2230", + "M.2 Card Slot (storage)": "22x42/80, 22x80", + "# of USB Ports": "13", + "USB Configuration": "F: USB3, 2x USB 3.1g2 (Type A and C); R: 4x USB3, 2x Thunderbolt3 (USB3.1g2); INT: 2x USB2, 2x USB3", + "USB Revision": "2.0, 3.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "1F, 4R, 2i", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, 2x USB 3.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "221 x 142 x 39mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "983334", + "Ordering Code": "BOXNUC8I7HVKVA6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980546": "PCN\n |\n MDDS", + "980547": "PCN\n |\n MDDS", + "980548": "PCN\n |\n MDDS", + "980549": "PCN\n |\n MDDS", + "980550": "PCN\n |\n MDDS", + "983334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8809G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961160", + "Spec Code": "SR3RL", + "Ordering Code": "FH8067703417615", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961160": "PCN" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Status": "Launched", + "Launch Date": "Q4'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Windows Server 2016*", + "Board Number": "NUC7i5DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i5-7300U Processor (3M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "7th Gen Commercial Intel® NUC with 8GB dual-channel RAM, 256GB NVMe SSD and Windows 10 Pro* for Intel Unite®", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999JKN", + "Ordering Code": "BLKNUC7I5DNKPU2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "9999HK": "PCN", + "9999HV": "PCN", + "999JKL": "PCN", + "999JKN": "PCN" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i3DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "7th Gen Commercial Intel® NUC with 4GB RAM, 1TB HDD, audio in/out jacks and Windows 10 Pro*", + "Included Storage": "1 TB HDD", + "Included Memory": "1x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 52 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "978019", + "Ordering Code": "BLKNUC7I3DNHNC5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "978014": "PCN\n |\n MDDS", + "978015": "PCN\n |\n MDDS", + "978016": "PCN\n |\n MDDS", + "978017": "PCN\n |\n MDDS", + "978018": "PCN\n |\n MDDS", + "978019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i3DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "7th Gen Commercial Intel® NUC with 4GB RAM, 128GB SSD and Windows 10 Pro*", + "Included Storage": "128GB SSD", + "Included Memory": "1x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 36 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "978024", + "Ordering Code": "BLKNUC7I3DNKTC4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "978020": "PCN\n |\n MDDS", + "978021": "PCN\n |\n MDDS", + "978022": "PCN\n |\n MDDS", + "978023": "PCN\n |\n MDDS", + "978024": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i5DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Pre-Installed Operating System": "Windows 10 Pro, 64-bit*", + "Processor Included": "Intel® Core™ i5-7300U Processor (3M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "7th Gen Commercial Intel® NUC with 8GB dual-channel RAM, 256GB NVMe SSD and Windows 10 Pro*", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 36 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "978029", + "Ordering Code": "BLKNUC7I5DNKPC4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "978025": "PCN\n |\n MDDS", + "978026": "PCN\n |\n MDDS", + "978027": "PCN\n |\n MDDS", + "978028": "PCN\n |\n MDDS", + "978029": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i7BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-7567U Processor (4M Cache, up to 4.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Max Turbo Frequency": "4.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 512GB NVMe SSD and Windows® 10, 64-bit Home pre-installed, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "512GB Intel NVMe SSD", + "Included Memory": "2x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "963164", + "Ordering Code": "BOXNUC7I7BNKQL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "963162": "PCN\n |\n MDDS", + "963164": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i5BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-7260U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD and Windows® 10 x64 Home pre-installed, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "256GB Intel NVMe SSD", + "Included Memory": "2x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "963000", + "Ordering Code": "BOXNUC7I5BNKPL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "963000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i7BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i7-7567U Processor (4M Cache, up to 4.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Max Turbo Frequency": "4.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 32GB Intel® Optane™ Memory M.2 module pre-installed, 2TB HDD, Windows® 10 x64 Home, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "32GB Intel® Optane™ Memory, 2TB HDD", + "Included Memory": "32GB Intel® Optane™ Memory + 1x 8GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "960827", + "Ordering Code": "BOXNUC7I7BNHXG", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "960827": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i3BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 1x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "0", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i5BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ i5-7260U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, Windows® 10 x64 Home, includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 1x 4GB DDR4-2400", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "960845", + "Ordering Code": "BOXNUC7I5BNHXF", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "960845": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with Intel® Pentium® Processors", + "Code Name": "Products formerly Grass Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC5PGYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "TDP": "6 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Pentium® Processor N3700 (2M Cache, up to 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 2GB DDR3L SO-DIMM; 32GB eMMC on-board; Windows® 10, 64-bit Home pre-installed. Includes SDXC card slot", + "Included Memory": "2 GB", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA (HDB15); HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe X1 lane", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "22x30", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111HN", + "Integrated Wireless‡": "Intel® Wireless-AC 3165 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "946695", + "Ordering Code": "BOXNUC5PGYH0AJL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "943610": "PCN\n |\n MDDS", + "944435": "PCN\n |\n MDDS", + "946695": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3700", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "16", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943327", + "Spec Code": "SR2A7", + "Ordering Code": "FH8066501715923", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942599": "PCN\n |\n MDDS", + "943327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with Intel® Celeron® Processors", + "Code Name": "Products formerly Atlas Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Number": "NUC11ATBC2", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "10 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "19VDC", + "Pre-Installed Operating System": "Windows 11*", + "Processor Included": "Intel® Celeron® Processor N4505 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: 4GB DDR4 SO-DIMM; 64GB eMMC on-board; Windows® 11 Home in S Mode pre-installed.", + "Included Storage": "64GB eMMC", + "Included Memory": "1x 4GB DDR4 RAM", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2933 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DP++/HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "M.2 Card Slot (wireless)": "1", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front USB 3.2 Gen 1 and 2x rear USB 3.2 Gen 2; 2x USB 2.0", + "USB Revision": "3.2 Gen 2 / 3.2 Gen 1 / 2.0", + "Audio (back channel + front channel)": "1x 3.5mm stereo out jack, 1x 3.5mm microphone jack", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Chassis Dimensions": "135x115x36mm", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ANW3", + "Ordering Code": "BNUC11ATKC20RA6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99ANVP": "PCN", + "99ANVR": "PCN", + "99ANW0": "PCN", + "99ANW1": "PCN", + "99ANW2": "PCN", + "99ANW3": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98J", + "Spec Code": "SRKGW", + "Ordering Code": "DC8069704609809", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with Intel® Celeron® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Celeron® Processor J4025 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: 4GB DDR4 SO-DIMM; 64GB eMMC on-board; Windows® 10 Home in S Mode pre-installed. Includes SDXC card slot. Does not include 3.5mm audio or microphones", + "Included Storage": "64GB eMMC", + "Included Memory": "1x 4GB DDR4 RAM", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHT7", + "Ordering Code": "BOXNUC7CJYSAMN2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHT5": "PCN", + "99AHT6": "PCN", + "99AHT7": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4025", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984796", + "Spec Code": "SRET3", + "Ordering Code": "FH8068003067428", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Mini PC with Intel® Celeron® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Celeron® J4005 Processor (4M Cache, up to 2.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: 4GB DDR4 SO-DIMM; 64GB eMMC on-board; Windows® 10 Home in S Mode pre-installed. Includes SDXC card slot. Does not include 3.5mm audio or microphones", + "Included Storage": "32GB eMMC", + "Included Memory": "1x 4GB DDR4 RAM", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "# of Displays Supported ‡": "2", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961291", + "Ordering Code": "BOXNUC7CJYSAL5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961286": "PCN\n |\n MDDS", + "961287": "PCN\n |\n MDDS", + "961288": "PCN\n |\n MDDS", + "961289": "PCN\n |\n MDDS", + "961290": "PCN\n |\n MDDS", + "961291": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961644", + "Spec Code": "SR3S5", + "Ordering Code": "FH8068003067416", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6157U", + "Status": "Discontinued", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951298", + "Spec Code": "SR2XA", + "Ordering Code": "FJ8066202498907", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951298": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6167U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946152", + "Spec Code": "SR2JF", + "Ordering Code": "FJ8066202498901", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6267U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946160", + "Spec Code": "SR2JK", + "Ordering Code": "FJ8066202499002", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6287U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946159", + "Spec Code": "SR2JJ", + "Ordering Code": "FJ8066202499001", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6567U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946157", + "Spec Code": "SR2JH", + "Ordering Code": "FJ8066202499000", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946157": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6660U", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946161", + "Spec Code": "SR2JL", + "Ordering Code": "FJ8066202499207", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6260U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946143", + "Spec Code": "SR2JC", + "Ordering Code": "FJ8066202496511", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6360U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946162", + "Spec Code": "SR2JM", + "Ordering Code": "FJ8066202499208", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6560U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6650U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946722", + "Spec Code": "SR2KA", + "Ordering Code": "FJ8066202499212", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946722": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5157U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939674", + "Spec Code": "SR26M", + "Ordering Code": "FH8065802064212", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939674": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5257U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939672", + "Spec Code": "SR26K", + "Ordering Code": "FH8065802064111", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939672": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5287U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939670", + "Spec Code": "SR26H", + "Ordering Code": "FH8065802064011", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939670": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5557U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939662", + "Spec Code": "SR26E", + "Ordering Code": "FH8065802063512", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939662": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4278U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936756", + "Spec Code": "SR1ZV", + "Ordering Code": "CL8064701954800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936756": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4308U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936754", + "Spec Code": "SR1ZU", + "Ordering Code": "CL8064701954700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936754": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4578U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936752", + "Spec Code": "SR1ZT", + "Ordering Code": "CL8064701954600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4158U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929309", + "Spec Code": "SR18B", + "Ordering Code": "CL8064701526902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929309": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4258U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929308", + "Spec Code": "SR18A", + "Ordering Code": "CL8064701481503", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929308": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4288U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929307", + "Spec Code": "SR189", + "Ordering Code": "CL8064701481403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929307": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4558U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929306", + "Spec Code": "SR188", + "Ordering Code": "CL8064701481303", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929306": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8279U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986441", + "Spec Code": "SREZ0", + "Ordering Code": "FH8068404166004", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986441": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8569U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986438", + "Spec Code": "SREYZ", + "Ordering Code": "FH8068404163006", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986438": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8109U", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975758", + "Spec Code": "SRCUT", + "Ordering Code": "FH8068403419433", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8269U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974943", + "Spec Code": "SRCKA", + "Ordering Code": "FH8068403419614", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974943": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7167U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7267U", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7287U", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8257U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 645", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986446", + "Spec Code": "SREZ2", + "Ordering Code": "FH8068404163204", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986446": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8557U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 645", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986444", + "Spec Code": "SREZ1", + "Ordering Code": "FH8068404166107", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986444": "PCN" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7360U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954110", + "Spec Code": "SR365", + "Ordering Code": "FH8067703037109", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954110": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7560U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954111", + "Spec Code": "SR366", + "Ordering Code": "FH8067703037007", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954111": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7660U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954113", + "Spec Code": "SR368", + "Ordering Code": "FH8067703036924", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954113": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1038NG7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A53", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1344", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H22", + "Spec Code": "SRG0V", + "Ordering Code": "FJ8068904334702", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H22": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1068NG7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A53", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1344", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H21", + "Spec Code": "SRG0U", + "Ordering Code": "FJ8068904334602", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H21": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1000G4", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5C", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1030G4", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "700 MHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.00 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5C", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1030G7", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.10 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A51", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G4", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5A", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K3Z", + "Spec Code": "SRGKK", + "Ordering Code": "FJ8068904312303", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K3Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A52", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K3X", + "Spec Code": "SRGKJ", + "Ordering Code": "FJ8068904312203", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K3X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1060G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A51", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1065G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A52", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H1T", + "Spec Code": "SRG0N", + "Ordering Code": "FJ8068904310403", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H1T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wi-Fi 6E (Gig+) Series", + "Code Name": "Products formerly Garfield Peak", + "Status": "Launched", + "Launch Date": "Q4'21", + "Weight (in grams)": "2.8", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2 (Intel® Double Connect Technology)", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1625", + "Package Size": "22mm x 30mm x 2.4mm, 16mm x 25mm x 2.0mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99AAKX", + "Ordering Code": "AX411.E2WG.NV", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "99A5HT": "PCN", + "99A6JC": "PCN", + "99AAKX": "PCN" + }, + { + "Product Collection": "Intel® Wi-Fi 6E (Gig+) Series", + "Code Name": "Products formerly Garfield Peak", + "Status": "Launched", + "Launch Date": "Q3'21", + "Weight (in grams)": "2.83", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999M68", + "Ordering Code": "AX211.D2WG.LNV", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "999M0W": "PCN\n |\n MDDS", + "999M5J": "PCN\n |\n MDDS", + "999M5N": "PCN\n |\n MDDS", + "999M5T": "PCN\n |\n MDDS", + "999M5V": "PCN\n |\n MDDS", + "999M68": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wi-Fi 6E (Gig+) Series", + "Code Name": "Products formerly Typhoon Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "2.8", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99ARN7", + "Ordering Code": "AX210.NGWGII", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "999LWX": "PCN\n |\n MDDS", + "999M85": "PCN\n |\n MDDS", + "999M9X": "PCN\n |\n MDDS", + "999MA0": "PCN\n |\n MDDS", + "99ARN4": "PCN", + "99ARN5": "PCN", + "99ARN6": "PCN", + "99ARN7": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter I710", + "Status": "Launched", + "Launch Date": "Q2'22", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "Low profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710-TM4", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "99AW5R", + "Ordering Code": "I710T4L", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter I710", + "Status": "Launched", + "Launch Date": "Q2'22", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710-TM4", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "99AW5M", + "Ordering Code": "I710T4LOCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter XXV710", + "Code Name": "Products formerly Edgewater Channel", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper, Fiber", + "Cabling Type": "SFP28 Direct Attach twinaxial cabling up to 5m / SFP28 SR & LR Optics also supported", + "Bracket Height": "Low Profile and Full Height", + "Ethernet Controller": "Intel® Ethernet Controller XL710-BM2", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "Controller": "Intel® Ethernet Controller XL710-BM2", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Board Form Factor": "PCIe", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "RoCEv2/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter XXV710", + "Status": "Launched", + "Launch Date": "Q4'17", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 Direct Attach twinaxial cabling up to 5m / SFP28 SR Optics also supported (extended temp ONLY)", + "Bracket Height": "OCP form factor (Mezz 2.0 Type 1 and Type 2 Design Spec)", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Board Form Factor": "OCP", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "949032", + "Ordering Code": "XXV710DA2OCP", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "959797": "PCN\n |\n MDDS", + "962202": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter XXV710", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 Direct Attach twinaxial cabling up to 5m / SFP28 SR and LR Optics also supported", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter XXV710", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP28 Direct Attach twinaxial cabling up to 5m / SFP28 SR Optics also supported", + "Bracket Height": "OCP form factor (Mezz 2.0 Type 1 Design Spec)", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Board Form Factor": "OCP", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter XXV710", + "Status": "Launched", + "Launch Date": "Q1'17", + "Vertical Segment": "Server", + "Cable Medium": "Copper, Fiber", + "Cabling Type": "SFP28 Direct Attach twinaxial cabling up to 5m / SFP28 SR & LR Optics also supported", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "RoCEv2/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "948651", + "Ordering Code": "XXV710DA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "948651": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter XL710", + "Status": "Discontinued", + "Launch Date": "Q3'16", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "QSFP+ Direct Attach Copper Cable (Twinaxial)(1-7m) / 40GBASE-SR4 Optics also supported (Purchase Intel branded optics separately)", + "Bracket Height": "OCP form factor (Mezz 2.0 Design Spec)", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "40/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s x8 lanes", + "Controller": "Intel® Ethernet Controller XL710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "942748", + "Ordering Code": "XL710QDA1OCP", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "942748": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter XL710", + "Status": "Launched", + "Launch Date": "Q3'16", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "QSFP+ Direct Attach Copper Cable (Twinaxial)(1-7m) / 40GBASE-SR4 Optics also supported (Purchase Intel branded optics separately)", + "Bracket Height": "OCP form factor (Mezz 2.0 Design Spec)", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "40/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s x8 lanes", + "Controller": "Intel® Ethernet Controller XL710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "942752", + "Ordering Code": "XL710QDA2OCP", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "942752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter XL710", + "Code Name": "Products formerly Fortville", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "QSFP+ Direct Attach Twinaxial Cabling up to 10m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "40/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "Controller": "Intel® Ethernet Controller XL710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter XL710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "QSFP+ Direct Attach Cabling up to 10m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "40/10GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller XL710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "932586", + "Ordering Code": "XL710QDA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "932586": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10GbE/5GbE/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710-TM4", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "9999ML", + "Ordering Code": "X710T4LOCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "9999ML": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q2'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/5Gbe/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0GT/s x 8 Lane", + "Controller": "Intel(R) Ethernet Controller X710-AT2", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "9999MJ", + "Ordering Code": "X710T2LOCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "9999MJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10GbE/5GbE/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710-TM4", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "984719", + "Ordering Code": "X710T4L", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "984719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q4'19", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attach Copper 10GBASE-SR and 10GBASE-LR Physical Media", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0GT/s x8 lanes", + "Controller": "Intel(R) Ethernet Controller X710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "RoCEv2/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "979095", + "Ordering Code": "X710DA2OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "979095": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q4'19", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attach Copper 10GBASE-SR and 10GBASE-LR Physical Media", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0GT/s x8 lanes", + "Controller": "Intel(R) Ethernet Controller X710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "979098", + "Ordering Code": "X710DA4OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "979098": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q3'19", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6, Category 6A, Category 5e up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/5GbE/2.5GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710-AT2", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "984697", + "Ordering Code": "X710T2L", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "984697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q2'17", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attach Copper10GBASE-SR and 10GBASE-LR Physical Media", + "Bracket Height": "OCP 2.0", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "Controller": "Intel® Ethernet Controller X710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "963638", + "Ordering Code": "X710DA2OCP1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "954745": "PCN\n |\n MDDS", + "963638": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Status": "Launched", + "Launch Date": "Q4'16", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 6 up to 55m; Category 6A up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10GbE/1GbE/100Mb", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller XL710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "943052", + "Ordering Code": "X710T4", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "943052": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attached Twinaxial Cabling up to 10m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x8 lanes", + "Controller": "Intel® Ethernet Controller X710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "933206", + "Ordering Code": "X710DA2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "933206": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter X710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "SFP+ Direct Attached Twin Axial Cabling up to 10m", + "Bracket Height": "Full Height", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10/1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "8.0 GT/s, x 8 Lane", + "Controller": "Intel® Ethernet Controller X710", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI NFS", + "MM#": "932575", + "Ordering Code": "X710DA4FH", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "932575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Thunder Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "143.5", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "OS Independent", + "Warranty Period": "3 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160 MHz)", + "Max Speed": "1.73 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "Yes", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "System Interface Type": "Wi-Fi(PCIe),BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99AC9M", + "Ordering Code": "9260.NGWGIE.NVK", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "99AC9M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Thunder Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "143.5", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Supported Operating Systems": "OS Independent", + "Warranty Period": "3 yrs", + "Antenna": "2x2", + "Use Conditions": "Industrial Extended Temp", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160 MHz)", + "Max Speed": "1.73 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "Yes", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "System Interface Type": "Wi-Fi(PCIe),BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99A6NZ", + "Ordering Code": "9260.NGWGII.NVK", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "99A6NZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Jefferson Peak", + "Status": "Launched", + "Launch Date": "Q4'17", + "Weight (in grams)": "2.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "1x1", + "Product Brief": "View now", + "TX/RX Streams": "1x1 (Diversity)", + "Bands": "2.4, 5 GHz", + "Max Speed": "433 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.57mm", + "System Interface Type": "M.2: CNVio", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "958856", + "Ordering Code": "9462.NGWG.NV", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "958854": "PCN", + "958856": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Jefferson Peak", + "Status": "Launched", + "Launch Date": "Q4'17", + "Weight (in grams)": "2.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "1x1", + "Product Brief": "View now", + "TX/RX Streams": "1x1", + "Bands": "2.4, 5 GHz", + "Max Speed": "433 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.57mm", + "System Interface Type": "M.2: CNVio", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "958855", + "Ordering Code": "9461.NGWG.NV", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "958853": "PCN\n |\n MDDS", + "958855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Jefferson Peak", + "Status": "Launched", + "Launch Date": "Q4'17", + "Weight (in grams)": "2.8", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160 MHz)", + "Max Speed": "1.73 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.57mm", + "System Interface Type": "M.2: CNVio", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "959992", + "Ordering Code": "9560.D2WG.NVR", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "957714": "PCN\n |\n MDDS", + "957715": "PCN\n |\n MDDS", + "958857": "PCN\n |\n MDDS", + "958858": "PCN\n |\n MDDS", + "959531": "PCN\n |\n MDDS", + "959992": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 9000 Series", + "Code Name": "Products formerly Thunder Peak", + "Status": "Launched", + "Launch Date": "Q4'17", + "Weight (in grams)": "2.9", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160 MHz)", + "Max Speed": "1.73 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.1", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.57mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "999RK9", + "Ordering Code": "9260.NGWGII.NV", + "Spec Code": "S", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "957712": "PCN\n |\n MDDS", + "958867": "PCN\n |\n MDDS", + "999LV6": "PCN\n |\n MDDS", + "999LV7": "PCN\n |\n MDDS", + "999RK8": "PCN\n |\n MDDS", + "999RK9": "PCN\n |\n MDDS", + "984180": "PCN\n |\n MDDS", + "984181": "PCN\n |\n MDDS", + "999CKL": "MDDS" + }, + { + "Product Collection": "Intel® Wireless 8000 Series", + "Code Name": "Products formerly Windstorm Peak", + "Status": "Launched", + "Launch Date": "Q3'17", + "Weight (in grams)": "143.5", + "Operating Temperature Range": "80°C to 0°C", + "Operating Temperature (Maximum)": "0 °C", + "Operating Temperature (Minimum)": "80 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "Package Size": "145 mm x 205 mm x 26 mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "958156", + "Ordering Code": "8265.NGWMG.DTX1", + "ECCN": "5A992CN3", + "CCATS": "G151050", + "US HTS": "8517620090", + "958156": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 8000 Series", + "Status": "Launched", + "Launch Date": "Q1'16", + "Weight (in grams)": "2.6", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.8mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "951075", + "Ordering Code": "8265.NGWMG.S", + "ECCN": "5A992CN3", + "CCATS": "G151050", + "US HTS": "8517620090", + "946657": "PCN\n |\n MDDS", + "946658": "PCN\n |\n MDDS", + "949399": "PCN\n |\n MDDS", + "951075": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 8000 Series", + "Code Name": "Products formerly Snowfield Peak", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.8mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Stone Peak", + "Status": "Launched", + "Launch Date": "Q3'14", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.8mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "942434", + "Ordering Code": "7265.NGWGU.BR", + "ECCN": "5A992C", + "CCATS": "G147045", + "US HTS": "8517620090", + "934449": "PCN\n |\n MDDS", + "934460": "PCN\n |\n MDDS", + "934470": "PCN\n |\n MDDS", + "939155": "PCN\n |\n MDDS", + "939160": "PCN\n |\n MDDS", + "939403": "PCN\n |\n MDDS", + "942434": "PCN\n |\n MDDS", + "944401": "PCN\n |\n MDDS", + "944431": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Stone Peak", + "Status": "Launched", + "Launch Date": "Q3'14", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz, 5 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11agn", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.8mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Stone Peak", + "Status": "Launched", + "Launch Date": "Q3'14", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11bgn", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "Package Size": "22mm x 30mm x 2.4mm", + "System Interface Type": "WiFi(PCIe), BT(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Wilkins Peak", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Weight (in grams)": "4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz, 5 GHz", + "Max Speed": "300/867 Mbps", + "Wi-Fi CERTIFIED*": "802.11ac", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "HMC and M.2 2230", + "Package Size": "See Product Brief", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "923252", + "Ordering Code": "7260.HMWG", + "ECCN": "5A992C", + "CCATS": "G141484", + "US HTS": "8517620090", + "923252": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Weight (in grams)": "40.68", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 8*, Windows 7*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4Ghz, 5Ghz", + "Max Speed": "867 Mbps", + "Wi-Fi CERTIFIED*": "802.11ac", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Package Size": "See Product Brief", + "System Interface Type": "PCle x1", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Wilkins Peak", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz, 5 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11agn", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half Mini Card/ M.2 (NGFF)", + "Package Size": "See Product Brief", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® Wireless 7200 Series", + "Code Name": "Products formerly Wilkins Peak", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Weight (in grams)": "3.7", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4 GHz", + "Max Speed": "300 Mbps", + "Wi-Fi CERTIFIED*": "802.11bgn", + "Compliance": "PCI, CISP, FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "PCIe Half Mini Card/ M.2", + "Package Size": "See Product Brief", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Wireless 3100 Series", + "Status": "Launched", + "Launch Date": "Q1'16", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "1x1", + "TX/RX Streams": "1x1", + "Bands": "2.4, 5 GHz", + "Max Speed": "433 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "Package Size": "22 mm x 30 mm x 2.4 mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "944885", + "Ordering Code": "3168.NGWG.S", + "ECCN": "5A992CN3", + "CCATS": "G147045", + "US HTS": "8517620090", + "944884": "PCN\n |\n MDDS", + "944885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 3100 Series", + "Code Name": "Products formerly Stone Peak", + "Status": "Launched", + "Launch Date": "Q3'14", + "Weight (in grams)": "2.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "1x1", + "TX/RX Streams": "1X1", + "Bands": "2.4, 5 GHz", + "Max Speed": "433 Mbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 5 (802.11ac)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, 1216", + "Package Size": "22mm x 30mm x 2.4mm", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "944397", + "Ordering Code": "3165.D2WG.S", + "ECCN": "5A992C", + "CCATS": "G147045", + "US HTS": "8517620090", + "940106": "PCN\n |\n MDDS", + "940107": "PCN\n |\n MDDS", + "944381": "PCN\n |\n MDDS", + "944382": "PCN\n |\n MDDS", + "944397": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wireless 3100 Series", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Weight (in grams)": "3.4", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Linux*", + "Antenna": "1x1", + "TX/RX Streams": "1x1", + "Bands": "2.4GHz, 5GHz", + "Max Speed": "433 Mbps", + "Wi-Fi CERTIFIED*": "802.11ac", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "4.0", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "HMC/M.2", + "Package Size": "See product brief", + "System Interface Type": "PCIe, USB", + "MU-MIMO": "No", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® Server Chassis FC2000 Family", + "Code Name": "Products formerly Optimus Beach", + "Launch Date": "Q2'21", + "Status": "Launched", + "Expected Discontinuance": "2025", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Front IO, 4 node Rack", + "Chassis Dimensions": "16.93\" x 36.61\" x 3.44\"", + "Target Market": "High Performance Computing", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "3", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Description": "Air Cooled 2U flexible multi node chassis with front IO, capable of supporting one 2U full-width Accelerator Module and 3x hot-swap CRPS 1600W (Titanium) PSUs.", + "Max CPU Configuration": "2", + "MM#": "99A0RR", + "Ordering Code": "FC2FAC16W3", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "99A0RR": "MDDS" + }, + { + "Product Collection": "Intel® Server Chassis FC2000 Family", + "Code Name": "Products formerly Optimus Beach", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Front IO, 4 node Rack", + "Chassis Dimensions": "16.93\" x 36.61\" x 3.44\"", + "Target Market": "High Performance Computing", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "3", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Description": "Air Cooled 2U flexible multi node chassis with front IO, capable of supporting either two, three, or four independent warm-swap compute nodes and 3x hot-swap CRPS 2100W (Platinum) or 1600W (Titanium) PSUs.", + "Max CPU Configuration": "8", + "MM#": "999D40", + "Ordering Code": "FC2HAC16W3", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473305100", + "999D40": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis FC2000 Family", + "Code Name": "Products formerly Optimus Beach", + "Launch Date": "Q4'20", + "Status": "Launched", + "Expected Discontinuance": "2023", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Front IO, 4 node Rack", + "Chassis Dimensions": "16.93\" x 36.61\" x 3.44\"", + "Target Market": "High Performance Computing", + "Power Supply": "2100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Description": "Air Cooled 2U chassis for support only  (2) S9232WK2HAC compute nodes with 32 cores processor. Front IO, capable of supporting two independent warm-swap compute nodes and 2x hot-swap CRPS 2100W (Platinum) PSUs.", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis FC2000 Family", + "Code Name": "Products formerly Optimus Beach", + "Launch Date": "Q1'20", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Front IO, 4 node Rack", + "Chassis Dimensions": "16.93\" x 36.61\" x 3.44\"", + "Target Market": "High Performance Computing", + "Power Supply": "2100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "3", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Description": "Air Cooled 2U flexible multi node chassis with front IO, capable of supporting either two, three, or four independent warm-swap compute nodes and 3x hot-swap CRPS 2100W (Platinum) PSUs.", + "Max CPU Configuration": "8", + "MM#": "999MVK", + "Ordering Code": "FC2HAC21W3", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "999MVK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis FC2000 Family", + "Code Name": "Products formerly Optimus Beach", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U Front IO, 4 node Rack", + "Chassis Dimensions": "16.93\" x 36.61\" x 3.44\"", + "Target Market": "High Performance Computing", + "Power Supply": "2100 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "3", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Yes", + "Description": "Liquid Cooled 2U flexible multi node chassis with front IO, capable of supporting either two, three, or four independent warm-swap compute nodes and 3x hot-swap CRPS 2100W (Platinum) or 1600W (Titanium) PSUs.", + "Max CPU Configuration": "8", + "MM#": "999D3Z", + "Ordering Code": "FC2HLC21W3", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473305100", + "999D3Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Bobcat Peak", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24\" x 28.86\" x 3.42\"", + "Target Market": "High Performance Computing", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW16X25HS12G); (16) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (2) 2130W common redundant power supply (Platinum Efficiency) (FXX2130PCRPS); (2) power distribution board (FXXCRPSPDB2); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable Intel® Compute Module HNS7200AP/HNS2600TPR/HNS2600KPR product family, up to 16 2.5 inch hot-swap drives and two 2130W common redundant power supplies", + "# of Front Drives Supported": "16", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "8", + "MM#": "945577", + "Ordering Code": "H2216XXLR2SPP", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Bobcat Peak", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24\" x 30.35\" x 3.42\"", + "Target Market": "High Performance Computing", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW12X35HS12G); (12) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (2) 2130W common redundant power supply (Platinum Efficiency) (FXX2130PCRPS); (2) power distribution board (FXXCRPSPDB2); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable compute modules Intel(r) Compute Module HNS7200AP/HNS2600TPR/HNS2600KPR product family, up to 12 hot-swap drives, and two 2130W common redundant power supplies", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Kennedy Pass", + "Launch Date": "Q2'16", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24'' x 28.86'' x 3.42''", + "Target Market": "Cloud/Datacenter", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW24X25HS12G); (24) 2.5 inch hot-swap drive carriers (FXX25HSCAR2); (2) 2130W common redundant power supply (Platinum Efficiency) (FXX2130PCRPS); (1) power distribution board (FXXCRPSPDB2); (1) power interposer board (FXXCRPSPIB); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable Intel® Compute Module HNS2600TP24R or HNS2600TP24SR up to 24 2.5 inch hot-swap drives and two 2130W common redundant power supplies", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Kennedy Pass", + "Launch Date": "Q4'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24'' x 28.86'' x 3.42''", + "Target Market": "Cloud/Datacenter", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW24X25HS12G); (24) 2.5 inch hot-swap drive carriers (FXX25HSCAR2); (2) 1600W common redundant power supply (Platinum Efficiency) (FXX1600PCRPS); (1) power distribution board (FXXCRPSPDB2); (1) power interposer board (FXXCRPSPIB); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable Intel® Compute Module HNS2600TP24R or HNS2600TP24SR up to 24 2.5 inch hot-swap drives and two 1600W common redundant power supplies", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Bobcat Peak", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24'' x 28.86'' x 3.42''", + "Target Market": "High Performance Computing", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW16X25HS12G); (16) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (2) 1600W common redundant power supply (Platinum Efficiency) (FXX1600PCRPS); (2) power distribution board (FXXCRPSPDB2); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable Intel® Compute Module HNS2600KPR or HNS2600TPR product families, up to 16 2.5 inch hot-swap drives and two 1600W common redundant power supplies", + "# of Front Drives Supported": "16", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis H2000G Family", + "Code Name": "Products formerly Bobcat Peak", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "17.24\" x 30.35\" x 3.42\"", + "Target Market": "High Performance Computing", + "Power Supply": "1600 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) standard control panel (FH2000FPANEL2); (1) 12Gb SAS backplane (FHW12X35HS12G); (12) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (2) 1600W common redundant power supply (Platinum Efficiency) (FXX1600PCRPS); (2) power distribution board (FXXCRPSPDB2); (4) node fillers; (1) Enhanced Value RAIL (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable compute modules Intel® Compute Module HNS2600KPR or HNS2600TPR product families, up to 12 hot-swap drives, and two 1600W common redundant power supplies", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Max CPU Configuration": "8" + }, + { + "Product Collection": "Intel® Server Chassis H2000P Family", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "3.46\" x 17.24\" x 30.35\"", + "Target Market": "High Performance Computing", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Front Control Panels - iPC FH2000FPANEL2(1) Power Distribution Board - iPC FXXCRPSPDB2(2) 2130W 80 Plus Platinum PSUs – iPC FXX2130PCRPS(1) 12 x 3.5’’ Hot-swap drive bay, includes:- (12) Tool less drive carriers, iPC - TBD- (1) 12x3.5” Hot swap backplane, iPC- FHW12X35HS12G(4) - Compute Module Bay Fillers(1) - Basic rack rail mount kit (AXXELVRAIL)NOTE: The rail kit only supports specific rack type with 3/8” square and 7.1mm round holes.", + "Description": "2U rack chassis supporting up to four hot-pluggable compute modules Intel(r) Compute Module HNS2600BP product family, up to 12 hot-swap drives, and two 2130W common redundant power supplies", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Max CPU Configuration": "8", + "MM#": "954487", + "Ordering Code": "H2312XXLR3", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "954487": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis H2000P Family", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Chassis Dimensions": "3.46\" x 17.24\" x 28.86\"", + "Target Market": "High Performance Computing", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "TDP": "140 W", + "Included Items": "(1) Front Control Panels - iPC FH2000FPANEL2 (1) Power Distribution Board - iPC FXXCRPSPDB2 Power Interposer Board - iPC FXXCRPSPIB (2) 2130W 80 Plus Platinum PSUs – iPC FXX2130PCRPS(1) 24 x 2.5’’ Hot-swap drive bay, includes:- (24) Tool less drive carriers (1) 24x2.5” Hot swap backplane, iPC- HW24X25HS12G (4) - Compute Module Bay Fillers(1) - Basic rack rail mount kit (AXXELVRAIL)NOTE: The rail kit only supports specific rack type with 3/8” square and 7.1mm round holes.", + "Description": "2U rack chassis supporting up to four hot-pluggable compute modules Intel(r) Compute Module HNS2600BP*24 product family, up to 24 hot-swap drives, and two 2130W common redundant power supplies", + "# of Front Drives Supported": "24", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "8", + "MM#": "948907", + "Ordering Code": "H2224XXLR3", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8473305100", + "948907": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis H2000P Family", + "Code Name": "Products formerly Buchanan Pass", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, 4 node Rack Chassis", + "Target Market": "High Performance Computing", + "Power Supply": "2130 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "1) 2U H2000G Chassis, includes: (1) Front panel - iPC FH2000FPANEL2 (1) Power Distribution Board - iPC FXXCRPSPDB2 (2) 2130W 80 Plus Platinum PSUs – iPC FXX2130PCRPS (1) 12 x 3.5’’ Hot-swap HDDs cage, includes: - (4) Tool less carriers, iPC - FXX35HSCAR2 - (1) Backplane, iPC - FHW04X35HSBP (4) - Blank Compute Module Slot Fillers (1) - Basic rack rail (AXXELVRAIL)", + "Description": "2U rack chassis supporting up to four hot-pluggable compute modules Intel(r) Compute Module HNS2600BP product family, up to 4 hot-swap drives, and two 2130W common redundant power supplies", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Rear Drives Supported": "0", + "MM#": "957322", + "Ordering Code": "H2204XXLRE", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "957322": "PCN" + }, + { + "Product Collection": "Intel® Server Chassis P4000G Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q4'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'18", + "EOL Announce": "Tuesday, March 27, 2018", + "Last Order": "Sunday, July 1, 2018", + "Last Receipt Attributes": "Monday, October 1, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Rack or Pedestal", + "Chassis Dimensions": "17.24\" x 24.9\" x 6.81\"", + "Target Market": "Embedded", + "Power Supply": "550 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "Sold Separately", + "Included Items": "(1) standard control panel (FXXFPANEL); (2) Fixed120mm system fans (FUPNHFANCPU); (1) 550W fixed power supply (FUP550SNRPS); (1) MiniSAS HD to 4 ports SATA 7 pins cable (AXXCBL450HD7S); (4) fixed 3.5 inch drive sleds (FUP4X35NHDK); (4) fixed power connectors; (1) processor/memory airduct (A4UCWDUCT); (1) fixed bezel (FUPBEZELFIX2)", + "Description": "4U pedestal chassis designed specifically for the Intel® Server Board S2600CW family supporting up to four 3.5 inch fixed drives.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "936416", + "Ordering Code": "P4304XXMFEN2", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473305100", + "936416": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000G Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q4'14", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Rack or Pedestal", + "Chassis Dimensions": "17.24\" x 24.9\" x 6.81\"", + "Target Market": "Embedded", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Sold Separately", + "Included Items": "(1) standard control panel (FXXFPANEL); (5) Redundant and hot-swap 80mm system fans (FUPMLHSFAN); (4) fixed 3.5 inch drive sleds (FUP4X35NHDK); (4) fixed power connectors; (1) 4-port fan-out SATA cable;(1) power supply cage (FUPCRPSCAGE); (1) power distribution board (FUPPDBHC2); (1) processor/memory airduct (A4UCWDUCT); (1) hot-swap bezel with lock (FUPBEZELHSD2); (1) MiniSAS HD to 4 ports SATA 7 pins cable (AXXCBL450HD7S)", + "Description": "4U pedestal chassis designed specifically for the Intel® Server Board S2600CW with default of four 3.5\" fixed drives support, and optional 3.5\" or 2.5\" Hot Swap drives support. Power supply options sold separately and include redundant 750W and 1600W.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "937011", + "Ordering Code": "P4304XXMUXX", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473305100", + "937011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q4'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small Business/1st Server", + "Power Supply": "460 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Sold Separately", + "Included Items": "(1) Front Panel assembly with cables, (2) 460W Power Supply Modules, (1) System rear fan assembly, (1) System PCIe zone fan assembly, (4) fixed mount drive trays, (2) ODD Slide Rail Assemblies, (1) 200mm chassis intrusion switch cable, (2) 150mm dual SATA Drive power cable, (1) SATA cable for onboard M.2 connector (42mm), (1) USB 3.0 cable", + "Description": "Supporting S1200SP board family, with 3.5 inch fixed drives, redundant power supplies, optimized for thermal and acoustic performance. Note: FUPSESK kit is required to enable front panel USB ports when using with S1200SPS or S1200SPSR boards", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 3.5\" HDD or 2.5\" SSD" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'13", + "EOL Announce": "Sunday, March 31, 2013", + "Last Order": "Monday, September 30, 2013", + "Last Receipt Attributes": "Friday, January 31, 2014", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small Business/1st Server", + "Power Supply": "460 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Not Supported", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "NULL", + "Included Items": "(1) Intel® Server Chassis P4304XXSFDN- Pedestal form factor (6.81\" x 17.24\" x 21.5\") (4) 3.5\" Fixed Drive Carriers, (1) 460W Common Redundant Power Supply (Gold Efficiency), (2) 92mm fixed fans. Airduct sold separately.", + "Description": "A low cost general purpose pedestal chassis supporting 3.5\" fixed HDDs, with a redundant-capable power supply, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "916303", + "Ordering Code": "P4304XXSFDN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916303": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'13", + "EOL Announce": "Sunday, March 31, 2013", + "Last Order": "Monday, September 30, 2013", + "Last Receipt Attributes": "Friday, January 31, 2014", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "460 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "Not Supported", + "Redundant Power Supported": "Supported, requires additional power supply", + "Included Items": "(1) Intel® Server Chassis P4304XXSFDR- Pedestal form factor (6.81\" x 17.24\" x 21.5\") (4) 3.5\" Fixed Drive Carriers, (2) 460W Common Redundant Power Supply (Gold Efficiency), (2) 92mm fixed fans. Airduct sold separately.", + "Description": "A general purpose pedestal chassis supporting 3.5\" fixed HDDs, with redundant power supplies, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "916302", + "Ordering Code": "P4304XXSFDR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916302": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q2'15", + "EOL Announce": "Friday, April 17, 2015", + "Last Order": "Thursday, October 15, 2015", + "Last Receipt Attributes": "Monday, February 15, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "550 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "No", + "Included Items": "(1) Intel® Server Chassis P4304XXSFEN- Pedestal form factor (17.24\" x 21.5\" x 6.81\"), (4) 3.5\" Fixed drive carriers, (1) 550W Fixed power supply (Silver Efficiency), and (2) 92mm fixed fans. Airduct sold separately.", + "Description": "A low cost general purpose pedestal chassis supporting up to four 3.5\" fixed HDDs, with a fixed non-redundant power supply; optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "MM#": "916306", + "Ordering Code": "P4304XXSFEN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916306": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'13", + "EOL Announce": "Sunday, March 31, 2013", + "Last Order": "Monday, September 30, 2013", + "Last Receipt Attributes": "Friday, January 31, 2014", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "460 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Not Supported", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Chassis P4304XXSHDN- Pedestal form factor (6.81\" x 17.24\" x 21.5\") (4) 3.5\" Hot-Swap Drive Carriers, (1) 460W Common Redundant Power Supply (Gold Efficiency), (2) 92mm fixed fans. Airduct sold separately.", + "Description": "A general purpose pedestal chassis supporting 3.5\"HDDs, with a single redundant-capable power supply, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "916301", + "Ordering Code": "P4304XXSHDN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916301": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q2'17", + "EOL Announce": "Wednesday, December 21, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "460 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "2", + "Redundant Fans": "No", + "Redundant Power Supported": "Yes", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Chassis P4304XXSHDR- Pedestal form factor (17.24\" x 21.5\" x 6.81\"), (4) 3.5\" Hot-swap drive carriers, (2) 460W Common redundant power supply (Gold Efficiency), and (2) 92mm Fixed fans. Airduct sold separately.", + "Description": "A general purpose pedestal chassis supporting up to four 3.5\" HDDs, with redundant power supplies, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "MM#": "916171", + "Ordering Code": "P4304XXSHDR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'12", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'13", + "EOL Announce": "Sunday, March 31, 2013", + "Last Order": "Monday, September 30, 2013", + "Last Receipt Attributes": "Friday, January 31, 2014", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "550 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "Not Supported", + "Redundant Power Supported": "No", + "Backplanes": "Included", + "Included Items": "(1) Intel® Server Chassis P4304XXSHEN- Pedestal form factor (6.81\" x 17.24\" x 21.5\") (4) 3.5\" Hot-Swap Drive Carriers, (1) 550W Fixed Power Supply (Silver Efficiency), (2) 92mm fixed fans. Airduct sold separately.", + "Description": "A general purpose pedestal chassis supporting 3.5\"HDDs, with a fixed non-redundant power supply, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "916304", + "Ordering Code": "P4304XXSHEN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "916304": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Launch Date": "Q1'11", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'18", + "EOL Announce": "Tuesday, March 27, 2018", + "Last Order": "Sunday, July 1, 2018", + "Last Receipt Attributes": "Monday, October 1, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small and Medium Business", + "Power Supply": "365 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "Included", + "Included Items": "(1) System fan assembly, (1) Front Panel assembly with cables, (1) 365W Fixed Mount Power Supply, (1) System fan assembly, (4) 3.5 inch Hot swap drive carriers, (2) ODD Slide Rail Assemblies, (1) 450mm SATA data cable, (1) 600mm I2C data cable, (1) 450mm SGPIO data cable, (1) 200mm chassis intrusion switch cable", + "Description": "An entry-level general purpose pedestal chassis supporting four 3.5\" hot-swap HDDs, and a non-redundant power supply, optimized for thermal and acoustic performance.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "MM#": "911765", + "Ordering Code": "P4304XXSHCN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "907812": "PCN\n |\n MDDS", + "911765": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis P4000S Family", + "Code Name": "Products formerly Union Peak", + "Launch Date": "Q1'11", + "Status": "Discontinued", + "Expected Discontinuance": "Q1'18", + "EOL Announce": "Tuesday, March 27, 2018", + "Last Order": "Sunday, July 1, 2018", + "Last Receipt Attributes": "Monday, October 1, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "4U Pedestal", + "Chassis Dimensions": "17.24\" x 21.5\" x 6.81\"", + "Target Market": "Small Business/1st Server", + "Power Supply": "365 W", + "Power Supply Type": "AC", + "# of Power Supply Included": "1", + "Redundant Fans": "No", + "Redundant Power Supported": "No", + "Backplanes": "Included", + "Included Items": "(1) Front Panel assembly with cables, (1) 365W Fixed Mount Power, (1) System fan assembly, (4) fixed mount drive trays; (2) ODD Slide Rail Assemblies, (1) 200mm chassis intrusion switch cable, (2) 150mm dual SATA Drive power cable", + "Description": "An entry-level low cost general purpose pedestal chassis supporting up to four 3.5\" fixed HDDs with a 365W power supply ideal for first server and small business environments.", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "MM#": "911754", + "Ordering Code": "P4304XXSFCN", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473305100", + "907811": "PCN\n |\n MDDS", + "911754": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis R1000WF Family", + "Code Name": "Products formerly Buffalo Peak", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Target Market": "Cloud/Datacenter", + "# of Power Supply Included": "0", + "Included Items": "(1) 2.5” Hot-swap drive bays, includes (1) 12 Gb SAS backplane FR1208S3HSBP, & (8) 2.5” hot swap drive tool less carriers FXX25HSCAR2,(1) Pre-installed Standard Control Panel assembly, (1) Server board to backplane 150mm I2C cable, (1) 850mm MiniSAS HD cable AXXCBL850HDHRT, (1) 350mm Backplane power cable, (2) Chassis handles (1 set) installed A1UHANDLKIT, (1) Air duct, (6) Dual rotor system fans FR1UFAN10PW, (2) CPU heat sinks, 39 fin passive (2) CPU heat sink “No CPU” label inserts, (2) Standard CPU Carriers, (2) 1 slot PCIe x16 Riser Card, (8) DIMM slot blanks, (1) Chassis Stiffener Bar, (1) Power Supply Bay blank insert, (2) AC Power Cord retention strap assembly", + "Description": "1U server chassis designed for the Intel® Server Board S2600WF family, supporting eight 2.5 inch hot-swap drives. Power supply sold separately", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "2", + "MM#": "952621", + "Ordering Code": "R1208WFXXX", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100" + }, + { + "Product Collection": "Intel® Server Chassis R1000WF Family", + "Code Name": "Products formerly Buffalo Peak", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Target Market": "Cloud/Datacenter", + "# of Power Supply Included": "0", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) 3.5” Hot-swap drive bays, includes (1) 12 Gb SAS backplaneFR1304S3HSBP, & (4) 3.5” hot swap drive tool less carriers FXX35HSCAR2,(1) Pre-installed Standard Control Panel assembly, (1) Server board to backplane 150mm I2C cable, (1) 850mm MiniSAS HD cable AXXCBL850HDHRT, (1) 350mm Backplane power cable, (2) Chassis handles (1 set) installed A2UHANDLKIT3, (1) Air duct, (6) Dual rotor system fans FR1UFAN10PW, (2) CPU heat sinks, 39 fin passive (2) CPU heat sink “No CPU” label inserts, (2) Standard CPU Carriers, (2) 1 slot PCIe x16 Riser Card, (8) DIMM slot blanks, (1) Chassis Stiffener Bar, (1) Power Supply Bay blank insert, (2) AC Power Cord retention strap assembly", + "Description": "1U server chassis designed for the Intel® Server Board S2600WF family, supporting four 3.5 inch hot-swap drives. Power supply sold separately", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 3.5\" HDD or 2.5\" SSD", + "Max CPU Configuration": "2", + "MM#": "952622", + "Ordering Code": "R1304WFXXX", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "952622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Chassis R1000WT Family", + "Code Name": "Products formerly Buffalo Peak", + "Launch Date": "Q3'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Airduct; (1) standard control panel board (FXXFPANEL); (1) Front I/O Panel assembly (front 1x VGA and 2x USB in an ODD bay); (8) 2.5 inch hot-swap drive carriers (FXX25HSCAR); (1) 12Gb SAS backplane (F1U8X25X3HSBP); (1) Server board to backplane power cable; (2) processor heatsinks (FXXCA84X106HS); (2) riser card mounting brackets (riser cards sold separately); (1) power supply blank insert (power supply sold separately); (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "1U server chassis designed for the Intel® Server Board S2600WT family, supporting eight 2.5 inch hot-swap drives. Power supply, risers, and SAS cables sold separately", + "# of Front Drives Supported": "8", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "Max CPU Configuration": "2" + }, + { + "Product Collection": "Intel® Server Chassis R1000WT Family", + "Code Name": "Products formerly Buffalo Peak", + "Launch Date": "Q3'14", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Chassis Form Factor": "1U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 1.72\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Airduct; (1) standard control panel board (FXXFPANEL); (1) SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 3550mm optical drive power cable); (4) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (1) 12Gb SAS backplane (FR1304S3HSBP); (1) Server board to backplane power cable; (2) processor heatsinks (FXXCA84X106HS); (2) riser card mounting brackets (riser cards sold separately); (1) power supply blank insert (power supply sold separately); (6) Dual rotor system fans (FR1UFAN10PW)", + "Description": "1U server chassis designed for the Intel® Server Board S2600WT family, supporting four 3.5 inch hot-swap drives. Power supply, risers, and SAS cables sold separately", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Max CPU Configuration": "2" + }, + { + "Product Collection": "Intel® Server Chassis R2000WF Family", + "Code Name": "Products formerly Big Horn Peak", + "Launch Date": "Q4'18", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Standard control panel assembly (installed) (1) Front I/O Panel assembly (on rack handle - 2x USB 3.0) installed (2) Rack chassis handle (1 set) A2UHANDLKIT (1) Standard 2U Air duct (6) 60mm Hot swap system fan FR2UFAN60HSW (2) CPU heat sink (2) CPU heat sink “No CPU” label insert (2) Standard CPU Carrier (1) 3x RMFBU Mounting Bracket (16) DIMM slot blank (1) – 175mm I2C cable (1) 675/525mm HSBP Pwr Cable (1) Internal fixed mount 250mm SSD drive power cable (2) Riser Card mounting brackets supporting up to 3 riser cards (riser cards sold separately) (1) Power supply bay blank insert (Power Supplies sold separately (2) AC Power Cord retention strap assembly, (drive-bay options sold separately) (12) 3.5 inch hot-swap drive carriers (FXX35HSCAR) (1) 12Gb SAS backplane (F2U12X35S3PH)", + "Description": "2U server chassis designed for the Intel® Server Board S2600WF family supporting up to 12 3.5 inch hot-swap drives. Power supply, risers, and SAS cables sold separately", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Fixed 2.5\" or 3.5\"", + "Max CPU Configuration": "2", + "MM#": "952624", + "Ordering Code": "R2312WFXXX", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "952624": "PCN" + }, + { + "Product Collection": "Intel® Server Chassis R2000WF Family", + "Code Name": "Products formerly Big Horn Peak", + "Launch Date": "Q3'17", + "Status": "Launched", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Sold Separately", + "Included Items": "(1) Standard control panel assembly (installed) (1) Front I/O Panel assembly (VGA+2x USB 3.0) installed (2) Rack chassis handle (1 set) A2UHANDLKIT (1) Standard 2U Air duct (6) 60mm Hot swap system fan FR2UFAN60HSW (2) CPU heat sink (2) CPU heat sink “No CPU” label insert (2) Standard CPU Carrier (1) 3x RMFBU Mounting Bracket (16) DIMM slot blank (1) 175mm I2C cable (1) 250mm I2C cable (1) 400/525/600mm HSBP Pwr Cable (1) Internal fixed mount 250mm SSD drive power cable (2) Riser Card mounting brackets supporting up to 3 riser cards (riser cards sold separately) (1) Power supply bay blank insert (Power Supplies sold separately (2) AC Power Cord retention strap assembly, (drive-bay options sold separately)", + "Description": "2U server chassis designed for the Intel® Server Board S2600WF family. Drive cages with backplane and carriers, risers, SAS cables and power supply are sold separately", + "Max CPU Configuration": "2", + "MM#": "952623", + "Ordering Code": "R2000WFXXX", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100", + "952623": "PCN\n |\n MDDS", + "975897": "PCN" + }, + { + "Product Collection": "Intel® Server Chassis R2000WT Family", + "Code Name": "Products formerly Big Horn Peak", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Airduct; (1) standard control panel board (FXXFPANEL); (1) front I/O panel assembly (front 1xVGA and 2x USB); (1) SATA Optical drive bay with filler panel (Include: optical drive mounting latch kit and 3550mm optical drive power cable); (1) power cable to the backplane; (1) I2C cable - server board to backplane (backplane sold separately); (1) ODD/ fixed SSDs power cable; (2) processor heatsinks (FXXCA84X106HS); (2) Riser Card mouting brackets supporting up to 3 riser cards (riser cards sold separately); (1) power supply blank insert (power supply sold separately); (6) Hot swap system fans (FR2UFAN60HSW); (1) Internal fixed mount SSD / optical drive power cable; (1) battery backup unit bracket with three mounting locations over the airduct", + "Description": "2U server chassis designed for the Intel® Server Board S2600WT family. Drive cages with backplane and carriers, risers, SAS cables and power supply are sold separately", + "Additional Information": "View now", + "Max CPU Configuration": "2" + }, + { + "Product Collection": "Intel® Server Chassis R2000WT Family", + "Code Name": "Products formerly Big Horn Peak", + "Launch Date": "Q1'15", + "Status": "Discontinued", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Chassis Form Factor": "2U, Spread Core Rack", + "Chassis Dimensions": "16.93\" x 27.95\" x 3.44\"", + "Target Market": "Cloud/Datacenter", + "Redundant Fans": "Yes", + "Redundant Power Supported": "Supported, requires additional power supply", + "Backplanes": "Included", + "Included Items": "(1) Airduct; (1) standard control panel board (FXXFPANEL); (1) front I/O panel assembly (front 1xVGA and 2x USB); (12) 3.5 inch hot-swap drive carriers (FXX35HSCAR); (1) 12Gb SAS backplane (F2U12X35S3HSBP); (1) I2C cable for backplane; (1) power cable to the backplane; (1) ODD/fixed SSDs power cable; (2) processor heatsinks (FXXCA84X106HS); (2) Riser Card mouting brackets supporting up to 3 riser cards (riser cards sold separately); (6) Hot swap system fans (FR2UFAN60HSW); (1) set chassis handles with Integrated control panel & USB Port (A2UHANDLKIT)", + "Description": "2U server chassis designed for the Intel® Server Board S2600WT family supporting up to 12 3.5 inch hot-swap drives. Power supply, risers, and SAS cables sold separately", + "Additional Information": "View now", + "# of Front Drives Supported": "12", + "Front Drive Form Factor": "Hot-swap 2.5\" or 3.5\"", + "Max CPU Configuration": "2" + }, + { + "Product Collection": "Intel® Wi-Fi 6 Series", + "Code Name": "Products formerly Cyclone Peak", + "Status": "Launched", + "Launch Date": "Q1'20", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Warranty Period": "3 yrs", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6 (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999VGD", + "Ordering Code": "AX200.NGWG.DTK", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "999VGD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wi-Fi 6 Series", + "Code Name": "Products formerly Harrison Peak", + "Status": "Launched", + "Launch Date": "Q2'19", + "Weight (in grams)": "2.33", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6 (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999TDR", + "Ordering Code": "AX201.D2WG.LNVW", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "985841": "PCN\n |\n MDDS", + "985855": "PCN\n |\n MDDS", + "985857": "PCN\n |\n MDDS", + "985868": "PCN\n |\n MDDS", + "999TCZ": "PCN\n |\n MDDS", + "999TD0": "PCN\n |\n MDDS", + "999TDM": "PCN\n |\n MDDS", + "999TDN": "PCN\n |\n MDDS", + "999TDP": "PCN\n |\n MDDS", + "999TDR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Wi-Fi 6 Series", + "Code Name": "Products formerly Cyclone Peak", + "Status": "Launched", + "Launch Date": "Q2'19", + "Weight (in grams)": "2.83", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6 (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999ADP", + "Ordering Code": "AX200.D2WG.LTNV", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "985897": "PCN\n |\n MDDS", + "985927": "PCN\n |\n MDDS", + "985942": "PCN\n |\n MDDS", + "985952": "PCN\n |\n MDDS", + "999ADP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Adapter I225 Series", + "Status": "Launched", + "Launch Date": "Q1'21", + "Vertical Segment": "Desktop", + "Cable Medium": "Copper", + "Cabling Type": "CAT5e, CAT6, CAT6A", + "Bracket Height": "Low profile and full height", + "TDP": "2.39 W", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10/100/1000/2.5GBASE-T (TX)", + "Speed & Slot Width": "5 GT/s, x1 Lane", + "Controller": "Intel Ethernet Controller I225", + "System Interface Type": "PCIe 3.1 (5 GT/s)", + "MM#": "999PT5", + "Ordering Code": "I225T1", + "ECCN": "5A991.B.4.A", + "CCATS": "NA", + "US HTS": "8517620090", + "999PT5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Gigabit CT Desktop Adapter Series", + "Code Name": "Products formerly Shelter Island", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Vertical Segment": "Desktop", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Low Profile & Full Height", + "TDP": "1.9 W", + "Ethernet Controller": "Intel® 82574L Gigabit Ethernet Controller", + "Port Configuration": "Single", + "Data Rate Per Port": "10/100/1000 Mbps", + "Speed & Slot Width": "2.5 GT/s, x1 Lane", + "Controller": "Intel® 82574L Gigabit Ethernet Controller", + "System Interface Type": "PCIe v1.1 (2.5 GT/s)" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I350 Series", + "Status": "Launched", + "Launch Date": "Q4'19", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Cat 5 up to 100m", + "Bracket Height": "OCP 3.0", + "Supported Operating Systems": "intel.com/support/Ethernet", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5 GT/s x4 Lane", + "Controller": "Intel® Ethernet Controller i350", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "979127", + "Ordering Code": "I350T4OCPV3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "979127": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I350 Series", + "Code Name": "Products formerly Powerville", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Cat 5 up to 100m", + "Bracket Height": "Low Profile and Full Height", + "Supported Operating Systems": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "1GbE", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5 GT/s x 4 Lane", + "Controller": "Intel I350", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I350 Series", + "Code Name": "Products formerly Powerville", + "Status": "Launched", + "Launch Date": "Q3'14", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Cat 5 up to 100m", + "Bracket Height": "Low Profile and Full Height", + "TDP": "5 W", + "Supported Operating Systems": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5 GT/s, x4 Lane", + "Controller": "Intel Ethernet Controller I350", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "936715", + "Ordering Code": "I350T4V2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "934608": "PCN\n |\n MDDS", + "936715": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I350 Series", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "MMF 50um up to 550m; MMF 62.5um up to 275m", + "Bracket Height": "Low profile and full height", + "TDP": "5.5 W", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Windows Server 2012*, Windows 10*, Windows 8*, Windows Server 2008 R2*, Windows 7*, Windows Server 2008*, Windows Vista*, Windows Server 2003 R2*, Windows Server 2003*, Windows XP Professional, Linux* Stable Kernel version 3.x, 2.6,x, Red Hat Enterprise Linux* 5, 6, SUSE Linux Enterprise Server* 10, 11, FreeBSD 9*, VMware ESX/ESXi*", + "Port Configuration": "Dual", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5 GT/s, x4 Lane", + "Controller": "Intel I350", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I350 Series", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "MMF 50um up to 550m; MMF 62.5um up to 275m", + "Bracket Height": "Full height", + "TDP": "6 W", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Windows Server 2012*, Windows 10*, Windows 8*, Windows Server 2008 R2*, Windows 7*, Windows Server 2008*, Windows Vista*, Windows Server 2003 R2*, Windows Server 2003*, Windows XP Professional, Linux* Stable Kernel version 3.x, 2.6,x, Red Hat Enterprise Linux* 5, 6, SUSE Linux Enterprise Server* 10, 11, FreeBSD 9*, VMware ESX/ESXi*", + "Port Configuration": "Quad", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Yes", + "Speed & Slot Width": "5 GT/s, x4 Lane", + "Controller": "Intel I350", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Server Adapter I210 Series", + "Status": "Launched", + "Launch Date": "Q1'13", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "RJ45 Category 5, up to 100 m", + "Bracket Height": "Low Profile and Full Height", + "TDP": "1 W", + "Port Configuration": "Single", + "Data Rate Per Port": "10/100/1000 Mbps", + "Speed & Slot Width": "2.5 GT/s, x1 Lane", + "Controller": "Intel I210", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "On-chip QoS and Traffic Management": "No", + "Flexible Port Partitioning": "No", + "Virtual Machine Device Queues (VMDq)": "No", + "PCI-SIG* SR-IOV Capable": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "No", + "Intelligent Offloads": "Yes", + "MM#": "921435", + "Ordering Code": "I210T1G1P20", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "921433": "PCN\n |\n MDDS", + "921435": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Cyclone® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "20 nm", + "Logic Elements (LE)": "85000", + "Adaptive Logic Modules (ALM)": "31000", + "Adaptive Logic Module (ALM) Registers": "124000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "6", + "Maximum Embedded Memory": "6.473 Mb", + "Digital Signal Processing (DSP) Blocks": "84", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR3, DDR3L, LPDDR3", + "Maximum User I/O Count†": "216", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "72", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "6", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672", + "Additional Information": "View now", + "MM#": "978992", + "Spec Code": "SRCZ9", + "Ordering Code": "10CX085YF672I6G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "978968": "PCN", + "978992": "PCN", + "978991": "PCN", + "978977": "PCN", + "978986": "PCN", + "978973": "PCN", + "978984": "PCN", + "978969": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "20 nm", + "Logic Elements (LE)": "104000", + "Adaptive Logic Modules (ALM)": "38000", + "Adaptive Logic Module (ALM) Registers": "152000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "8.439 Mb", + "Digital Signal Processing (DSP) Blocks": "125", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR3, DDR3L, LPDDR3", + "Maximum User I/O Count†": "284", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "118", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "973656", + "Spec Code": "SRBJT", + "Ordering Code": "10CX105YU484I5G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965247": "PCN", + "965246": "PCN", + "965245": "PCN", + "965244": "PCN", + "967742": "PCN", + "967741": "PCN", + "973656": "PCN", + "968807": "PCN", + "965571": "PCN", + "968806": "PCN", + "965570": "PCN", + "965569": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "20 nm", + "Logic Elements (LE)": "150000", + "Adaptive Logic Modules (ALM)": "54770", + "Adaptive Logic Module (ALM) Registers": "219080", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "10.652 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR3, DDR3L, LPDDR3", + "Maximum User I/O Count†": "284", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "118", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "968809", + "Spec Code": "SR7D9", + "Ordering Code": "10CX150YU484E5G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965476": "PCN", + "965248": "PCN", + "965475": "PCN", + "967122": "PCN", + "967121": "PCN", + "967120": "PCN", + "968093": "PCN", + "965574": "PCN", + "968809": "PCN", + "965573": "PCN", + "968808": "PCN", + "965572": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "20 nm", + "Logic Elements (LE)": "220000", + "Adaptive Logic Modules (ALM)": "80330", + "Adaptive Logic Module (ALM) Registers": "321320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "10", + "Maximum Embedded Memory": "13.43 Mb", + "Digital Signal Processing (DSP) Blocks": "192", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR3, DDR3L, LPDDR3", + "Maximum User I/O Count†": "284", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "118", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "12", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "12.5 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen2", + "FPGA Bitstream Security": "Yes", + "Package Options": "U484, F672, F780", + "Additional Information": "View now", + "MM#": "973657", + "Spec Code": "SRBJU", + "Ordering Code": "10CX220YF780I5G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965249": "PCN", + "967125": "PCN", + "967124": "PCN", + "967123": "PCN", + "968810": "PCN", + "967744": "PCN", + "967743": "PCN", + "968094": "PCN", + "965575": "PCN", + "973657": "PCN", + "965478": "PCN", + "965477": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "6000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "270 Kb", + "Digital Signal Processing (DSP) Blocks": "15", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "176", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "65", + "Package Options": "U256, E144", + "Additional Information": "View now", + "MM#": "999A2M", + "Spec Code": "SRF51", + "Ordering Code": "10CL006YU256A7G", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "967110": "PCN", + "967109": "PCN", + "973647": "PCN", + "999A2M": "PCN", + "965562": "PCN", + "968794": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "10000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "2", + "Maximum Embedded Memory": "414 Kb", + "Digital Signal Processing (DSP) Blocks": "23", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "176", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "65", + "Package Options": "M164, U256, E144", + "Additional Information": "View now", + "MM#": "999A25", + "Spec Code": "SRF4Q", + "Ordering Code": "10CL010YU256A7G", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "968086": "PCN", + "999A25": "PCN", + "999A24": "PCN", + "965229": "PCN", + "965228": "PCN", + "965227": "PCN", + "967736": "PCN", + "968795": "PCN", + "967735": "PCN", + "967111": "PCN", + "968087": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "16000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "504 Kb", + "Digital Signal Processing (DSP) Blocks": "56", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "340", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "137", + "Package Options": "M164, U256, U484, E144, F484", + "Additional Information": "View now", + "MM#": "999A2K", + "Spec Code": "SRF4Z", + "Ordering Code": "10CL016YU484A7G", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542390001", + "965230": "PCN", + "965565": "PCN", + "965564": "PCN", + "999A2A": "PCN", + "973650": "PCN", + "999A28": "PCN", + "968800": "PCN", + "965233": "PCN", + "965232": "PCN", + "965231": "PCN", + "965468": "PCN", + "968798": "PCN", + "965467": "PCN", + "968797": "PCN", + "999A2K": "PCN", + "965466": "PCN", + "968796": "PCN", + "967113": "PCN", + "967112": "PCN", + "968088": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "25000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "594 Kb", + "Digital Signal Processing (DSP) Blocks": "66", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "150", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "52", + "Package Options": "U256, E144", + "Additional Information": "View now", + "MM#": "999A2F", + "Spec Code": "SRF4V", + "Ordering Code": "10CL025YU256A7G", + "Stepping": "A1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542390001", + "965236": "PCN", + "965235": "PCN", + "965471": "PCN", + "965470": "PCN", + "967114": "PCN", + "999A2F": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "40000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "1.134 Mb", + "Digital Signal Processing (DSP) Blocks": "126", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "325", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "124", + "Package Options": "U484, F484", + "Additional Information": "View now", + "MM#": "999A2G", + "Spec Code": "SRF4W", + "Ordering Code": "10CL040YU484A7G", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "973651": "PCN", + "968801": "PCN", + "965472": "PCN", + "967115": "PCN", + "967738": "PCN", + "965240": "PCN", + "999A2G": "PCN", + "965239": "PCN", + "965238": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "55000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "2.34 Mb", + "Digital Signal Processing (DSP) Blocks": "156", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "321", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "132", + "Package Options": "U484, F484", + "Additional Information": "View now", + "MM#": "999A2H", + "Spec Code": "SRF4X", + "Ordering Code": "10CL055YU484A7G", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968802": "PCN", + "967118": "PCN", + "967117": "PCN", + "965566": "PCN", + "967116": "PCN", + "974707": "PCN", + "999A2H": "PCN", + "968089": "PCN", + "973653": "PCN", + "973652": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "80000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "2.745 Mb", + "Digital Signal Processing (DSP) Blocks": "244", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "423", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "178", + "Package Options": "U484, F484, F780", + "Additional Information": "View now", + "MM#": "999A2J", + "Spec Code": "SRF4Y", + "Ordering Code": "10CL080YU484A7G", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965473": "PCN", + "967119": "PCN", + "968091": "PCN", + "973655": "PCN", + "999A2J": "PCN", + "968090": "PCN", + "973654": "PCN", + "968805": "PCN", + "968804": "PCN" + }, + { + "Product Collection": "Intel® Cyclone® 10 LP FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "60 nm", + "Logic Elements (LE)": "120000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "4", + "Maximum Embedded Memory": "3.888 Mb", + "Digital Signal Processing (DSP) Blocks": "288", + "Digital Signal Processing (DSP) Format": "Multiply", + "Maximum User I/O Count†": "525", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3 V LVCMOS, PCI, PCI-X, SSTL, HSTL, Differential SSTL, Differential HSTL, LVDS, Mini-LVDS, RSDS, PPDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "230", + "Package Options": "F484, F780", + "Additional Information": "View now", + "MM#": "967740", + "Spec Code": "SR6GP", + "Ordering Code": "10CL120ZF780I8G", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "965474": "PCN", + "967740": "PCN", + "967739": "PCN" + }, + { + "Product Collection": "Intel® FPGA Configuration Device EPCQ-A", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "58 nm", + "Memory Size": "134217728 bits", + "On-Chip Decompression Support": "No", + "In-System Programming Support": "Yes", + "Cascading Support": "No", + "Reprogrammable": "Yes", + "Recommended Operating Voltage": "3.3 V", + "Package Options": "16-pin SOIC", + "Package Size": "10.3mm x 10.3mm", + "Datasheet": "View now", + "Additional Information": "View now", + "MM#": "974761", + "Spec Code": "SRC4H", + "Ordering Code": "EPCQ128ASI16N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542320051", + "974761": "PCN" + }, + { + "Product Collection": "Intel® FPGA Configuration Device EPCQ-A", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "58 nm", + "Memory Size": "16777216 bits", + "On-Chip Decompression Support": "No", + "In-System Programming Support": "Yes", + "Cascading Support": "No", + "Reprogrammable": "Yes", + "Recommended Operating Voltage": "3.3 V", + "Package Options": "8-pin SOIC", + "Package Size": "4.9mm x 6.0mm", + "Datasheet": "View now", + "Additional Information": "View now", + "MM#": "974763", + "Spec Code": "SRC4K", + "Ordering Code": "EPCQ16ASI8N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542320051", + "974763": "PCN" + }, + { + "Product Collection": "Intel® FPGA Configuration Device EPCQ-A", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "58 nm", + "Memory Size": "33554432 bits", + "On-Chip Decompression Support": "No", + "In-System Programming Support": "Yes", + "Cascading Support": "No", + "Reprogrammable": "Yes", + "Recommended Operating Voltage": "3.3 V", + "Package Options": "8-pin SOIC", + "Package Size": "4.9mm x 6.0mm", + "Datasheet": "View now", + "Additional Information": "View now", + "MM#": "974766", + "Spec Code": "SRC4N", + "Ordering Code": "EPCQ32ASI8N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542320051", + "974766": "PCN" + }, + { + "Product Collection": "Intel® FPGA Configuration Device EPCQ-A", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "90 nm", + "Memory Size": "4194304 bits", + "On-Chip Decompression Support": "No", + "In-System Programming Support": "Yes", + "Cascading Support": "No", + "Reprogrammable": "Yes", + "Recommended Operating Voltage": "3.3 V", + "Package Options": "8-pin SOIC", + "Package Size": "4.9mm x 6.0mm", + "Datasheet": "View now", + "Additional Information": "View now", + "MM#": "974768", + "Spec Code": "SRC4Q", + "Ordering Code": "EPCQ4ASI8N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542320051", + "974768": "PCN" + }, + { + "Product Collection": "Intel® FPGA Configuration Device EPCQ-A", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "58 nm", + "Memory Size": "67108864 bits", + "On-Chip Decompression Support": "No", + "In-System Programming Support": "Yes", + "Cascading Support": "No", + "Reprogrammable": "Yes", + "Recommended Operating Voltage": "3.3 V", + "Package Options": "16-pin SOIC", + "Package Size": "10.3mm x 10.3mm", + "Datasheet": "View now", + "Additional Information": "View now", + "MM#": "974771", + "Spec Code": "SRC4T", + "Ordering Code": "EPCQ64ASI16N", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542320051", + "974771": "PCN" + }, + { + "Product Collection": "Intel® Killer™ Wi-Fi Series", + "Code Name": "Products formerly Garfield Peak", + "Status": "Launched", + "Launch Date": "Q3'21", + "Weight (in grams)": "2.83", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999M3K", + "Ordering Code": "AX211.D2WG.NVX", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "999M3J": "PCN", + "999M3K": "PCN" + }, + { + "Product Collection": "Intel® Killer™ Wi-Fi Series", + "Code Name": "Products formerly Garfield Peak", + "Status": "Launched", + "Launch Date": "Q4'21", + "Weight (in grams)": "2.8", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "TX/RX Streams": "2x2 (Intel® Double Connect Technology)", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "~3.0 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1625", + "Package Size": "22mm x 30mm x 2.4mm, 16mm x 25mm x 2.0mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99AAL7", + "Ordering Code": "AX411.E2WG.NVX", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "99AAL2": "PCN" + }, + { + "Product Collection": "Intel® Killer™ Wi-Fi Series", + "Code Name": "Products formerly Harrison Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "2.33", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Linux*, Chrome OS*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6 (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "M.2: CNVio2", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99A780", + "Ordering Code": "AX201.D2WG.NXXW", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "985874": "PCN\n |\n MDDS", + "99A77W": "PCN\n |\n MDDS", + "99A780": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Killer™ Wi-Fi Series", + "Code Name": "Products formerly Cyclone Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "2.83", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6 (802.11ax)", + "Compliance": "FIPS, FISMA", + "Bluetooth Version": "5.2", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "99A78G", + "Ordering Code": "AX200.D2WGLNXXP", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "99A784": "PCN\n |\n MDDS", + "99A78F": "PCN\n |\n MDDS", + "99A78G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Killer™ Wi-Fi Series", + "Code Name": "Products formerly Typhoon Peak", + "Status": "Launched", + "Launch Date": "Q4'20", + "Weight (in grams)": "2.83", + "Operating Temperature Range": "0°C to 80°C", + "Operating Temperature (Maximum)": "80 °C", + "Operating Temperature (Minimum)": "0 °C", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Linux*", + "Antenna": "2x2", + "Product Brief": "View now", + "TX/RX Streams": "2x2", + "Bands": "2.4, 5, 6 GHz (160MHz)", + "Max Speed": "2.4 Gbps", + "Wi-Fi CERTIFIED*": "Wi-Fi 6E (802.11ax)", + "Compliance": "FIPS, FISMA M.2 2230, M.2 1216", + "Bluetooth Version": "5.3", + "Integrated Bluetooth": "Yes", + "Board Form Factor": "M.2 2230, M.2 1216", + "Package Size": "22mm x 30mm x 2.4mm, 12mm x 16mm x 1.65mm", + "System Interface Type": "Wi-Fi(PCIe), BT(USB)", + "MU-MIMO": "Yes", + "Orthogonal Frequency-Division Multiple Access (OFDMA)": "Yes", + "MM#": "999MA2", + "Ordering Code": "AX210.D2WG.NVX", + "ECCN": "5A992CN3", + "CCATS": "G165483", + "US HTS": "8517620090", + "999M86": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1285V6", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "79 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955012", + "Spec Code": "SR373", + "Ordering Code": "CM8067702870937", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1501LV6", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956300", + "Spec Code": "SR3EZ", + "Ordering Code": "CL8067703400904", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956300": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1501MV6", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956301", + "Spec Code": "SR3F0", + "Ordering Code": "CL8067703401003", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956301": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954325", + "Spec Code": "SR32C", + "Ordering Code": "BX80677E31225V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952793": "PCN\n |\n MDDS", + "954325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1245V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954323", + "Spec Code": "SR32B", + "Ordering Code": "BX80677E31245V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952792": "PCN\n |\n MDDS", + "954323": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1275V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954321", + "Spec Code": "SR32A", + "Ordering Code": "BX80677E31275V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952791": "PCN\n |\n MDDS", + "954321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1505LV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953947", + "Spec Code": "SR34X", + "Ordering Code": "CL8067703022209", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1505MV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952951", + "Spec Code": "SR32K", + "Ordering Code": "CL8067702869709", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952951": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1535MV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952949", + "Spec Code": "SR32H", + "Ordering Code": "CL8067702869614", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952949": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8305G", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ Pro WX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979456", + "Spec Code": "SRD0X", + "Ordering Code": "FH8067703417715", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979456": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8706G", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ Pro WX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "978295", + "Spec Code": "SRCXS", + "Ordering Code": "FH8067703417418", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "978295": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8305G", + "Status": "Announced", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8705G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961154", + "Spec Code": "SR3RK", + "Ordering Code": "FH8067703417515", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961154": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8706G", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961153", + "Spec Code": "SR3RJ", + "Ordering Code": "FH8067703417418", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961153": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8709G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961162", + "Spec Code": "SR3RN", + "Ordering Code": "FH8067703419113", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8809G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961160", + "Spec Code": "SR3RL", + "Ordering Code": "FH8067703417615", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961160": "PCN" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7100", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954811", + "Spec Code": "SR35C", + "Ordering Code": "BX80677I37100", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954033": "PCN\n |\n MDDS", + "954811": "PCN\n |\n MDDS", + "954819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-7100E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953943", + "Spec Code": "SR34V", + "Ordering Code": "CL8067702999007", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953943": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100H", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952960", + "Spec Code": "SR32T", + "Ordering Code": "CL8067702870511", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7100T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955327", + "Spec Code": "SR35P", + "Ordering Code": "BXC80677I37100T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954047": "PCN\n |\n MDDS", + "955325": "PCN\n |\n MDDS", + "955327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7101E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L-1600, DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952995", + "Spec Code": "SR32Z", + "Ordering Code": "CM8067702867060", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7101TE", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L-1600, DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952996", + "Spec Code": "SR330", + "Ordering Code": "CM8067702867061", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952996": "MDDS", + "955013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-7102E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953944", + "Spec Code": "SR34W", + "Ordering Code": "CL8067702999106", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953944": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7300", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954809", + "Spec Code": "SR359", + "Ordering Code": "BX80677I37300", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954023": "PCN\n |\n MDDS", + "954809": "PCN\n |\n MDDS", + "954817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7300T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955326", + "Spec Code": "SR35M", + "Ordering Code": "BXC80677I37300T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954045": "PCN\n |\n MDDS", + "955324": "PCN\n |\n MDDS", + "955326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7320", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954808", + "Spec Code": "SR358", + "Ordering Code": "BX80677I37320", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954022": "PCN\n |\n MDDS", + "954808": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7350K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954818", + "Spec Code": "SR35B", + "Ordering Code": "BXC80677I37350K", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954030": "PCN\n |\n MDDS", + "954810": "PCN\n |\n MDDS", + "954818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952959", + "Spec Code": "SR32S", + "Ordering Code": "CL8067702870309", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7400", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953681", + "Spec Code": "SR32W", + "Ordering Code": "BX80677I57400", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952986": "PCN\n |\n MDDS", + "953681": "PCN\n |\n MDDS", + "953701": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7400T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954225", + "Spec Code": "SR332", + "Ordering Code": "BXC80677I57400T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952998": "PCN\n |\n MDDS", + "954219": "PCN\n |\n MDDS", + "954225": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-7440EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953941", + "Spec Code": "SR34T", + "Ordering Code": "CL8067702998810", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953941": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7440HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-7442EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953942", + "Spec Code": "SR34U", + "Ordering Code": "CL8067702998909", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7500", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953683", + "Spec Code": "SR335", + "Ordering Code": "BX80677I57500", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953001": "PCN\n |\n MDDS", + "953683": "PCN\n |\n MDDS", + "953703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7500T", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954228", + "Spec Code": "SR337", + "Ordering Code": "BXC80677I57500T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953003": "PCN\n |\n MDDS", + "954221": "PCN\n |\n MDDS", + "954228": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953702", + "Spec Code": "SR334", + "Ordering Code": "BXC80677I57600", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953000": "PCN\n |\n MDDS", + "953682": "PCN\n |\n MDDS", + "953702": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953700", + "Spec Code": "SR32V", + "Ordering Code": "BXC80677I57600K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952985": "PCN\n |\n MDDS", + "953680": "PCN\n |\n MDDS", + "953700": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954227", + "Spec Code": "SR336", + "Ordering Code": "BXC80677I57600T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953002": "PCN\n |\n MDDS", + "954220": "PCN\n |\n MDDS", + "954227": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953654", + "Spec Code": "SR338", + "Ordering Code": "BX80677I77700", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953004": "PCN\n |\n MDDS", + "953654": "PCN\n |\n MDDS", + "953712": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7700HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952957", + "Spec Code": "SR32Q", + "Ordering Code": "CL8067702870109", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953655", + "Spec Code": "SR33A", + "Ordering Code": "BX80677I77700K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953006": "PCN\n |\n MDDS", + "953655": "PCN\n |\n MDDS", + "953713": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700T", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954229", + "Spec Code": "SR339", + "Ordering Code": "BXC80677I77700T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953005": "PCN\n |\n MDDS", + "954222": "PCN\n |\n MDDS", + "954229": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-7820EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953940", + "Spec Code": "SR34S", + "Ordering Code": "CL8067702998607", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953940": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7820HK", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952955", + "Spec Code": "SR32P", + "Ordering Code": "CL8067702870009", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952955": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7820HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952954", + "Spec Code": "SR32N", + "Ordering Code": "CL8067702869911", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952954": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7920HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952952", + "Spec Code": "SR32L", + "Ordering Code": "CL8067702869821", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952952": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4600", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954822", + "Spec Code": "SR35F", + "Ordering Code": "BXC80677G4600", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954039": "PCN\n |\n MDDS", + "954814": "PCN\n |\n MDDS", + "954822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4600T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954049", + "Spec Code": "SR35R", + "Ordering Code": "CM8067703016014", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954049": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4620", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954813", + "Spec Code": "SR35E", + "Ordering Code": "BX80677G4620", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954035": "PCN\n |\n MDDS", + "954813": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7020U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356, FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961968", + "Spec Code": "SR3TK", + "Ordering Code": "FJ8067702739769", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959164": "PCN\n |\n MDDS", + "960019": "PCN\n |\n MDDS", + "961968": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7130U", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958406", + "Spec Code": "SR3JY", + "Ordering Code": "FJ8067702739765", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "958406": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7600U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953350", + "Spec Code": "SR33Z", + "Ordering Code": "FJ8067702739628", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953350": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7200U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953353", + "Spec Code": "SR342", + "Ordering Code": "FJ8067702739739", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953353": "PCN\n |\n MDDS", + "951957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7500U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953352", + "Spec Code": "SR341", + "Ordering Code": "FJ8067702739740", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953352": "PCN\n |\n MDDS", + "951958": "PCN\n |\n MDDS", + "951046": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3965Y", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957364", + "Spec Code": "SR3GG", + "Ordering Code": "HE8067702740021", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "957364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4415Y", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957336", + "Spec Code": "SR3GA", + "Ordering Code": "HE8067702740018", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "957336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-7Y32", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.75 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953357", + "Spec Code": "SR346", + "Ordering Code": "HE8067702739830", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953357": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7Y57", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953349", + "Spec Code": "SR33Y", + "Ordering Code": "HE8067702739527", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4410Y", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953362", + "Spec Code": "SR34B", + "Ordering Code": "HE8067702740013", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7Y54", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953356", + "Spec Code": "SR345", + "Ordering Code": "HE8067702739826", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953356": "PCN\n |\n MDDS", + "951960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7Y75", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953348", + "Spec Code": "SR33X", + "Ordering Code": "HE8067702739526", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951956": "PCN\n |\n MDDS", + "953348": "PCN\n |\n MDDS", + "951044": "MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-7Y30", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.75 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953358", + "Spec Code": "SR347", + "Ordering Code": "HE8067702739824", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953358": "PCN\n |\n MDDS", + "951961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "3867U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984528", + "Spec Code": "SRESK", + "Ordering Code": "FJ8067703283011", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "984528": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "4417U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984527", + "Spec Code": "SRESH", + "Ordering Code": "FJ8067703282813", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "984527": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930E", + "Status": "Launched", + "Launch Date": "Q2'17", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955177", + "Spec Code": "SR38G", + "Ordering Code": "CM8067703318802", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930TE", + "Status": "Launched", + "Launch Date": "Q2'17", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096X2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955178", + "Spec Code": "SR38H", + "Ordering Code": "CM8067703318900", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955178": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3865U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953360", + "Spec Code": "SR349", + "Ordering Code": "FJ8067702739933", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "3965U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953361", + "Spec Code": "SR34A", + "Ordering Code": "FJ8067702739934", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954816", + "Spec Code": "SR35K", + "Ordering Code": "BX80677G3930", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954043": "PCN\n |\n MDDS", + "954816": "PCN\n |\n MDDS", + "954823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3930T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954053", + "Spec Code": "SR35V", + "Ordering Code": "CM8067703016211", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954053": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G3950", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2133, DDR3L 1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954815", + "Spec Code": "SR35J", + "Ordering Code": "BX80677G3950", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954042": "PCN\n |\n MDDS", + "954815": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4415U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953359", + "Spec Code": "SR348", + "Ordering Code": "FJ8067702739932", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4560", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954812", + "Spec Code": "SR32Y", + "Ordering Code": "BX80677G4560", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952994": "PCN\n |\n MDDS", + "954812": "PCN\n |\n MDDS", + "954821": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4560T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954051", + "Spec Code": "SR35T", + "Ordering Code": "CM8067703016117", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954051": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6100E", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944045", + "Spec Code": "SR2DV", + "Ordering Code": "CL8066201939604", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944045": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6100TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947268", + "Spec Code": "SR2LS", + "Ordering Code": "CM8066201938603", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947268": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6102E", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944050", + "Spec Code": "SR2DX", + "Ordering Code": "CL8066202400105", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944050": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6440EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944037", + "Spec Code": "SR2DU", + "Ordering Code": "CL8066201939503", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6442EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944051", + "Spec Code": "SR2DY", + "Ordering Code": "CL8066202400005", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944051": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6500TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947257", + "Spec Code": "SR2LR", + "Ordering Code": "CM8066201938000", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947257": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6700TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947253", + "Spec Code": "SR2LP", + "Ordering Code": "CM8066201937801", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947253": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6820EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944028", + "Spec Code": "SR2DT", + "Ordering Code": "CL8066201939103", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944028": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6822EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944047", + "Spec Code": "SR2DW", + "Ordering Code": "CL8066202302204", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6100", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945918", + "Spec Code": "SR2HG", + "Ordering Code": "BXC80662I36100", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945208": "PCN\n |\n MDDS", + "945911": "PCN\n |\n MDDS", + "945918": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100H", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944369", + "Spec Code": "SR2FR", + "Ordering Code": "CL8066202194634", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944369": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6100T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "FHS Part #E98290-001", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945917", + "Spec Code": "SR2HE", + "Ordering Code": "BXC80662I36100T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945206": "PCN", + "945910": "PCN\n |\n MDDS", + "945917": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6300", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945914", + "Spec Code": "SR2HA", + "Ordering Code": "BXC80662I36300", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945193": "PCN", + "945908": "PCN\n |\n MDDS", + "945914": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6300T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945909", + "Spec Code": "SR2HD", + "Ordering Code": "BX80662I36300T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945205": "PCN", + "945909": "PCN\n |\n MDDS", + "945915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6320", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946089", + "Spec Code": "SR2H9", + "Ordering Code": "BX80662I36320", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945192": "PCN", + "946089": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6300HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948853", + "Spec Code": "SR2SK", + "Ordering Code": "JQ8066202195132", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944367": "PCN\n |\n MDDS", + "948853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6400", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947570", + "Spec Code": "SR2L7", + "Ordering Code": "BXC80662I56400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947207": "PCN", + "947563": "PCN\n |\n MDDS", + "947570": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6400T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947201", + "Spec Code": "SR2L1", + "Ordering Code": "CM8066201920000", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947201": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6440HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944370", + "Spec Code": "SR2FS", + "Ordering Code": "CL8066202194729", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944370": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6500", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947569", + "Spec Code": "SR2L6", + "Ordering Code": "BXC80662I56500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947206": "PCN\n |\n MDDS", + "947562": "PCN\n |\n MDDS", + "947569": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6500T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947208", + "Spec Code": "SR2L8", + "Ordering Code": "CM8066201920600", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947208": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947568", + "Spec Code": "SR2L5", + "Ordering Code": "BXC80662I56600", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947205": "PCN", + "947561": "PCN\n |\n MDDS", + "947568": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947209", + "Spec Code": "SR2L9", + "Ordering Code": "CM8066201920601", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947209": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947566", + "Spec Code": "SR2L2", + "Ordering Code": "BXC80662I76700", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947202": "PCN\n |\n MDDS", + "947559": "PCN\n |\n MDDS", + "947566": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6700HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948855", + "Spec Code": "SR2SL", + "Ordering Code": "JQ8066202195126", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944368": "PCN\n |\n MDDS", + "948855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700T", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947203", + "Spec Code": "SR2L3", + "Ordering Code": "CM8066201920202", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945628": "MDDS", + "947203": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6820HK", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944356", + "Spec Code": "SR2FL", + "Ordering Code": "CL8066202194730", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944356": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6820HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944372", + "Spec Code": "SR2FU", + "Ordering Code": "CL8066202194731", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944372": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6920HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944371", + "Spec Code": "SR2FT", + "Ordering Code": "CL8066202194719", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944371": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4500", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946008", + "Spec Code": "SR2HJ", + "Ordering Code": "BXC80662G4500", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945269": "PCN", + "946003": "PCN\n |\n MDDS", + "946008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4500T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945382", + "Spec Code": "SR2HS", + "Ordering Code": "CM8066201927512", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945382": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4520", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946006", + "Spec Code": "SR2HM", + "Ordering Code": "BX80662G4520", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945298": "PCN", + "946006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600K", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TCASE": "64°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947567", + "Spec Code": "SR2L4", + "Ordering Code": "BXC80662I56600K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947204": "PCN\n |\n MDDS", + "947560": "PCN\n |\n MDDS", + "947567": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700K", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TCASE": "64°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947565", + "Spec Code": "SR2L0", + "Ordering Code": "BXC80662I76700K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947200": "PCN\n |\n MDDS", + "947558": "PCN\n |\n MDDS", + "947565": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947521", + "Spec Code": "SR2LJ", + "Ordering Code": "BX80662E31225V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947247": "PCN\n |\n MDDS", + "947521": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1235LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947250", + "Spec Code": "SR2LM", + "Ordering Code": "CM8066201935807", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947250": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1245V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947523", + "Spec Code": "SR2LL", + "Ordering Code": "BX80662E31245V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947249": "PCN", + "947523": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1268LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947254", + "Spec Code": "SR2LQ", + "Ordering Code": "CM8066201937901", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947254": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1275V5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947522", + "Spec Code": "SR2LK", + "Ordering Code": "BX80662E31275V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943551": "PCN\n |\n MDDS", + "947248": "PCN\n |\n MDDS", + "947522": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1505LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944067", + "Spec Code": "SR2E0", + "Ordering Code": "CL8066202399804", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944067": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1505MV5", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944366", + "Spec Code": "SR2FN", + "Ordering Code": "CL8066202191415", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1535MV5", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944365", + "Spec Code": "SR2FM", + "Ordering Code": "CL8066202191412", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944365": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6006U", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950664", + "Spec Code": "SR2UW", + "Ordering Code": "FJ8066201931106", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "950664": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944334", + "Spec Code": "SR2EU", + "Ordering Code": "FJ8066201931104", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6200U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944338", + "Spec Code": "SR2EY", + "Ordering Code": "FJ8066201930409", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944338": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6300U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944340", + "Spec Code": "SR2F0", + "Ordering Code": "FJ8066201924931", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944340": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6500U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944339", + "Spec Code": "SR2EZ", + "Ordering Code": "FJ8066201930408", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6600U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944341", + "Spec Code": "SR2F1", + "Ordering Code": "FJ8066201924950", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-6Y30", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944326", + "Spec Code": "SR2EN", + "Ordering Code": "HE8066201930521", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M5-6Y54", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944325", + "Spec Code": "SR2EM", + "Ordering Code": "HE8066201930524", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M5-6Y57", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944320", + "Spec Code": "SR2EG", + "Ordering Code": "HE8066201922876", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944320": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M7-6Y75", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944321", + "Spec Code": "SR2EH", + "Ordering Code": "HE8066201922875", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 4000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "4405Y", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944330", + "Spec Code": "SR2ER", + "Ordering Code": "HE8066201931229", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944330": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3900E", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944534", + "Spec Code": "SR2GH", + "Ordering Code": "CL8066201939703", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944534": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3902E", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944537", + "Spec Code": "SR2GJ", + "Ordering Code": "CL8066202400204", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944537": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "3855U", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866, DDR3L-1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944335", + "Spec Code": "SR2EV", + "Ordering Code": "FJ8066201931008", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944335": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "3955U", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866, DDR3L-1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944336", + "Spec Code": "SR2EW", + "Ordering Code": "FJ8066201931006", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3900", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945919", + "Spec Code": "SR2HV", + "Ordering Code": "BXC80662G3900", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945385": "PCN\n |\n MDDS", + "945912": "PCN\n |\n MDDS", + "945919": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3900T", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G3900TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947271", + "Spec Code": "SR2LU", + "Ordering Code": "CM8066201938802", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947271": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G3920", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945920", + "Spec Code": "SR2HX", + "Ordering Code": "BXC80662G3920", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945387": "PCN", + "945913": "PCN\n |\n MDDS", + "945920": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6098P", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "ox1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948520", + "Spec Code": "SR2NN", + "Ordering Code": "BXC80662I36098P", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948062": "PCN", + "948517": "PCN\n |\n MDDS", + "948520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6402P", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948518", + "Spec Code": "SR2NJ", + "Ordering Code": "BXC80662I56402P", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947992": "PCN", + "948516": "PCN\n |\n MDDS", + "948518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G4400TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947270", + "Spec Code": "SR2LT", + "Ordering Code": "CM8066201938702", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947270": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 4000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "4405U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944337", + "Spec Code": "SR2EX", + "Ordering Code": "FJ8066201930905", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944337": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4400", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946007", + "Spec Code": "SR2DC", + "Ordering Code": "BXC80662G4400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945270": "PCN", + "943908": "PCN\n |\n MDDS", + "946002": "PCN\n |\n MDDS", + "946007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4400T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945362", + "Spec Code": "SR2HQ", + "Ordering Code": "CM8066201927506", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945362": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4200E", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.50 GHz", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB", + "TDP": "6 W", + "Embedded Options Available": "No", + "Description": "The Intel® Pentium® Processor N4200E is now named as Intel® Pentium® Processor N4200 processor. Please refer to the \"N4200\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Clock": "200 MHz", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983216", + "Spec Code": "SREKG", + "Ordering Code": "FH8066802979703", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983216": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3950", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A84", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "98°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953085", + "Spec Code": "SR33P", + "Ordering Code": "LH8066803102601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983201": "PCN\n |\n MDDS", + "953085": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J4205", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951843", + "Spec Code": "SR2ZA", + "Ordering Code": "FH8066802986200", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951843": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4200", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A84", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951483", + "Spec Code": "SR2Y9", + "Ordering Code": "FH8066802979703", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951483": "PCN\n |\n MDDS", + "951830": "PCN\n |\n MDDS", + "999N4L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3355E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Description": "Intel® Celeron® Processor J3355E is now named as Intel® Celeron® Processor J3355. Please refer to the \"J3355\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Description": "Intel® Celeron® Processor J3455E is now named as Intel® Celeron® Processor J3455. Please refer to the \"J3455\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350E", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "The Intel® Celeron® Processor N3350E is now named as Intel® Celeron® Processor N3350. Please refer to the \"N3350\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Idle Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3930", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "1.80 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866 MT/s;LPDDR4 up to 2133 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "550 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "103°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953086", + "Spec Code": "SR33Q", + "Ordering Code": "LH8066803102701", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "953086": "PCN\n |\n MDDS", + "983203": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3940", + "Status": "Launched", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "1.80 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L (ECC and Non ECC) up to 1866 MT/s; LPDDR4 up to 2133 MT/s", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "3840x2160 @30Hz", + "Max Resolution (DP)‡": "4096x2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160 @ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4,x2,x1", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TCASE": "100°C", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "24mm x 31mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953083", + "Spec Code": "SR33M", + "Ordering Code": "LH8066803102401", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983196": "PCN\n |\n MDDS", + "953083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3355", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983220", + "Spec Code": "SREKJ", + "Ordering Code": "FH8066802986000", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983220": "PCN\n |\n MDDS", + "951841": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983222", + "Spec Code": "SREKK", + "Ordering Code": "FH8066802986102", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983222": "PCN\n |\n MDDS", + "951842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3450", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951833", + "Spec Code": "SR2Z6", + "Ordering Code": "FH8066802979803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951833": "PCN\n |\n MDDS", + "951484": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5250U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939660", + "Spec Code": "SR26C", + "Ordering Code": "FH8065802063410", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5350U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939656", + "Spec Code": "SR268", + "Ordering Code": "FH8065802063212", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5550U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939658", + "Spec Code": "SR26A", + "Ordering Code": "FH8065802063310", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939658": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5650U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939655", + "Spec Code": "SR267", + "Ordering Code": "FH8065801974816", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939655": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5015U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939369", + "Spec Code": "SR245", + "Ordering Code": "FH8065801884007", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939369": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5020U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939364", + "Spec Code": "SR240", + "Ordering Code": "FH8065801620407", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5005U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939368", + "Spec Code": "SR244", + "Ordering Code": "FH8065801884006", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939368": "PCN\n |\n MDDS", + "940707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5200U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939362", + "Spec Code": "SR23Y", + "Ordering Code": "FH8065801620204", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5300U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939361", + "Spec Code": "SR23X", + "Ordering Code": "FH8065801620104", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5500U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939360", + "Spec Code": "SR23W", + "Ordering Code": "FH8065801620004", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5600U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939359", + "Spec Code": "SR23V", + "Ordering Code": "FH8065801618304", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10c", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.00 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939310", + "Spec Code": "SR23C", + "Ordering Code": "FH8065802062002", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939310": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y31", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.10 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939314", + "Spec Code": "SR23G", + "Ordering Code": "FH8065802061902", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939314": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y51", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939327", + "Spec Code": "SR23L", + "Ordering Code": "FH8065802061802", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y71", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.40 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939331", + "Spec Code": "SR23Q", + "Ordering Code": "FH8065802061602", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939331": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10a", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y70", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95°C", + "Package Size": "30mm x 16.5mm x 1.05mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4260U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929018", + "Spec Code": "SR16T", + "Ordering Code": "CL8064701476801", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929018": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4360U", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4250U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929010", + "Spec Code": "SR16M", + "Ordering Code": "CL8064701463101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4350U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929000", + "Spec Code": "SR16L", + "Ordering Code": "CL8064701463001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4550U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928976", + "Spec Code": "SR16J", + "Ordering Code": "CL8064701462901", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "928976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4650U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928975", + "Spec Code": "SR16H", + "Ordering Code": "CL8064701462800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "928975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4370T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932976", + "Spec Code": "SR1TB", + "Ordering Code": "CM8064601481979", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4720HQ", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931971", + "Spec Code": "SR1Q8", + "Ordering Code": "CL8064701472207", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931971": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4722HQ", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931921", + "Spec Code": "SR1PY", + "Ordering Code": "CL8064701472605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931921": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4360T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931889", + "Spec Code": "SR1PB", + "Ordering Code": "CM8064601481958", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931889": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4370", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943844", + "Spec Code": "SR1PD", + "Ordering Code": "BXC80646I34370", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931891": "PCN\n |\n MDDS", + "937627": "PCN\n |\n MDDS", + "943844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210H", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931923", + "Spec Code": "SR1Q0", + "Ordering Code": "CL8064701473003", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931923": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Devil's Canyon", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690K", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "88 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937434", + "Spec Code": "SR21A", + "Ordering Code": "BXC80646I54690K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937298": "PCN\n |\n MDDS", + "937430": "PCN\n |\n MDDS", + "937431": "PCN\n |\n MDDS", + "937434": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Devil's Canyon", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790K", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "88 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "74.04°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937433", + "Spec Code": "SR219", + "Ordering Code": "BXC80646I74790K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937297": "PCN\n |\n MDDS", + "937428": "PCN\n |\n MDDS", + "937429": "PCN\n |\n MDDS", + "937433": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4340TE", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932855", + "Spec Code": "SR1T5", + "Ordering Code": "CM8064601618605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4350", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934993", + "Spec Code": "SR1PF", + "Ordering Code": "BX80646I34350", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931896": "PCN\n |\n MDDS", + "934993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4350T", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931888", + "Spec Code": "SR1PA", + "Ordering Code": "CM8064601481957", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931888": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4360", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934992", + "Spec Code": "SR1PC", + "Ordering Code": "BX80646I34360", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931890": "PCN\n |\n MDDS", + "934992": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935299", + "Spec Code": "SR1QK", + "Ordering Code": "BXC80646I54460", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931982": "PCN\n |\n MDDS", + "935297": "PCN\n |\n MDDS", + "935299": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460S", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "940135", + "Spec Code": "SR1QQ", + "Ordering Code": "BXC80646I54460S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931997": "PCN\n |\n MDDS", + "940135": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932362", + "Spec Code": "SR1S7", + "Ordering Code": "CM8064601561827", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934961", + "Spec Code": "SR1QJ", + "Ordering Code": "BX80646I54590", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931979": "PCN\n |\n MDDS", + "934958": "PCN", + "934961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590S", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934962", + "Spec Code": "SR1QN", + "Ordering Code": "BX80646I54590S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931994": "PCN\n |\n MDDS", + "934962": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590T", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932361", + "Spec Code": "SR1S6", + "Ordering Code": "CM8064601561826", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934924", + "Spec Code": "SR1QH", + "Ordering Code": "BX80646I54690", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931978": "PCN\n |\n MDDS", + "934920": "PCN\n |\n MDDS", + "934924": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690S", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934926", + "Spec Code": "SR1QP", + "Ordering Code": "BX80646I54690S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931995": "PCN\n |\n MDDS", + "934926": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932003", + "Spec Code": "SR1QT", + "Ordering Code": "CM8064601561613", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932003": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4785T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932006", + "Spec Code": "SR1QU", + "Ordering Code": "CM8064601561714", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934923", + "Spec Code": "SR1QF", + "Ordering Code": "BX80646I74790", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931976": "PCN\n |\n MDDS", + "934919": "PCN\n |\n MDDS", + "934923": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790S", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934925", + "Spec Code": "SR1QM", + "Ordering Code": "BX80646I74790S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931984": "PCN\n |\n MDDS", + "934925": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931999", + "Spec Code": "SR1QS", + "Ordering Code": "CM8064601561513", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931999": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4110E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932849", + "Spec Code": "SR1T2", + "Ordering Code": "CL8064701589005", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4110M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "Scalability": "1S Only", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931065", + "Spec Code": "SR1L7", + "Ordering Code": "CW8064701486708", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931065": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4112E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932845", + "Spec Code": "SR1T0", + "Ordering Code": "CL8064701588505", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932845": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931062", + "Spec Code": "SR1L4", + "Ordering Code": "CW8064701486601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931062": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4410E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932853", + "Spec Code": "SR1T4", + "Ordering Code": "CL8064701589205", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4422E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932847", + "Spec Code": "SR1T1", + "Ordering Code": "CL8064701588605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932847": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4710HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931920", + "Spec Code": "SR1PX", + "Ordering Code": "CL8064701472304", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931920": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4710MQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931913", + "Spec Code": "SR1PQ", + "Ordering Code": "CW8064701473404", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931913": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4712HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931922", + "Spec Code": "SR1PZ", + "Ordering Code": "CL8064701472704", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4712MQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931915", + "Spec Code": "SR1PS", + "Ordering Code": "CW8064701473804", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4310M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4340M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931058", + "Spec Code": "SR1L0", + "Ordering Code": "CW8064701486401", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931058": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4610M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (DP)‡": "30Hz at 4096x2160", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4810MQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931918", + "Spec Code": "SR1PV", + "Ordering Code": "CW8064701474405", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931918": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4910MQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935039", + "Spec Code": "SR1PT", + "Ordering Code": "BX80647I74910MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931916": "PCN\n |\n MDDS", + "935039": "PCN" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4940MX", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "57 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4000M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930782", + "Spec Code": "SR1HC", + "Ordering Code": "CW8064701486802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930782": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4100E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929207", + "Spec Code": "SR17N", + "Ordering Code": "CL8064701484002", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929207": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4100M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930781", + "Spec Code": "SR1HB", + "Ordering Code": "CW8064701486707", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930781": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4102E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929210", + "Spec Code": "SR17R", + "Ordering Code": "CL8064701528601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929210": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4330", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931873", + "Spec Code": "SR1NM", + "Ordering Code": "BXC80646I34330", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931586": "PCN\n |\n MDDS", + "931871": "PCN\n |\n MDDS", + "931873": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4330T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4 C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931584", + "Spec Code": "SR1NK", + "Ordering Code": "CM8064601481930", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931584": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4330TE", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929227", + "Spec Code": "SR180", + "Ordering Code": "CM8064601484402", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929227": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4340", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931872", + "Spec Code": "SR1NL", + "Ordering Code": "BXC80646I34340", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931585": "PCN\n |\n MDDS", + "931870": "PCN", + "931872": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200H", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928034", + "Spec Code": "SR15G", + "Ordering Code": "CL8064701470601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928034": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930780", + "Spec Code": "SR1HA", + "Ordering Code": "CW8064701486606", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930780": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931887", + "Spec Code": "SR1H9", + "Ordering Code": "BX80647I54300M", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930779": "PCN\n |\n MDDS", + "931887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4330M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930778", + "Spec Code": "SR1H8", + "Ordering Code": "CW8064701486406", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930778": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4400E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929206", + "Spec Code": "SR17M", + "Ordering Code": "CL8064701483902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929206": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4402E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929209", + "Spec Code": "SR17Q", + "Ordering Code": "CL8064701528501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929209": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4440", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931233", + "Spec Code": "SR14F", + "Ordering Code": "BXC80646I54440", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927940": "PCN\n |\n MDDS", + "931230": "PCN\n |\n MDDS", + "931233": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4440S", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931231", + "Spec Code": "SR14L", + "Ordering Code": "BX80646I54440S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927956": "PCN\n |\n MDDS", + "931231": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4600M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930777", + "Spec Code": "SR1H7", + "Ordering Code": "CW8064701486306", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930777": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4771", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931234", + "Spec Code": "SR1BW", + "Ordering Code": "BXC80646I74771", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930209": "PCN\n |\n MDDS", + "931232": "PCN\n |\n MDDS", + "931234": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4430", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928644", + "Spec Code": "SR14G", + "Ordering Code": "BXC80646I54430", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927942": "PCN\n |\n MDDS", + "928637": "PCN\n |\n MDDS", + "928644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4430S", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927958", + "Spec Code": "SR14M", + "Ordering Code": "CM8064601465803", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928643", + "Spec Code": "SR14E", + "Ordering Code": "BXC80646I54570", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927938": "PCN\n |\n MDDS", + "928636": "PCN\n |\n MDDS", + "928643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570S", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928640", + "Spec Code": "SR14J", + "Ordering Code": "BX80646I54570S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927951": "PCN\n |\n MDDS", + "928640": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931498", + "Spec Code": "SR1CA", + "Ordering Code": "BXC80646I54570T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927968": "PCN\n |\n MDDS", + "930388": "PCN\n |\n MDDS", + "931496": "PCN\n |\n MDDS", + "931498": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4570TE", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm (LGA 1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929226", + "Spec Code": "SR17Z", + "Ordering Code": "CM8064601484301", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929226": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928642", + "Spec Code": "SR14D", + "Ordering Code": "BXC80646I54670", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927936": "PCN\n |\n MDDS", + "928635": "PCN\n |\n MDDS", + "928642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670K", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928665", + "Spec Code": "SR14A", + "Ordering Code": "BXC80646I54670K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927930": "PCN\n |\n MDDS", + "928663": "PCN\n |\n MDDS", + "928664": "PCN\n |\n MDDS", + "928665": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670S", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927953", + "Spec Code": "SR14K", + "Ordering Code": "CM8064601465703", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927953": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927963", + "Spec Code": "SR14P", + "Ordering Code": "CM8064601466003", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4700EQ", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929205", + "Spec Code": "SR17L", + "Ordering Code": "CL8064701483802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929205": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4700HQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928032", + "Spec Code": "SR15E", + "Ordering Code": "CL8064701470302", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4700MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928035", + "Spec Code": "SR15H", + "Ordering Code": "CW8064701470702", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4702HQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928033", + "Spec Code": "SR15F", + "Ordering Code": "CL8064701470403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4702MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928036", + "Spec Code": "SR15J", + "Ordering Code": "CW8064701470802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4765T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927966", + "Spec Code": "SR14Q", + "Ordering Code": "CM8064601466200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928641", + "Spec Code": "SR149", + "Ordering Code": "BXC80646I74770", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927928": "PCN\n |\n MDDS", + "928634": "PCN\n |\n MDDS", + "928641": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770K", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928552", + "Spec Code": "SR147", + "Ordering Code": "BXC80646I74770K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927924": "PCN\n |\n MDDS", + "928550": "PCN\n |\n MDDS", + "928551": "PCN\n |\n MDDS", + "928552": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770S", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928639", + "Spec Code": "SR14H", + "Ordering Code": "BX80646I74770S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927944": "PCN\n |\n MDDS", + "928639": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927960", + "Spec Code": "SR14N", + "Ordering Code": "CM8064601465902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4770TE", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm (LGA1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929231", + "Spec Code": "SR183", + "Ordering Code": "CM8064601538900", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929231": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4800MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928790", + "Spec Code": "SR15L", + "Ordering Code": "BX80647I74800MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928038": "PCN\n |\n MDDS", + "928790": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4900MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928789", + "Spec Code": "SR15K", + "Ordering Code": "BX80647I74900MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928037": "PCN\n |\n MDDS", + "928789": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4930MX", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "57 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928039", + "Spec Code": "SR15M", + "Ordering Code": "CW8064701471101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928039": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1268LV3", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm (LGA1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929225", + "Spec Code": "SR17Y", + "Ordering Code": "CM8064601484200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929225": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4170", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943022", + "Spec Code": "SR1PL", + "Ordering Code": "BX80646I34170", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931903": "PCN\n |\n MDDS", + "943018": "PCN\n |\n MDDS", + "943022": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4170T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932978", + "Spec Code": "SR1TC", + "Ordering Code": "CM8064601483551", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4160", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937629", + "Spec Code": "SR1PK", + "Ordering Code": "BXC80646I34160", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931900": "PCN\n |\n MDDS", + "937628": "PCN\n |\n MDDS", + "937629": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4160T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945262", + "Spec Code": "SR1PH", + "Ordering Code": "BXC80646I34160T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931898": "PCN\n |\n MDDS", + "945262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4150", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934922", + "Spec Code": "SR1PJ", + "Ordering Code": "BX80646I34150", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931899": "PCN\n |\n MDDS", + "934918": "PCN\n |\n MDDS", + "934922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4150T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "940388", + "Spec Code": "SR1PG", + "Ordering Code": "BXC80646I34150T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931897": "PCN\n |\n MDDS", + "940388": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4025U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930624", + "Spec Code": "SR1EQ", + "Ordering Code": "CL8064701553401", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4030U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930622", + "Spec Code": "SR1EN", + "Ordering Code": "CL8064701552900", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4120U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930623", + "Spec Code": "SR1EP", + "Ordering Code": "CL8064701553300", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930623": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930615", + "Spec Code": "SR1EF", + "Ordering Code": "CL8064701477802", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930615": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4510U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930611", + "Spec Code": "SR1EB", + "Ordering Code": "CL8064701477301", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930611": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4310U", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930614", + "Spec Code": "SR1EE", + "Ordering Code": "CL8064701477600", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930614": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4005U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930619", + "Spec Code": "SR1EK", + "Ordering Code": "CL8064701478404", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930619": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4130", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931867", + "Spec Code": "SR1NP", + "Ordering Code": "BXC80646I34130", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931588": "PCN\n |\n MDDS", + "931865": "PCN\n |\n MDDS", + "931867": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4130T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4 C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931866", + "Spec Code": "SR1NN", + "Ordering Code": "BXC80646I34130T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931587": "PCN\n |\n MDDS", + "931864": "PCN", + "931866": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930613", + "Spec Code": "SR1ED", + "Ordering Code": "CL8064701477400", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4600U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930610", + "Spec Code": "SR1EA", + "Ordering Code": "CL8064701477000", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929013", + "Spec Code": "SR16Q", + "Ordering Code": "CL8064701478202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4100U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929012", + "Spec Code": "SR16P", + "Ordering Code": "CL8064701476302", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929032", + "Spec Code": "SR170", + "Ordering Code": "CL8064701477702", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4500U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929029", + "Spec Code": "SR16Z", + "Ordering Code": "CL8064701477202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929029": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4030Y", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930491", + "Spec Code": "SR1DD", + "Ordering Code": "CL8064701570500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930491": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4220Y", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930488", + "Spec Code": "SR1DB", + "Ordering Code": "CL8064701570400", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4012Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930343", + "Spec Code": "SR1C7", + "Ordering Code": "CL8064701573500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930343": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4020Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930489", + "Spec Code": "SR1DC", + "Ordering Code": "CL8064701512402", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930489": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4202Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929528", + "Spec Code": "SR190", + "Ordering Code": "CL8064701558401", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929528": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.90 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929529", + "Spec Code": "SR191", + "Ordering Code": "CL8064701558501", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929529": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929531", + "Spec Code": "SR192", + "Ordering Code": "CL8064701558601", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4302Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4610Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929316", + "Spec Code": "SR18D", + "Ordering Code": "CL8064701512303", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929316": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929318", + "Spec Code": "SR18F", + "Ordering Code": "CL8064701512503", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929508", + "Spec Code": "SR18T", + "Ordering Code": "CL8064701557900", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929508": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3245", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929495", + "Spec Code": "SR0YL", + "Ordering Code": "BX80637I33245", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923838": "PCN\n |\n MDDS", + "929495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3130M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923704", + "Spec Code": "SR0XD", + "Ordering Code": "AV8063801111900", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923704": "PCN\n |\n MDDS", + "923703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3227U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923708", + "Spec Code": "SR0XF", + "Ordering Code": "AV8063801119500", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923708": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3230M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923667", + "Spec Code": "SR0WX", + "Ordering Code": "AV8063801110901", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3230M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923668", + "Spec Code": "SR0WY", + "Ordering Code": "AW8063801208001", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923668": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3337U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923714", + "Spec Code": "SR0XL", + "Ordering Code": "AV8063801129900", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923714": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3340M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927186", + "Spec Code": "SR0XA", + "Ordering Code": "BX80638I53340M", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923702": "PCN\n |\n MDDS", + "923701": "PCN\n |\n MDDS", + "927186": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3380M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927185", + "Spec Code": "SR0X7", + "Ordering Code": "BX80638I53380M", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923700": "PCN\n |\n MDDS", + "923691": "PCN\n |\n MDDS", + "927185": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3437U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923705", + "Spec Code": "SR0XE", + "Ordering Code": "AV8063801119300", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923705": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3537U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923709", + "Spec Code": "SR0XG", + "Ordering Code": "AV8063801119700", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923709": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3540M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923699", + "Spec Code": "SR0X8", + "Ordering Code": "AV8063801109800", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923699": "PCN\n |\n MDDS", + "923690": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3687U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923711", + "Spec Code": "SR0XH", + "Ordering Code": "AV8063801119903", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923711": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3229Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926930", + "Spec Code": "SR12P", + "Ordering Code": "AV8063801378000", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "926930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3339Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926933", + "Spec Code": "SR12S", + "Ordering Code": "AV8063801433100", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926933": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3439Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926931", + "Spec Code": "SR12Q", + "Ordering Code": "AV8063801378103", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926931": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3689Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926932", + "Spec Code": "SR12R", + "Ordering Code": "AV8063801378203", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3120M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921876", + "Spec Code": "SR0TX", + "Ordering Code": "AW8063801111700", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921876": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3630QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922209", + "Spec Code": "SR0UX", + "Ordering Code": "AW8063801106200", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922209": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3632QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3632QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922212", + "Spec Code": "SR0V0", + "Ordering Code": "AW8063801152800", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922212": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3635QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3740QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923336", + "Spec Code": "SR0UV", + "Ordering Code": "BX80638I73740QM", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922207": "PCN\n |\n MDDS", + "923336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3840QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922205", + "Spec Code": "SR0UT", + "Ordering Code": "AW8063801103800", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922205": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3940XM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922204", + "Spec Code": "SR0US", + "Ordering Code": "AW8063801103501", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922204": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3225", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921375", + "Spec Code": "SR0RF", + "Ordering Code": "BX80637I33225", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920962": "PCN\n |\n MDDS", + "921363": "PCN", + "921375": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-3120ME", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC support on BGA package only", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923001", + "Spec Code": "SR0WM", + "Ordering Code": "AW8063801117902", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923001": "PCN\n |\n MDDS", + "923000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-3217UE", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923002", + "Spec Code": "SR0WN", + "Ordering Code": "AV8063801149502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3110M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921352", + "Spec Code": "SR0T4", + "Ordering Code": "AW8063801211101", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919700": "PCN\n |\n MDDS", + "919699": "PCN\n |\n MDDS", + "921352": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i5-3610ME", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC memory support only on BGA package", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mmx 37.5mm PGA", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920312", + "Spec Code": "SR0QJ", + "Ordering Code": "AW8063801115901", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920313": "PCN\n |\n MDDS", + "920312": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3517UE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921368", + "Spec Code": "SR0T6", + "Ordering Code": "AV8063801149402", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921368": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3555LE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "550 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921365", + "Spec Code": "SR0T5", + "Ordering Code": "AV8063801116903", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921365": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3210M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919698", + "Spec Code": "SR0N0", + "Ordering Code": "AV8063801032502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919698": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3210M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919697", + "Spec Code": "SR0MZ", + "Ordering Code": "AW8063801032301", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3317U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919706", + "Spec Code": "SR0N8", + "Ordering Code": "AV8063801058002", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919706": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3320M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921380", + "Spec Code": "SR0MX", + "Ordering Code": "BX80638I53320M", + "Shipping Media": "BOX", + "Stepping": "L2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919672": "PCN\n |\n MDDS", + "919671": "PCN\n |\n MDDS", + "921380": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3360M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921379", + "Spec Code": "SR0MV", + "Ordering Code": "BX80638I53360M", + "Shipping Media": "BOX", + "Stepping": "L2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919670": "PCN\n |\n MDDS", + "919669": "PCN\n |\n MDDS", + "921379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3427U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919705", + "Spec Code": "SR0N7", + "Ordering Code": "AV8063801057801", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919705": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3475S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919996", + "Spec Code": "SR0PP", + "Ordering Code": "CM8063701212000", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919996": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3517U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919704", + "Spec Code": "SR0N6", + "Ordering Code": "AV8063801057605", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919704": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3520M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919668", + "Spec Code": "SR0MU", + "Ordering Code": "AV8063801028803", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919668": "PCN\n |\n MDDS", + "919667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3667U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919703", + "Spec Code": "SR0N5", + "Ordering Code": "AV8063801057405", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570K", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920515", + "Spec Code": "SR0PM", + "Ordering Code": "BX80637I53570K", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919978": "PCN\n |\n MDDS", + "920515": "PCN\n |\n MDDS", + "920865": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3610QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.23 GB", + "Memory Types": "DDR3 1067/1333/1600, DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0 (16), 2.0 (1x4 lanes)", + "PCI Express Configurations ‡": "1x16 2x8 1X8 2x4 1x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mmx 37.5mm PGA", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919875", + "Spec Code": "SR0NP", + "Ordering Code": "AW8063801118306", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3610QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919646", + "Spec Code": "SR0MN", + "Ordering Code": "AW8063801013511", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3612QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.11 GB", + "Memory Types": "DDR3/DDR3L 1067/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm (BGA 1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919819", + "Spec Code": "SR0ND", + "Ordering Code": "AV8063801149203", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3612QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919652", + "Spec Code": "SR0MR", + "Ordering Code": "AV8063801130704", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919652": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3612QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919651", + "Spec Code": "SR0MQ", + "Ordering Code": "AW8063801130504", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919651": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3615QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.11 GB", + "Memory Types": "DDR3/DDR3L 1067/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm (BGA 1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919818", + "Spec Code": "SR0NC", + "Ordering Code": "AV8063801117503", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3615QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919647", + "Spec Code": "SR0MP", + "Ordering Code": "AV8063801013612", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919647": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3720QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919645", + "Spec Code": "SR0MM", + "Ordering Code": "AV8063801013210", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919645": "PCN\n |\n MDDS", + "919644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920501", + "Spec Code": "SR0PK", + "Ordering Code": "BX80637I73770", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919976": "PCN\n |\n MDDS", + "920501": "PCN\n |\n MDDS", + "920818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770K", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920492", + "Spec Code": "SR0PL", + "Ordering Code": "BX80637I73770K", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919977": "PCN\n |\n MDDS", + "920492": "PCN\n |\n MDDS", + "920800": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920503", + "Spec Code": "SR0PN", + "Ordering Code": "BX80637I73770S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919995": "PCN\n |\n MDDS", + "920503": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919997", + "Spec Code": "SR0PQ", + "Ordering Code": "CM8063701212200", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919997": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3820QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919643", + "Spec Code": "SR0MK", + "Ordering Code": "AV8063801012807", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919643": "PCN\n |\n MDDS", + "919642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3920XM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921341", + "Spec Code": "SR0T2", + "Ordering Code": "AW8063801009607", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921341": "PCN\n |\n MDDS", + "919641": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2348M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2328M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921411", + "Spec Code": "SR0TC", + "Ordering Code": "FF8062701275100", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921411": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2370M", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916670", + "Spec Code": "SR0DP", + "Ordering Code": "FF8062700996006", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916670": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2450M", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915343", + "Spec Code": "SR0CH", + "Ordering Code": "FF8062700995606", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "910489": "MDDS", + "915343": "PCN\n |\n MDDS", + "911106": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2700K", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919177", + "Spec Code": "SR0DG", + "Ordering Code": "BX80623I72700K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "916537": "PCN", + "919177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2350M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916669", + "Spec Code": "SR0DN", + "Ordering Code": "FF8062700995906", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916669": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2367M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915520", + "Spec Code": "SR0CV", + "Ordering Code": "AV8062701047904", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2430M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910486", + "Spec Code": "SR04W", + "Ordering Code": "FF8062700995505", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2435M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911105", + "Spec Code": "SR06Y", + "Ordering Code": "AV8062700995706", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911105": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2670QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5 (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910247", + "Spec Code": "SR02N", + "Ordering Code": "FF8062701065500", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2675QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910242", + "Spec Code": "SR02S", + "Ordering Code": "AV8062701065600", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910242": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2125", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917757", + "Spec Code": "SR0AY", + "Ordering Code": "BXC80623I32125", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912514": "PCN", + "917704": "PCN\n |\n MDDS", + "917757": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2640M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910455", + "Spec Code": "SR043", + "Ordering Code": "AV8062700839107", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910397": "PCN\n |\n MDDS", + "910455": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2760QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910246", + "Spec Code": "SR02W", + "Ordering Code": "FF8062701065300", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910246": "PCN\n |\n MDDS", + "910241": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2860QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910255", + "Spec Code": "SR02X", + "Ordering Code": "FF8062701065100", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910255": "PCN\n |\n MDDS", + "910240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2960XM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909772", + "Spec Code": "SR02F", + "Ordering Code": "FF8062700834603", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2330E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 1x4, 2x8 1x4, 1x8 3x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910245", + "Spec Code": "SR02V", + "Ordering Code": "FF8062700849000", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910245": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2330M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910470", + "Spec Code": "SR04L", + "Ordering Code": "AV8062700846806", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910468": "PCN\n |\n MDDS", + "910470": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-2340UE", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C (BGA)", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911600", + "Spec Code": "SR074", + "Ordering Code": "AV8062700849710", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "911600": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2357M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2467M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915947", + "Spec Code": "SR0D6", + "Ordering Code": "AV8062701047504", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2557M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915517", + "Spec Code": "SR0CS", + "Ordering Code": "AV8062701047204", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915517": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2637M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915745", + "Spec Code": "SR0D3", + "Ordering Code": "AV8062701041105", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2677M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915744", + "Spec Code": "SR0D2", + "Ordering Code": "AV8062701041005", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915744": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2405S", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155, FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914621", + "Spec Code": "SR0BB", + "Ordering Code": "BX80623I52405S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "912781": "PCN", + "914621": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2105", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q4'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914937", + "Spec Code": "SR0BA", + "Ordering Code": "BX80623I32105", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912779": "PCN", + "914936": "PCN\n |\n MDDS", + "914937": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2312M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "TJUNCTION": "85 C", + "Package Size": "37.5mm x 37.5mm *rPGA988B);", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "912382", + "Spec Code": "SR09S", + "Ordering Code": "FF8062701084601", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912382": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2610UE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911599", + "Spec Code": "SR079", + "Ordering Code": "AV8062700849607", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911599": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2655LE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911598", + "Spec Code": "SR078", + "Ordering Code": "AV8062700849508", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911598": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2310M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm *rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910495", + "Spec Code": "SR04S", + "Ordering Code": "AV8062700999605", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910495": "PCN\n |\n MDDS", + "910494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2410M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910466", + "Spec Code": "SR04G", + "Ordering Code": "AV8062700845406", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910466": "PCN\n |\n MDDS", + "910464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2510E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910244", + "Spec Code": "SR02U", + "Ordering Code": "FF8062700853304", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910244": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i5-2515E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911601", + "Spec Code": "SR075", + "Ordering Code": "AV8062700853208", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911601": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2520M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910460", + "Spec Code": "SR048", + "Ordering Code": "FF8062700840017", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910460": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2537M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24 mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910402", + "Spec Code": "SR03W", + "Ordering Code": "AV8062701047107", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910402": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2540M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911159", + "Spec Code": "SR044", + "Ordering Code": "BX80627I52540M", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910458": "PCN\n |\n MDDS", + "910456": "PCN\n |\n MDDS", + "911159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2617M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910399", + "Spec Code": "SR03T", + "Ordering Code": "AV8062701040904", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910399": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2620M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910454", + "Spec Code": "SR041", + "Ordering Code": "AV8062700839009", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910396": "PCN\n |\n MDDS", + "910454": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2629M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910474", + "Spec Code": "SR04D", + "Ordering Code": "AV8062700851111", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910474": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2649M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910472", + "Spec Code": "SR04N", + "Ordering Code": "AV8062700850010", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910472": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2657M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910398", + "Spec Code": "SR03S", + "Ordering Code": "AV8062701040804", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500K", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910685", + "Spec Code": "SR008", + "Ordering Code": "BXC80623I52500K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909498": "PCN", + "910679": "PCN\n |\n MDDS", + "910685": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600K", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910681", + "Spec Code": "SR00C", + "Ordering Code": "BX80623I72600K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909542": "PCN", + "910681": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2630QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5 (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910294", + "Spec Code": "SR02Y", + "Ordering Code": "FF8062700837005", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910294": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2635QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910296", + "Spec Code": "SR030", + "Ordering Code": "AV8062700837205", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910296": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2710QE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910243", + "Spec Code": "SR02T", + "Ordering Code": "FF8062700841002", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910243": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2715QE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911594", + "Spec Code": "SR076", + "Ordering Code": "AV8062700843908", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911594": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2720QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909673", + "Spec Code": "SR014", + "Ordering Code": "FF8062700835817", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909673": "PCN\n |\n MDDS", + "909664": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2820QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911079", + "Spec Code": "SR012", + "Ordering Code": "BX80627I72820QM", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909661": "PCN\n |\n MDDS", + "909671": "PCN\n |\n MDDS", + "911079": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2920XM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909762", + "Spec Code": "SR02E", + "Ordering Code": "FF8062700834406", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909762": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-2310E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C (BGA)", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911597", + "Spec Code": "SR077", + "Ordering Code": "AV8062700849116", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "911597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3340", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931501", + "Spec Code": "SR0YZ", + "Ordering Code": "BX80637I53340", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923857": "PCN\n |\n MDDS", + "931499": "PCN\n |\n MDDS", + "931501": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3340S", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931500", + "Spec Code": "SR0YH", + "Ordering Code": "BX80637I53340S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923835": "PCN\n |\n MDDS", + "931500": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3250", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929486", + "Spec Code": "SR0YX", + "Ordering Code": "BX80637I33250", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923854": "PCN\n |\n MDDS", + "929482": "PCN", + "929486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3250T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923853", + "Spec Code": "SR0YW", + "Ordering Code": "CM8063701391800", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3210", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926166", + "Spec Code": "SR0YY", + "Ordering Code": "BX80637I33210", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923855": "PCN\n |\n MDDS", + "926157": "PCN", + "926166": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3220", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921364", + "Spec Code": "SR0RG", + "Ordering Code": "BXC80637I33220", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920964": "PCN\n |\n MDDS", + "921327": "PCN\n |\n MDDS", + "921364": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3220T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921366", + "Spec Code": "SR0RE", + "Ordering Code": "BXC80637I33220T", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920955": "PCN\n |\n MDDS", + "921333": "PCN\n |\n MDDS", + "921366": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3240", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921334", + "Spec Code": "SR0RH", + "Ordering Code": "BXC80637I33240", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920965": "PCN\n |\n MDDS", + "921288": "PCN\n |\n MDDS", + "921334": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3240T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920967", + "Spec Code": "SR0RK", + "Ordering Code": "CM8063701194400", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3330", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921407", + "Spec Code": "SR0RQ", + "Ordering Code": "BX80637I53330", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921119": "PCN\n |\n MDDS", + "921407": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3330S", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921120", + "Spec Code": "SR0RR", + "Ordering Code": "CM8063701159804", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921120": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921372", + "Spec Code": "SR0T8", + "Ordering Code": "CM8063701093302", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921372": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921374", + "Spec Code": "SR0TA", + "Ordering Code": "CM8063701094000", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921374": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "65.0", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920966", + "Spec Code": "SR0RJ", + "Ordering Code": "CM8063701159502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922461", + "Spec Code": "SR0T7", + "Ordering Code": "BX80637I53570", + "Shipping Media": "BOX", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921371": "PCN\n |\n MDDS", + "922461": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921373", + "Spec Code": "SR0T9", + "Ordering Code": "CM8063701093901", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921373": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1265LV2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920749", + "Spec Code": "SR0PB", + "Ordering Code": "BX80637E31265L2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919968": "PCN\n |\n MDDS", + "920749": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3450", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920877", + "Spec Code": "SR0PF", + "Ordering Code": "BXC80637I53450", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919972": "PCN\n |\n MDDS", + "920526": "PCN\n |\n MDDS", + "920877": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3450S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920531", + "Spec Code": "SR0P2", + "Ordering Code": "BX80637I53450S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919959": "PCN\n |\n MDDS", + "920531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3550", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920872", + "Spec Code": "SR0P0", + "Ordering Code": "BXC80637I53550", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919957": "PCN\n |\n MDDS", + "920521": "PCN\n |\n MDDS", + "920872": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3550S", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919960", + "Spec Code": "SR0P3", + "Ordering Code": "CM8063701095203", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919958", + "Spec Code": "SR0P1", + "Ordering Code": "CM8063701094903", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2120T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917963", + "Spec Code": "SR060", + "Ordering Code": "BXC80623I32120T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910593": "PCN", + "917721": "PCN\n |\n MDDS", + "917963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2130", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917807", + "Spec Code": "SR05W", + "Ordering Code": "BXC80623I32130", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910589": "PCN", + "917720": "PCN\n |\n MDDS", + "917807": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2320", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917684", + "Spec Code": "SR02L", + "Ordering Code": "BX80623I52320", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909899": "PCN", + "917683": "PCN\n |\n MDDS", + "917684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2310", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915575", + "Spec Code": "SR02K", + "Ordering Code": "BX80623I52310", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909897": "PCN", + "915574": "PCN\n |\n MDDS", + "915575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1260L", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "58.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909645", + "Spec Code": "SR00M", + "Ordering Code": "CM8062301061800", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909645": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2102", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915248", + "Spec Code": "SR05D", + "Ordering Code": "BX80623I32102", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910683": "PCN", + "915248": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2100", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911251", + "Spec Code": "SR05C", + "Ordering Code": "BXC80623I32100", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910673": "PCN", + "911243": "PCN\n |\n MDDS", + "911251": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2100T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911250", + "Spec Code": "SR05Z", + "Ordering Code": "BXC80623I32100T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910592": "PCN", + "911242": "PCN\n |\n MDDS", + "911250": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2120", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911249", + "Spec Code": "SR05Y", + "Ordering Code": "BXC80623I32120", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910591": "PCN", + "911241": "PCN\n |\n MDDS", + "911249": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2390T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910564", + "Spec Code": "SR065", + "Ordering Code": "CM8062301002115", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910564": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2300", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910682", + "Spec Code": "SR00D", + "Ordering Code": "BXC80623I52300", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909490": "PCN", + "910677": "PCN\n |\n MDDS", + "910682": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2400", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910684", + "Spec Code": "SR00Q", + "Ordering Code": "BXC80623I52400", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909492": "PCN\n |\n MDDS", + "910678": "PCN\n |\n MDDS", + "910684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2400S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910885", + "Spec Code": "SR00S", + "Ordering Code": "BX80623I52400S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909494": "PCN", + "910885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911288", + "Spec Code": "SR00T", + "Ordering Code": "BX80623I52500", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909496": "PCN", + "911284": "PCN\n |\n MDDS", + "911288": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909500", + "Spec Code": "SR009", + "Ordering Code": "CM8062300835501", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909500": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909512", + "Spec Code": "SR00A", + "Ordering Code": "CM8062301001910", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909512": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910686", + "Spec Code": "SR00B", + "Ordering Code": "BXC80623I72600", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909528": "PCN", + "910680": "PCN\n |\n MDDS", + "910686": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "918078", + "Spec Code": "SR00E", + "Ordering Code": "BX80623I72600S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909566": "PCN", + "918078": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3215U", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939367", + "Spec Code": "SR243", + "Ordering Code": "FH8065801882802", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939367": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3765U", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939366", + "Spec Code": "SR242", + "Ordering Code": "FH8065801620803", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3825U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939531", + "Spec Code": "SR24B", + "Ordering Code": "FH8065801620705", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3205U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937260", + "Spec Code": "SR215", + "Ordering Code": "FH8065801882800", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3755U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937258", + "Spec Code": "SR211", + "Ordering Code": "FH8065801620801", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937258": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3805U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937255", + "Spec Code": "SR210", + "Ordering Code": "FH8065801620702", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937255": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3260", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943020", + "Spec Code": "SR1K8", + "Ordering Code": "BX80646G3260", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931023": "PCN\n |\n MDDS", + "943017": "PCN\n |\n MDDS", + "943020": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3260T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931053", + "Spec Code": "SR1KW", + "Ordering Code": "CM8064601483744", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931053": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3460T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932980", + "Spec Code": "SR1TD", + "Ordering Code": "CM8064601483760", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3470", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930995", + "Spec Code": "SR1K4", + "Ordering Code": "CM8064601482520", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3250", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937651", + "Spec Code": "SR1K7", + "Ordering Code": "BXC80646G3250", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931014": "PCN\n |\n MDDS", + "937649": "PCN", + "937651": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3250T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931049", + "Spec Code": "SR1KV", + "Ordering Code": "CM8064601483718", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931049": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3450T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931047", + "Spec Code": "SR1KT", + "Ordering Code": "CM8064601483714", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3460", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943843", + "Spec Code": "SR1K3", + "Ordering Code": "BXC80646G3460", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930994": "PCN\n |\n MDDS", + "937626": "PCN", + "943843": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3258", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937410", + "Spec Code": "SR1V0", + "Ordering Code": "BXC80646G3258", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934205": "PCN\n |\n MDDS", + "937409": "PCN\n |\n MDDS", + "937410": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1840", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935153", + "Spec Code": "SR1VK", + "Ordering Code": "BXC80646G1840", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934445": "PCN\n |\n MDDS", + "935146": "PCN\n |\n MDDS", + "935153": "PCN\n |\n MDDS", + "932177": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1840T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931027", + "Spec Code": "SR1KA", + "Ordering Code": "CM8064601482618", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931027": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1850", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935152", + "Spec Code": "SR1KH", + "Ordering Code": "BXC80646G1850", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931037": "PCN\n |\n MDDS", + "935145": "PCN\n |\n MDDS", + "935152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3240", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939577", + "Spec Code": "SR1RL", + "Ordering Code": "BXC80646G3240", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932169": "PCN\n |\n MDDS", + "939575": "PCN\n |\n MDDS", + "939577": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3240T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931048", + "Spec Code": "SR1KU", + "Ordering Code": "CM8064601483722", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931048": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3440", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934960", + "Spec Code": "SR1P9", + "Ordering Code": "BX80646G3440", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931883": "PCN\n |\n MDDS", + "934960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3440T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931046", + "Spec Code": "SR1KS", + "Ordering Code": "CM8064601483717", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931046": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3450", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934921", + "Spec Code": "SR1K2", + "Ordering Code": "BX80646G3450", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930993": "PCN\n |\n MDDS", + "934921": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1275LV3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "10", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932879", + "Spec Code": "SR1T7", + "Ordering Code": "CM8064601575224", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932879": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2970M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931080", + "Spec Code": "SR1LF", + "Ordering Code": "CW8064701487001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3560M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931077", + "Spec Code": "SR1LC", + "Ordering Code": "CW8064701486906", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931077": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "2000E", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929211", + "Spec Code": "SR17S", + "Ordering Code": "CL8064701528700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929211": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "2002E", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929208", + "Spec Code": "SR17P", + "Ordering Code": "CL8064701484102", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929208": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "G1820TE", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929230", + "Spec Code": "SR182", + "Ordering Code": "CM8064601484601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932857": "PCN\n |\n MDDS", + "929230": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1820", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933534", + "Spec Code": "SR1CN", + "Ordering Code": "BXC80646G1820", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930400": "PCN\n |\n MDDS", + "933529": "PCN\n |\n MDDS", + "933534": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1820T", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930401", + "Spec Code": "SR1CP", + "Ordering Code": "CM8064601482617", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930401": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G1830", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933535", + "Spec Code": "SR1NC", + "Ordering Code": "BXC80646G1830", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931425": "PCN\n |\n MDDS", + "933531": "PCN\n |\n MDDS", + "933535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2957U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930548", + "Spec Code": "SR1DV", + "Ordering Code": "CL8064701570000", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2961Y", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2981U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3558U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930608", + "Spec Code": "SR1E8", + "Ordering Code": "CL8064701569500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3561Y", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930505", + "Spec Code": "SR1DG", + "Ordering Code": "CL8064701568201", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2950M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930785", + "Spec Code": "SR1HF", + "Ordering Code": "CW8064701487007", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930785": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2955U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930547", + "Spec Code": "SR1DU", + "Ordering Code": "CL8064701567500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929023": "PCN\n |\n MDDS", + "930547": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 2000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "2980U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930540", + "Spec Code": "SR1DM", + "Ordering Code": "CL8064701479801", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3550M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930783", + "Spec Code": "SR1HD", + "Ordering Code": "CW8064701486907", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930783": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3556U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3560Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3220", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933388", + "Spec Code": "SR1RK", + "Ordering Code": "BXC80646G3220", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930394": "PCN\n |\n MDDS", + "931505": "PCN\n |\n MDDS", + "931509": "PCN\n |\n MDDS", + "932168": "PCN\n |\n MDDS", + "933386": "PCN\n |\n MDDS", + "933388": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3220T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930398", + "Spec Code": "SR1CL", + "Ordering Code": "CM8064601483713", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "G3320TE", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "1", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929229", + "Spec Code": "SR181", + "Ordering Code": "CM8064601484501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929229": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3420", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931869", + "Spec Code": "SR1NB", + "Ordering Code": "BX80646G3420", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931424": "PCN\n |\n MDDS", + "931868": "PCN", + "931869": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3420T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930397", + "Spec Code": "SR1CK", + "Ordering Code": "CM8064601483712", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930397": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3430", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931506", + "Spec Code": "SR1CE", + "Ordering Code": "BX80646G3430", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930392": "PCN\n |\n MDDS", + "931503": "PCN\n |\n MDDS", + "931506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1265Lv3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928007", + "Spec Code": "SR15A", + "Ordering Code": "CM8064601467406", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1620T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928911", + "Spec Code": "SR169", + "Ordering Code": "CM8063701448300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928911": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1630", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931518", + "Spec Code": "SR16A", + "Ordering Code": "BX80637G1630", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928912": "PCN\n |\n MDDS", + "931518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "A1018", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934402", + "Spec Code": "SR1V6", + "Ordering Code": "AW8063801567000", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930338": "MDDS", + "934402": "PCN\n |\n MDDS", + "930300": "MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1005M", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924817", + "Spec Code": "SR103", + "Ordering Code": "AW8063801121200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1017U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924824", + "Spec Code": "SR10A", + "Ordering Code": "AV8063801130300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2127U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924819", + "Spec Code": "SR105", + "Ordering Code": "AV8063801119100", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2030", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929489", + "Spec Code": "SR163", + "Ordering Code": "BX80637G2030", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928905": "PCN\n |\n MDDS", + "929485": "PCN\n |\n MDDS", + "929489": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2030T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928906", + "Spec Code": "SR164", + "Ordering Code": "CM8063701450500", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928906": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2120T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923852", + "Spec Code": "SR0YV", + "Ordering Code": "CM8063701391600", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923852": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2140", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929488", + "Spec Code": "SR0YT", + "Ordering Code": "BX80637G2140", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923850": "PCN\n |\n MDDS", + "929484": "PCN\n |\n MDDS", + "929488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1019Y", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.00 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927663", + "Spec Code": "SR13W", + "Ordering Code": "AV8063801443502", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "927663": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1000M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924816", + "Spec Code": "SR102", + "Ordering Code": "AW8063801120200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924816": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1007U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924823", + "Spec Code": "SR109", + "Ordering Code": "AV8063801118700", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "1020E", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC on BGA only", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924832", + "Spec Code": "SR10D", + "Ordering Code": "AW8063801117700", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924832": "PCN\n |\n MDDS", + "922855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1020M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927649", + "Spec Code": "SR13U", + "Ordering Code": "AW8063801524200", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "927649": "PCN\n |\n MDDS", + "924812": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "1037U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924822", + "Spec Code": "SR108", + "Ordering Code": "AV8063801442900", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "1047UE", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "BGA1023 31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "924835", + "Spec Code": "SR10E", + "Ordering Code": "AV8063801116300", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924835": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "927UE", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105", + "Package Size": "BGA1023 31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Intel® My WiFi Technology": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "924842", + "Spec Code": "SR10F", + "Ordering Code": "AV8063801129600", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1610", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926196", + "Spec Code": "SR10K", + "Ordering Code": "BX80637G1610", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924945": "PCN\n |\n MDDS", + "926192": "PCN\n |\n MDDS", + "926196": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1610T", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924947", + "Spec Code": "SR10M", + "Ordering Code": "CM8063701445100", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G1620", + "Status": "Launched", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926197", + "Spec Code": "SR10L", + "Ordering Code": "BX80637G1620", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924946": "PCN\n |\n MDDS", + "926193": "PCN\n |\n MDDS", + "926197": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2030M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924813", + "Spec Code": "SR0ZZ", + "Ordering Code": "AW8063801120500", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924813": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2010", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926160", + "Spec Code": "SR10J", + "Ordering Code": "BX80637G2010", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924944": "PCN\n |\n MDDS", + "926153": "PCN\n |\n MDDS", + "926160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2020", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926161", + "Spec Code": "SR10H", + "Ordering Code": "BX80637G2020", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924943": "PCN\n |\n MDDS", + "926154": "PCN\n |\n MDDS", + "926161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2020T", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924942", + "Spec Code": "SR10G", + "Ordering Code": "CM8063701444601", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2130", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926163", + "Spec Code": "SR0YU", + "Ordering Code": "BX80637G2130", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923851": "PCN\n |\n MDDS", + "926155": "PCN\n |\n MDDS", + "926163": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2129Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926928", + "Spec Code": "SR12M", + "Ordering Code": "AV8063801377901", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "926928": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2020M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921884", + "Spec Code": "SR0U1", + "Ordering Code": "AW8063801211202", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2117U", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922752", + "Spec Code": "SR0VQ", + "Ordering Code": "AV8063801058800", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2100T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922114", + "Spec Code": "SR0UJ", + "Ordering Code": "CM8063701219000", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2120", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923124", + "Spec Code": "SR0UF", + "Ordering Code": "BX80637G2120", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922107": "PCN\n |\n MDDS", + "923124": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G470", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929505", + "Spec Code": "SR0S7", + "Ordering Code": "BX80623G470", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921189": "PCN", + "929505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "887", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922540", + "Spec Code": "SR0VA", + "Ordering Code": "AV8062701085401", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B830", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918111", + "Spec Code": "SR0HR", + "Ordering Code": "FF8062700848702", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918111": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "997", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922535", + "Spec Code": "SR0V5", + "Ordering Code": "AV8062701084801", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G465", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923614", + "Spec Code": "SR0S8", + "Ordering Code": "BXC80623G465", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921191": "PCN", + "923611": "PCN\n |\n MDDS", + "923614": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G550T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910588", + "Spec Code": "SR05V", + "Ordering Code": "CM8062301002309", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910588": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G555", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923613", + "Spec Code": "SR0RZ", + "Ordering Code": "BXC80623G555", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921173": "PCN", + "923612": "PCN\n |\n MDDS", + "923613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G645", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923842", + "Spec Code": "SR0RS", + "Ordering Code": "BXC80623G645", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921159": "PCN", + "923841": "PCN\n |\n MDDS", + "923842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G645T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921175", + "Spec Code": "SR0S0", + "Ordering Code": "CM8062301263701", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921175": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "807", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "920166", + "Spec Code": "SR0PW", + "Ordering Code": "AV8062701079702", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920166": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "877", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B820", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918110", + "Spec Code": "SR0HQ", + "Ordering Code": "FF8062700848602", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918110": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B980", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918121", + "Spec Code": "SR0J1", + "Ordering Code": "FF8062700997802", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918121": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G540T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910660", + "Spec Code": "SR05L", + "Ordering Code": "CM8062301047004", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910660": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G550", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922826", + "Spec Code": "SR061", + "Ordering Code": "BX80623G550", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910560": "PCN", + "922823": "PCN\n |\n MDDS", + "922826": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G640", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922825", + "Spec Code": "SR059", + "Ordering Code": "BX80623G640", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910556": "PCN", + "922822": "PCN\n |\n MDDS", + "922825": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G640T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922827", + "Spec Code": "SR066", + "Ordering Code": "BX80623G640T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910565": "PCN", + "922827": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G860T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5 x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919594", + "Spec Code": "SR0MF", + "Ordering Code": "CM8062301198300", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919594": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G870", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922824", + "Spec Code": "SR057", + "Ordering Code": "BX80623G870", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910526": "PCN", + "922824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "797", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "867", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B720", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.70 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B815", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918119", + "Spec Code": "SR0HZ", + "Ordering Code": "FF8062701159901", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "977", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916823", + "Spec Code": "SR0FB", + "Ordering Code": "AV8062701147701", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B970", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "918122", + "Spec Code": "SR0J2", + "Ordering Code": "FF8062700998002", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918122": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G460", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919736", + "Spec Code": "SR0GR", + "Ordering Code": "BXC80623G460", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "917794": "PCN", + "919618": "PCN\n |\n MDDS", + "919736": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "807UE", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "1 MB Intel® Smart Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4.88 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100°C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "919712", + "Spec Code": "SR0NB", + "Ordering Code": "AV8062701188200", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919712": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "967", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B960", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914938", + "Spec Code": "SR0C9", + "Ordering Code": "FF8062701123900", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914938": "PCN\n |\n MDDS", + "912313": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B840", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916703", + "Spec Code": "SR0EN", + "Ordering Code": "FF8062700998301", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G440", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2012", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917154", + "Spec Code": "SR0BY", + "Ordering Code": "BX80623G440", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914611": "PCN", + "917150": "PCN\n |\n MDDS", + "917154": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G530", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916625", + "Spec Code": "SR05H", + "Ordering Code": "BXC80623G530", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910600": "PCN", + "916624": "PCN\n |\n MDDS", + "916625": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G530T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910650", + "Spec Code": "SR05K", + "Ordering Code": "CM8062301046904", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910650": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G540", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916627", + "Spec Code": "SR05J", + "Ordering Code": "BXC80623G540", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910601": "PCN", + "916626": "PCN\n |\n MDDS", + "916627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G630", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917809", + "Spec Code": "SR05S", + "Ordering Code": "BXC80623G630", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910597": "PCN", + "917723": "PCN\n |\n MDDS", + "917809": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G630T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917724", + "Spec Code": "SR05U", + "Ordering Code": "BX80623G630T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910599": "PCN", + "917724": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G632", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910667", + "Spec Code": "SR05N", + "Ordering Code": "CM8062301049304", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992", + "CCATS": "NA", + "US HTS": "8542310001", + "910667": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G860", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917719", + "Spec Code": "SR058", + "Ordering Code": "BX80623G860", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910555": "PCN", + "917719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "787", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1.5 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "827E", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "1.5 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914933", + "Spec Code": "SR0C6", + "Ordering Code": "AV8062701082300", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914933": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B710", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1.5 MB L3 Cache", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "857", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "847E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914015", + "Spec Code": "SR0BU", + "Ordering Code": "AV8062700849902", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B800", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916711", + "Spec Code": "SR0EW", + "Ordering Code": "FF8062701142600", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916711": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "B810E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914004", + "Spec Code": "SR0BT", + "Ordering Code": "AV8062700849802", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B940", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L3 Cache", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912310", + "Spec Code": "SR07S", + "Ordering Code": "FF8062700847801", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912310": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B950", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912311", + "Spec Code": "SR07T", + "Ordering Code": "FF8062700847901", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912311": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G620", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914123", + "Spec Code": "SR05R", + "Ordering Code": "BXC80623G620", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910596": "PCN", + "914112": "PCN\n |\n MDDS", + "914123": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G620T", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914127", + "Spec Code": "SR05T", + "Ordering Code": "BXC80623G620T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910598": "PCN", + "914113": "PCN\n |\n MDDS", + "914127": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G622", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G840", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914119", + "Spec Code": "SR05P", + "Ordering Code": "BXC80623G840", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910594": "PCN", + "914110": "PCN\n |\n MDDS", + "914119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G850", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914121", + "Spec Code": "SR05Q", + "Ordering Code": "BXC80623G850", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "910595": "PCN\n |\n MDDS", + "914111": "PCN\n |\n MDDS", + "914121": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B810", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912327", + "Spec Code": "SR088", + "Ordering Code": "FF8062700848800", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907966", + "Spec Code": "SLBSP", + "Ordering Code": "CN80617005199AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U5600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-390M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909956", + "Spec Code": "SLC25", + "Ordering Code": "CP80617005487AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909956": "PCN\n |\n MDDS", + "909926": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-480M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909958", + "Spec Code": "SLC27", + "Ordering Code": "CP80617005487AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909958": "PCN\n |\n MDDS", + "909927": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6300", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.27 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "909957", + "Spec Code": "SLBU8", + "Ordering Code": "CP80617004161AK", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-380UM", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908626", + "Spec Code": "SLBSL", + "Ordering Code": "CN80617005190AF", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908626": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-470UM", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908633", + "Spec Code": "SLBXP", + "Ordering Code": "CN80617005190AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908633": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-560", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908874", + "Spec Code": "SLBY2", + "Ordering Code": "BXC80616I3560", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908584": "PCN\n |\n MDDS", + "908873": "PCN\n |\n MDDS", + "908874": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4600", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908609", + "Spec Code": "SLBZY", + "Ordering Code": "CP80617005307AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908609": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-370M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908000", + "Spec Code": "SLBUK", + "Ordering Code": "CP80617004119AL", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-380M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908607", + "Spec Code": "SLBZX", + "Ordering Code": "CP80617004116AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908607": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-460M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908636", + "Spec Code": "SLC22", + "Ordering Code": "CN80617004116AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908611": "PCN\n |\n MDDS", + "908636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-560M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908632", + "Spec Code": "SLBTT", + "Ordering Code": "CN80617005487AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908632": "PCN\n |\n MDDS", + "908608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-560UM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908627", + "Spec Code": "SLBSN", + "Ordering Code": "CN80617005190AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-580M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908637", + "Spec Code": "SLC29", + "Ordering Code": "CN80617005487AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908637": "PCN\n |\n MDDS", + "908613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908634", + "Spec Code": "SLBZU", + "Ordering Code": "CN80617006936AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908634": "PCN\n |\n MDDS", + "908610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660LM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-680UM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908628", + "Spec Code": "SLBST", + "Ordering Code": "CN80617004860AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6100", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "MM#": "908001", + "Spec Code": "SLBUR", + "Ordering Code": "CP80617004125AL", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908001": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6200", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907998", + "Spec Code": "SLBUA", + "Ordering Code": "CP80617004122AW", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907998": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-550", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908035", + "Spec Code": "SLBUD", + "Ordering Code": "BX80616I3550", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907936": "PCN\n |\n MDDS", + "908035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-655K", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908019", + "Spec Code": "SLBXL", + "Ordering Code": "BX80616I5655K", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907947": "PCN\n |\n MDDS", + "908019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3400", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907980", + "Spec Code": "SLBUE", + "Ordering Code": "CN80617006039AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907981", + "Spec Code": "SLBUG", + "Ordering Code": "CN80617006042AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-430UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.73 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907984", + "Spec Code": "SLBVS", + "Ordering Code": "CN80617006042AE", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907984": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-540UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907983", + "Spec Code": "SLBUJ", + "Ordering Code": "CN80617006042AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907983": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907969", + "Spec Code": "SLBSS", + "Ordering Code": "CN80617005187AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907969": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U5400", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907982", + "Spec Code": "SLBUH", + "Ordering Code": "CN80617006042AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4500", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908002", + "Spec Code": "SLBUX", + "Ordering Code": "CP80617004803AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904407": "PCN\n |\n MDDS", + "908002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-450M", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.66 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907995", + "Spec Code": "SLBTZ", + "Ordering Code": "CP80617004119AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-680", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.86 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908036", + "Spec Code": "SLBTM", + "Ordering Code": "BX80616I5680", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907935": "PCN\n |\n MDDS", + "908036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6000", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907986", + "Spec Code": "SLBWB", + "Ordering Code": "CP80617004170AF", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907986": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-530", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.93 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907938", + "Spec Code": "SLBX7", + "Ordering Code": "CM80616003180AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904341": "PCN\n |\n MDDS", + "904852": "PCN\n |\n MDDS", + "907938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-540", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.06 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908519", + "Spec Code": "SLBTD", + "Ordering Code": "BXC80616I3540", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "904344": "PCN\n |\n MDDS", + "904853": "PCN\n |\n MDDS", + "904859": "PCN\n |\n MDDS", + "907927": "PCN\n |\n MDDS", + "908511": "PCN\n |\n MDDS", + "908519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-520M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.3 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988, BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908568", + "Spec Code": "SLBU3", + "Ordering Code": "BX80617I5520M", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907996": "PCN\n |\n MDDS", + "908568": "PCN\n |\n MDDS", + "904375": "PCN\n |\n MDDS", + "905171": "PCN\n |\n MDDS", + "904440": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-520UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.87 GHz", + "Processor Base Frequency": "1.07 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905037", + "Spec Code": "SLBQP", + "Ordering Code": "CN80617005352AA", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "905037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-540M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.07 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908641", + "Spec Code": "SLC2D", + "Ordering Code": "CN80617007218AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904408": "PCN\n |\n MDDS", + "905206": "PCN\n |\n MDDS", + "908641": "PCN\n |\n MDDS", + "904439": "PCN\n |\n MDDS", + "907994": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-650", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908520", + "Spec Code": "SLBTJ", + "Ordering Code": "BXC80616I5650", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907932": "PCN\n |\n MDDS", + "908512": "PCN\n |\n MDDS", + "908520": "PCN\n |\n MDDS", + "904340": "PCN\n |\n MDDS", + "904854": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-660", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907933", + "Spec Code": "SLBTK", + "Ordering Code": "CM80616003177AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907933": "PCN\n |\n MDDS", + "904343": "PCN\n |\n MDDS", + "904855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-661", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "87 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "900 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908514", + "Spec Code": "SLBTB", + "Ordering Code": "BX80616I5661", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907925": "PCN\n |\n MDDS", + "908514": "PCN\n |\n MDDS", + "904349": "PCN\n |\n MDDS", + "904942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-670", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904856", + "Spec Code": "SLBLT", + "Ordering Code": "BX80616I5670", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904342": "PCN\n |\n MDDS", + "904856": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-610E", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908575", + "Spec Code": "SLBXX", + "Ordering Code": "CN80617005745AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "905473": "PCN\n |\n MDDS", + "908575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620LM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907970", + "Spec Code": "SLBSU", + "Ordering Code": "CN80617003879AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904409": "PCN\n |\n MDDS", + "907970": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907993", + "Spec Code": "SLBTQ", + "Ordering Code": "CP80617003981AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907993": "PCN\n |\n MDDS", + "904373": "PCN\n |\n MDDS", + "904438": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.06 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904436", + "Spec Code": "SLBMN", + "Ordering Code": "CN80617003882AE", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904436": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640LM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904411", + "Spec Code": "SLBMK", + "Ordering Code": "CN80617003885AE", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904411": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904437", + "Spec Code": "SLBMM", + "Ordering Code": "CN80617003888AD", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904437": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P4505", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908572", + "Spec Code": "SLBXG", + "Ordering Code": "CN80617004545AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908572": "PCN\n |\n MDDS", + "905471": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U3405", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "NO", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "908573", + "Spec Code": "SLBWX", + "Ordering Code": "CN80617006201AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908573": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330E", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA,105°C for BGA", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908570", + "Spec Code": "SLBXW", + "Ordering Code": "CN80617004467AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908570": "PCN\n |\n MDDS", + "905472": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908003", + "Spec Code": "SLBVT", + "Ordering Code": "CP80617004122AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908003": "PCN\n |\n MDDS", + "904441": "PCN\n |\n MDDS", + "904379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-350M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907997", + "Spec Code": "SLBU5", + "Ordering Code": "CP80617004161AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904442": "PCN\n |\n MDDS", + "904381": "PCN\n |\n MDDS", + "907997": "PCN\n |\n MDDS", + "907979": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-430M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904443", + "Spec Code": "SLBPM", + "Ordering Code": "CN80617004161AD", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904398": "PCN\n |\n MDDS", + "904443": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660UE", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "4 MB", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908576", + "Spec Code": "SLBWV", + "Ordering Code": "CN80617006204AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Embedded", + "Processor Number": "E8000", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.04 GHz", + "Cache": "2 MB", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947286", + "Spec Code": "SR2LV", + "Ordering Code": "FH8066501715946", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947286": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3000", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.08 GHz", + "Processor Base Frequency": "1.04 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "3 W", + "TDP": "4 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "942603", + "Spec Code": "SR29J", + "Ordering Code": "FH8066501715915", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942603": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3050", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943329", + "Spec Code": "SR2A9", + "Ordering Code": "FH8066501715925", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942602": "PCN\n |\n MDDS", + "943329": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3150", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.08 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "640 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943328", + "Spec Code": "SR2A8", + "Ordering Code": "FH8066501715924", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942600": "PCN\n |\n MDDS", + "943328": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3700", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "16", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943327", + "Spec Code": "SR2A7", + "Ordering Code": "FH8066501715923", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942599": "PCN\n |\n MDDS", + "943327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "A1020", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "947588", + "Spec Code": "SR2M8", + "Ordering Code": "FH8065301614905", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "947588": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2808", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.25 GHz", + "Processor Base Frequency": "1.58 GHz", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "3 W", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.66 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "935932", + "Spec Code": "SR1YH", + "Ordering Code": "FH8065301903500", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "935932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2840", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "935949", + "Spec Code": "SR1YJ", + "Ordering Code": "FH8065301903600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "935949": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2940", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.25 GHz", + "Processor Base Frequency": "1.83 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "936000", + "Spec Code": "SR1YV", + "Ordering Code": "FH8065301919600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3540", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.66 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "936004", + "Spec Code": "SR1YW", + "Ordering Code": "FH8065301919700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3736F", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936897", + "Spec Code": "SR20D", + "Ordering Code": "FH8065301685500", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "936897": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3736G", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "936898", + "Spec Code": "SR20E", + "Ordering Code": "FH8065301685971", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "936898": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3785", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.49 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "833 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735F", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933463", + "Spec Code": "SR1UB", + "Ordering Code": "FH8065301685598", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735G", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933469", + "Spec Code": "SR1UD", + "Ordering Code": "FH8065301685965", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933469": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2807", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.58 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934898", + "Spec Code": "SR1W5", + "Ordering Code": "FH8065301730502", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962777": "PCN\n |\n MDDS", + "934898": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2830", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934897", + "Spec Code": "SR1W4", + "Ordering Code": "FH8065301729602", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934897": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2930", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.16 GHz", + "Processor Base Frequency": "1.83 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934896", + "Spec Code": "SR1W3", + "Ordering Code": "FH8065301729501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962776": "PCN\n |\n MDDS", + "934896": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3530", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934895", + "Spec Code": "SR1W2", + "Ordering Code": "FH8065301728501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934895": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735E", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "5.3 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933439", + "Spec Code": "SR1U9", + "Ordering Code": "FH8065301685963", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933439": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3775D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.49 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932781", + "Spec Code": "SR1SR", + "Ordering Code": "FH8065301574843", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932781": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3795", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.59 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932737", + "Spec Code": "SR1SK", + "Ordering Code": "FH8065301455628", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932737": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3745", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "USB Revision": "2.0/3.0", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932770", + "Spec Code": "SR1SP", + "Ordering Code": "FH8065301455630", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932770": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3745D", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "792 MHz", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3775", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "778 MHz", + "Sockets Supported": "UTFCBGA1380", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932745", + "Spec Code": "SR1SM", + "Ordering Code": "FH8065301455629", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1800", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934012", + "Spec Code": "SR1UU", + "Ordering Code": "FH8065301615104", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962775": "PCN\n |\n MDDS", + "932483": "PCN\n |\n MDDS", + "934012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1900", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.42 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934010", + "Spec Code": "SR1UT", + "Ordering Code": "FH8065301615010", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "962774": "PCN\n |\n MDDS", + "932481": "PCN\n |\n MDDS", + "934010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J2900", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.66 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934008", + "Spec Code": "SR1US", + "Ordering Code": "FH8065301614904", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932479": "PCN\n |\n MDDS", + "934008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2806", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932494", + "Spec Code": "SR1SH", + "Ordering Code": "FH8065301616703", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2815", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.13 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932579", + "Spec Code": "SR1SJ", + "Ordering Code": "FH8065301619509", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932579": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2820", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932492", + "Spec Code": "SR1SG", + "Ordering Code": "FH8065301616603", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932492": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2920", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.00 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "844 MHz", + "Graphics Max Dynamic Frequency": "844 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932490", + "Spec Code": "SR1SF", + "Ordering Code": "FH8065301616203", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932490": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3520", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Expected Discontinuance": "Feburary 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.42 GHz", + "Processor Base Frequency": "2.17 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932485", + "Spec Code": "SR1SE", + "Ordering Code": "FH8065301616103", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3815", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Cache": "512 KB L2 Cache", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "400 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935360", + "Spec Code": "SR1XA", + "Ordering Code": "FH8065301567414", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932048": "PCN\n |\n MDDS", + "935360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3825", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "533 MHz", + "Graphics Burst Frequency": "533 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935359", + "Spec Code": "SR1X9", + "Ordering Code": "FH8065301567313", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "935359": "PCN\n |\n MDDS", + "932049": "PCN\n |\n MDDS", + "962768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3826", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.46 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "7 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "533 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935356", + "Spec Code": "SR1X8", + "Ordering Code": "FH8065301542215", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "962766": "PCN\n |\n MDDS", + "932050": "PCN\n |\n MDDS", + "935356": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3827", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.75 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "8 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "542 MHz", + "Graphics Burst Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935346", + "Spec Code": "SR1X7", + "Ordering Code": "FH8065301487918", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "962764": "PCN\n |\n MDDS", + "932051": "PCN\n |\n MDDS", + "935346": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3845", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.91 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "542 MHz", + "Graphics Burst Frequency": "792 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932052", + "Spec Code": "SR1RE", + "Ordering Code": "FH8065301487715", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932052": "PCN\n |\n MDDS", + "962762": "PCN\n |\n MDDS", + "935332": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3740", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "931181", + "Spec Code": "SR1M5", + "Ordering Code": "FH8065301455601", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931181": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3740D", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "688 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932249", + "Spec Code": "SR1S0", + "Ordering Code": "FH8065301574825", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932249": "PCN\n |\n MDDS", + "931194": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3770", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.39 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "667 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "931173", + "Spec Code": "SR1M3", + "Ordering Code": "FH8065301455604", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931173": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3770D", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "688 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Sockets Supported": "UTFCBGA1380", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "932247", + "Spec Code": "SR1RY", + "Ordering Code": "FH8065301574823", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "931192": "PCN\n |\n MDDS", + "932247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1750", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.41 GHz", + "Cache": "1 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931094", + "Spec Code": "SR1LP", + "Ordering Code": "FH8065301562600", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931094": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J1850", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "792 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931092", + "Spec Code": "SR1LN", + "Ordering Code": "FH8065301455200", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931092": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2805", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.46 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "2.5 W", + "TDP": "4.3 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "1", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "667 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "80°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931118", + "Spec Code": "SR1LY", + "Ordering Code": "FH8065301564600", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931118": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2810", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931116", + "Spec Code": "SR1LX", + "Ordering Code": "FH8065301564501", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931116": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2910", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "February 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3L 1066", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "756 MHz", + "Graphics Max Dynamic Frequency": "756 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931114", + "Spec Code": "SR1LW", + "Ordering Code": "FH8065301546402", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J2850", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931090", + "Spec Code": "SR1LM", + "Ordering Code": "FH8065301455104", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931090": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3510", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Feburary 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931112", + "Spec Code": "SR1LV", + "Ordering Code": "FH8065301546301", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931112": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "8500", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46C3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "8505", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW78", + "Spec Code": "SRLFW", + "Ordering Code": "FJ8071504827201", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW78": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "8505", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "5", + "# of Performance-cores": "1", + "# of Efficient-cores": "4", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW77", + "Spec Code": "SRLFV", + "Ordering Code": "FJ8071504827200", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW77": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G7400", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "4", + "Performance-core Base Frequency": "3.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "46 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJN", + "Spec Code": "SRL66", + "Ordering Code": "BXC80715G7400", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APD2": "PCN", + "99ATJH": "PCN", + "99ATJN": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G7400E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "4", + "Performance-core Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "46 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC1", + "Spec Code": "SRL6R", + "Ordering Code": "CM8071504653907", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC1": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G7400T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "4", + "Performance-core Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APD1", + "Spec Code": "SRL65", + "Ordering Code": "CM8071504651504", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APD1": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G7400TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "# of Performance-cores": "2", + "# of Efficient-cores": "0", + "Total Threads": "4", + "Performance-core Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Total L2 Cache": "2.5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 710", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4693", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC2", + "Spec Code": "SRL6S", + "Ordering Code": "CM8071504654005", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC2": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6405", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVA", + "Spec Code": "SRH3Z", + "Ordering Code": "BXC80701G6405", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKZ": "PCN\n |\n MDDS", + "99AFPP": "MDDS", + "99AFVA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6405T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL1", + "Spec Code": "SRH41", + "Ordering Code": "CM8070104291909", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL1": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV9", + "Spec Code": "SRH3V", + "Ordering Code": "BXC80701G6505", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKT": "PCN\n |\n MDDS", + "99AFPN": "MDDS", + "99AFV9": "MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6505T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKW", + "Spec Code": "SRH3X", + "Ordering Code": "CM8070104291709", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6605", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV8", + "Spec Code": "SRH3T", + "Ordering Code": "BXC80701G6605", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKN": "PCN\n |\n MDDS", + "99AFPM": "MDDS", + "99AFV8": "MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "6500Y", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "7505", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3F4", + "Spec Code": "SRK0A", + "Ordering Code": "FH8069004531802", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3F4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6400", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A015", + "Spec Code": "SRH3Y", + "Ordering Code": "BXC80701G6400", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKX": "PCN\n |\n MDDS", + "99A00M": "PCN\n |\n MDDS", + "99A015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6400E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX3", + "Spec Code": "SRH6G", + "Ordering Code": "CM8070104423809", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX3": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6400T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL0", + "Spec Code": "SRH40", + "Ordering Code": "CM8070104291907", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6400TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX4", + "Spec Code": "SRH6H", + "Ordering Code": "CM8070104423912", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6500", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A014", + "Spec Code": "SRH3U", + "Ordering Code": "BXC80701G6500", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKR": "PCN\n |\n MDDS", + "99A00L": "PCN\n |\n MDDS", + "99A014": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6500T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKV", + "Spec Code": "SRH3W", + "Ordering Code": "CM8070104291707", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6600", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A013", + "Spec Code": "SRH3S", + "Ordering Code": "BXC80701G6600", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKM": "PCN\n |\n MDDS", + "99A00K": "PCN\n |\n MDDS", + "99A013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6405U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K4H", + "Spec Code": "SRGL2", + "Ordering Code": "FJ8070104307703", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5420", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FXZ", + "Spec Code": "SR3YH", + "Ordering Code": "BXC80684G5420", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FXV": "PCN", + "999FXZ": "PCN\n |\n MDDS", + "963555": "PCN\n |\n MDDS", + "999FXT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5420T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963576", + "Spec Code": "SR3XC", + "Ordering Code": "CM8068403360213", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5600T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963679", + "Spec Code": "SR3YF", + "Ordering Code": "CM8068403377714", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963679": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5620", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FXX", + "Spec Code": "SR3YC", + "Ordering Code": "BXC80684G5620", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963664": "PCN\n |\n MDDS", + "999FV4": "PCN\n |\n MDDS", + "999FXX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5405U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984529", + "Spec Code": "SRESL", + "Ordering Code": "CL8068404080703", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999FFH": "PCN\n |\n MDDS", + "984529": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "4417U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984527", + "Spec Code": "SRESH", + "Ordering Code": "FJ8067703282813", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "984527": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Amber Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4425Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980677", + "Spec Code": "SRD24", + "Ordering Code": "HE8067702740049", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980677": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5400", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976952", + "Spec Code": "SR3X9", + "Ordering Code": "BX80684G5400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963543": "PCN\n |\n MDDS", + "976952": "PCN\n |\n MDDS", + "976953": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5400T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100/88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963566", + "Spec Code": "SR3XB", + "Ordering Code": "CM8068403360212", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963566": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5500", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975872", + "Spec Code": "SR3YD", + "Ordering Code": "BXC80684G5500", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963670": "PCN\n |\n MDDS", + "974961": "PCN\n |\n MDDS", + "975872": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5500T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963678", + "Spec Code": "SR3YE", + "Ordering Code": "CM8068403377713", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963678": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4415Y", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957336", + "Spec Code": "SR3GA", + "Ordering Code": "HE8067702740018", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "957336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4410Y", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953362", + "Spec Code": "SR34B", + "Ordering Code": "HE8067702740013", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4415U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953359", + "Spec Code": "SR348", + "Ordering Code": "FJ8067702739932", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N6000", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.30 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E71", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98L", + "Spec Code": "SRKGY", + "Ordering Code": "DC8069704609905", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N6005", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E71", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98G", + "Spec Code": "SRKGU", + "Ordering Code": "DC8069704609807", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J5040", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DAL", + "Spec Code": "SRFDB", + "Ordering Code": "FH8068003067443", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999DAL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N5030", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.10 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DAV", + "Spec Code": "SRFDC", + "Ordering Code": "FH8068003067442", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999DAV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J5005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961642", + "Spec Code": "SR3S3", + "Ordering Code": "FH8068003067415", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5000", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105°C", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961638", + "Spec Code": "SR3RZ", + "Ordering Code": "FH8068003067406", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961638": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor D Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D1519", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, KX4, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "37.5mm x 37.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944009", + "Spec Code": "SR2DM", + "Ordering Code": "GG8067402569601", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944009": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor D Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D1507", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB", + "TDP": "20 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "1600 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KX, KX4, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944011", + "Spec Code": "SR2DP", + "Ordering Code": "GG8067402569800", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor D Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D1508", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Communications", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, KX4, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944012", + "Spec Code": "SR2DQ", + "Ordering Code": "GG8067402569900", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor D Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D1509", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB", + "TDP": "19 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "1600 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946072", + "Spec Code": "SR2JA", + "Ordering Code": "GG8067402570103", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "946072": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor D Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D1517", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, KX4, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944485", + "Spec Code": "SR2GG", + "Ordering Code": "GG8067402612800", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4560", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954812", + "Spec Code": "SR32Y", + "Ordering Code": "BX80677G4560", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952994": "PCN\n |\n MDDS", + "954812": "PCN\n |\n MDDS", + "954821": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4560T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954051", + "Spec Code": "SR35T", + "Ordering Code": "CM8067703016117", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954051": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4600", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954822", + "Spec Code": "SR35F", + "Ordering Code": "BXC80677G4600", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954039": "PCN\n |\n MDDS", + "954814": "PCN\n |\n MDDS", + "954822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4600T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954049", + "Spec Code": "SR35R", + "Ordering Code": "CM8067703016014", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954049": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4620", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954813", + "Spec Code": "SR35E", + "Ordering Code": "BX80677G4620", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954035": "PCN\n |\n MDDS", + "954813": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "G4400TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947270", + "Spec Code": "SR2LT", + "Ordering Code": "CM8066201938702", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947270": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4400", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946007", + "Spec Code": "SR2DC", + "Ordering Code": "BXC80662G4400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945270": "PCN", + "943908": "PCN\n |\n MDDS", + "946002": "PCN\n |\n MDDS", + "946007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4400T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945362", + "Spec Code": "SR2HQ", + "Ordering Code": "CM8066201927506", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945362": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4500", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946008", + "Spec Code": "SR2HJ", + "Ordering Code": "BXC80662G4500", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945269": "PCN", + "946003": "PCN\n |\n MDDS", + "946008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4500T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945382", + "Spec Code": "SR2HS", + "Ordering Code": "CM8066201927512", + "Shipping Media": "TRAY", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945382": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "G4520", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® OS Guard": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946006", + "Spec Code": "SR2HM", + "Ordering Code": "BX80662G4520", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945298": "PCN", + "946006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3260", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943020", + "Spec Code": "SR1K8", + "Ordering Code": "BX80646G3260", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931023": "PCN\n |\n MDDS", + "943017": "PCN\n |\n MDDS", + "943020": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3260T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931053", + "Spec Code": "SR1KW", + "Ordering Code": "CM8064601483744", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931053": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3460T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932980", + "Spec Code": "SR1TD", + "Ordering Code": "CM8064601483760", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932980": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3470", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930995", + "Spec Code": "SR1K4", + "Ordering Code": "CM8064601482520", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3250", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937651", + "Spec Code": "SR1K7", + "Ordering Code": "BXC80646G3250", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931014": "PCN\n |\n MDDS", + "937649": "PCN", + "937651": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3250T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931049", + "Spec Code": "SR1KV", + "Ordering Code": "CM8064601483718", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931049": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3450T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931047", + "Spec Code": "SR1KT", + "Ordering Code": "CM8064601483714", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3460", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943843", + "Spec Code": "SR1K3", + "Ordering Code": "BXC80646G3460", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930994": "PCN\n |\n MDDS", + "937626": "PCN", + "943843": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3258", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937410", + "Spec Code": "SR1V0", + "Ordering Code": "BXC80646G3258", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934205": "PCN\n |\n MDDS", + "937409": "PCN\n |\n MDDS", + "937410": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3240", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939577", + "Spec Code": "SR1RL", + "Ordering Code": "BXC80646G3240", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932169": "PCN\n |\n MDDS", + "939575": "PCN\n |\n MDDS", + "939577": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3240T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931048", + "Spec Code": "SR1KU", + "Ordering Code": "CM8064601483722", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931048": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3440", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934960", + "Spec Code": "SR1P9", + "Ordering Code": "BX80646G3440", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931883": "PCN\n |\n MDDS", + "934960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3440T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931046", + "Spec Code": "SR1KS", + "Ordering Code": "CM8064601483717", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931046": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3450", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934921", + "Spec Code": "SR1K2", + "Ordering Code": "BX80646G3450", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930993": "PCN\n |\n MDDS", + "934921": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3220", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "933388", + "Spec Code": "SR1RK", + "Ordering Code": "BXC80646G3220", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930394": "PCN\n |\n MDDS", + "931505": "PCN\n |\n MDDS", + "931509": "PCN\n |\n MDDS", + "932168": "PCN\n |\n MDDS", + "933386": "PCN\n |\n MDDS", + "933388": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3220T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930398", + "Spec Code": "SR1CL", + "Ordering Code": "CM8064601483713", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "G3320TE", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "1", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333, DDR3L-1333 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929229", + "Spec Code": "SR181", + "Ordering Code": "CM8064601484501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929229": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3420", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931869", + "Spec Code": "SR1NB", + "Ordering Code": "BX80646G3420", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931424": "PCN\n |\n MDDS", + "931868": "PCN", + "931869": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3420T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930397", + "Spec Code": "SR1CK", + "Ordering Code": "CM8064601483712", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930397": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "G3430", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "53 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "1920x1080@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931506", + "Spec Code": "SR1CE", + "Ordering Code": "BX80646G3430", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930392": "PCN\n |\n MDDS", + "931503": "PCN\n |\n MDDS", + "931506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2030", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929489", + "Spec Code": "SR163", + "Ordering Code": "BX80637G2030", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928905": "PCN\n |\n MDDS", + "929485": "PCN\n |\n MDDS", + "929489": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2030T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928906", + "Spec Code": "SR164", + "Ordering Code": "CM8063701450500", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "928906": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2120T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923852", + "Spec Code": "SR0YV", + "Ordering Code": "CM8063701391600", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923852": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2140", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929488", + "Spec Code": "SR0YT", + "Ordering Code": "BX80637G2140", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923850": "PCN\n |\n MDDS", + "929484": "PCN\n |\n MDDS", + "929488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2010", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926160", + "Spec Code": "SR10J", + "Ordering Code": "BX80637G2010", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924944": "PCN\n |\n MDDS", + "926153": "PCN\n |\n MDDS", + "926160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2020", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926161", + "Spec Code": "SR10H", + "Ordering Code": "BX80637G2020", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924943": "PCN\n |\n MDDS", + "926154": "PCN\n |\n MDDS", + "926161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2020T", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924942", + "Spec Code": "SR10G", + "Ordering Code": "CM8063701444601", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2130", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926163", + "Spec Code": "SR0YU", + "Ordering Code": "BX80637G2130", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923851": "PCN\n |\n MDDS", + "926155": "PCN\n |\n MDDS", + "926163": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2100T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922114", + "Spec Code": "SR0UJ", + "Ordering Code": "CM8063701219000", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor G Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G2120", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923124", + "Spec Code": "SR0UF", + "Ordering Code": "BX80637G2120", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922107": "PCN\n |\n MDDS", + "923124": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6426", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4P", + "Spec Code": "SRKUB", + "Ordering Code": "DC8070304190882", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4P": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J4205", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951843", + "Spec Code": "SR2ZA", + "Ordering Code": "FH8066802986200", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951843": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Desktop", + "Processor Number": "J3710", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.64 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "740 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "5", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947024", + "Spec Code": "SR2KQ", + "Ordering Code": "FH8066501715931", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947024": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J2900", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.66 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934008", + "Spec Code": "SR1US", + "Ordering Code": "FH8065301614904", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932479": "PCN\n |\n MDDS", + "934008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Desktop", + "Processor Number": "J2850", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm X 27mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931090", + "Spec Code": "SR1LM", + "Ordering Code": "FH8065301455104", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931090": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6415", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGW", + "Spec Code": "SRKLA", + "Ordering Code": "DC8070304190820", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGW": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4200E", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.50 GHz", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB", + "TDP": "6 W", + "Embedded Options Available": "No", + "Description": "The Intel® Pentium® Processor N4200E is now named as Intel® Pentium® Processor N4200 processor. Please refer to the \"N4200\" ARK Page for all the product details.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Clock": "200 MHz", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983216", + "Spec Code": "SREKG", + "Ordering Code": "FH8066802979703", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983216": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4200", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A84", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951483", + "Spec Code": "SR2Y9", + "Ordering Code": "FH8066802979703", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951483": "PCN\n |\n MDDS", + "951830": "PCN\n |\n MDDS", + "999N4L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3710", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.56 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "16", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947020", + "Spec Code": "SR2KL", + "Ordering Code": "FH8066501715927", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "947020": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3700", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "16", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943327", + "Spec Code": "SR2A7", + "Ordering Code": "FH8066501715923", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942599": "PCN\n |\n MDDS", + "943327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3540", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.66 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.32 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "936004", + "Spec Code": "SR1YW", + "Ordering Code": "FH8065301919700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3530", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.58 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934895", + "Spec Code": "SR1W2", + "Ordering Code": "FH8065301728501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934895": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3520", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Expected Discontinuance": "Feburary 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.42 GHz", + "Processor Base Frequency": "2.17 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "854 MHz", + "Graphics Max Dynamic Frequency": "854 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "932485", + "Spec Code": "SR1SE", + "Ordering Code": "FH8065301616103", + "Shipping Media": "TRAY", + "Stepping": "B3", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "932485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N3510", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Feburary 3, 2014", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "931112", + "Spec Code": "SR1LV", + "Ordering Code": "FH8065301546301", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931112": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 6800 Series", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6805", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Execution Units": "32", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3JC", + "Spec Code": "SRK0U", + "Ordering Code": "FJ8068904310016", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3JC": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor 4000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "4405U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-1866/2133, LPDDR3-1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1906", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944337", + "Spec Code": "SR2EX", + "Ordering Code": "FJ8066201930905", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944337": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 4000 Series", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "4405Y", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944330", + "Spec Code": "SR2ER", + "Ordering Code": "HE8066201931229", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944330": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3825U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939531", + "Spec Code": "SR24B", + "Ordering Code": "FH8065801620705", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "3805U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 5th Generation Intel® Processors", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI", + "DirectX* Support": "11.2/12", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937255", + "Spec Code": "SR210", + "Ordering Code": "FH8065801620702", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "937255": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3560M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931077", + "Spec Code": "SR1LC", + "Ordering Code": "CW8064701486906", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "931077": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3558U", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930608", + "Spec Code": "SR1E8", + "Ordering Code": "CL8064701569500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3561Y", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930505", + "Spec Code": "SR1DG", + "Ordering Code": "CL8064701568201", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3550M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930783", + "Spec Code": "SR1HD", + "Ordering Code": "CW8064701486907", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930783": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3556U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Processor 3000 Series", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "3560Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Intel® Quick Sync Video": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2127U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924819", + "Spec Code": "SR105", + "Ordering Code": "AV8063801119100", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2030M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "924813", + "Spec Code": "SR0ZZ", + "Ordering Code": "AW8063801120500", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924813": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2129Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926928", + "Spec Code": "SR12M", + "Ordering Code": "AV8063801377901", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "926928": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2020M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921884", + "Spec Code": "SR0U1", + "Ordering Code": "AW8063801211202", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 2000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "2117U", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922752", + "Spec Code": "SR0VQ", + "Ordering Code": "AV8063801058800", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "A1020", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.41 GHz", + "Cache": "2 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "688 MHz", + "Graphics Burst Frequency": "896 MHz", + "Graphics Max Dynamic Frequency": "896 MHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "X4, X2, X1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm X 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "947588", + "Spec Code": "SR2M8", + "Ordering Code": "FH8065301614905", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "947588": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "1405V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "TCASE": "80°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930083", + "Spec Code": "SR1AW", + "Ordering Code": "CM8063401294304", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "A1018", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "1 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 3rd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 & 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934402", + "Spec Code": "SR1V6", + "Ordering Code": "AW8063801567000", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930338": "MDDS", + "934402": "PCN\n |\n MDDS", + "930300": "MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 1000 Series", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "1405", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "1.80 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "5 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "1", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "375 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "1", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919378", + "Spec Code": "SR0M7", + "Ordering Code": "CM8062001093700", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919378": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "B925C", + "Status": "Launched", + "Launch Date": "Q4'13", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + {}, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "997", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "922535", + "Spec Code": "SR0V5", + "Ordering Code": "AV8062701084801", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "922535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G645", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923842", + "Spec Code": "SR0RS", + "Ordering Code": "BXC80623G645", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921159": "PCN", + "923841": "PCN\n |\n MDDS", + "923842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G645T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921175", + "Spec Code": "SR0S0", + "Ordering Code": "CM8062301263701", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921175": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B980", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "918121", + "Spec Code": "SR0J1", + "Ordering Code": "FF8062700997802", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918121": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G640", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922825", + "Spec Code": "SR059", + "Ordering Code": "BX80623G640", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910556": "PCN", + "922822": "PCN\n |\n MDDS", + "922825": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G640T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922827", + "Spec Code": "SR066", + "Ordering Code": "BX80623G640T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910565": "PCN", + "922827": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G860T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5 x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919594", + "Spec Code": "SR0MF", + "Ordering Code": "CM8062301198300", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919594": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G870", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922824", + "Spec Code": "SR057", + "Ordering Code": "BX80623G870", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910526": "PCN", + "922824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "B915C", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB L3 Cache", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x4 or 2x8 1x4 or 1x8 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919930", + "Spec Code": "SR0NZ", + "Ordering Code": "AV8062701147401", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "977", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "916823", + "Spec Code": "SR0FB", + "Ordering Code": "AV8062701147701", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916823": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B970", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "MM#": "918122", + "Spec Code": "SR0J2", + "Ordering Code": "FF8062700998002", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918122": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "967", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.30 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B960", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "914938", + "Spec Code": "SR0C9", + "Ordering Code": "FF8062701123900", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "914938": "PCN\n |\n MDDS", + "912313": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G630", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917809", + "Spec Code": "SR05S", + "Ordering Code": "BXC80623G630", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910597": "PCN", + "917723": "PCN\n |\n MDDS", + "917809": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G630T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917724", + "Spec Code": "SR05U", + "Ordering Code": "BX80623G630T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910599": "PCN", + "917724": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G632", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910667", + "Spec Code": "SR05N", + "Ordering Code": "CM8062301049304", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992", + "CCATS": "NA", + "US HTS": "8542310001", + "910667": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "G6951", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Physical Address Extensions": "36-bit", + "Graphics Base Frequency": "533 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907930", + "Spec Code": "SLBTF", + "Ordering Code": "CM80616004593AF", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G860", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917719", + "Spec Code": "SR058", + "Ordering Code": "BX80623G860", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910555": "PCN", + "917719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "957", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB L3 Cache", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912328", + "Spec Code": "SR089", + "Ordering Code": "AV8062700852600", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912328": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B940", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L3 Cache", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85 C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912310", + "Spec Code": "SR07S", + "Ordering Code": "FF8062700847801", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912310": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "B950", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C", + "Package Size": "37.5mmx37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "912311", + "Spec Code": "SR07T", + "Ordering Code": "FF8062700847901", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912311": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G620", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914123", + "Spec Code": "SR05R", + "Ordering Code": "BXC80623G620", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910596": "PCN", + "914112": "PCN\n |\n MDDS", + "914123": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G620T", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914127", + "Spec Code": "SR05T", + "Ordering Code": "BXC80623G620T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910598": "PCN", + "914113": "PCN\n |\n MDDS", + "914127": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G622", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G840", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914119", + "Spec Code": "SR05P", + "Ordering Code": "BXC80623G840", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910594": "PCN", + "914110": "PCN\n |\n MDDS", + "914119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "G850", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for 2nd Generation Intel® Processors", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914121", + "Spec Code": "SR05Q", + "Ordering Code": "BXC80623G850", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "910595": "PCN\n |\n MDDS", + "914111": "PCN\n |\n MDDS", + "914121": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "G6960", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Physical Address Extensions": "36-bit", + "Graphics Base Frequency": "533 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907921", + "Spec Code": "SLBT6", + "Ordering Code": "CM80616005373AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907921": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U5600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6300", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.27 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "909957", + "Spec Code": "SLBU8", + "Ordering Code": "CP80617004161AK", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5800", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "910558", + "Spec Code": "SLGTG", + "Ordering Code": "BX80571E5800", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902624": "PCN\n |\n MDDS", + "910558": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5700", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "908875", + "Spec Code": "SLGTH", + "Ordering Code": "BX80571E5700", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902630": "PCN\n |\n MDDS", + "908875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6800", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.33 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm X 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE2, Intel® SSE3, Intel® SSSE3", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "908924", + "Spec Code": "SLGUE", + "Ordering Code": "BXC80571E6800", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902672": "PCN\n |\n MDDS", + "908876": "PCN\n |\n MDDS", + "908924": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6100", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "MM#": "908001", + "Spec Code": "SLBUR", + "Ordering Code": "CP80617004125AL", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908001": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6200", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907998", + "Spec Code": "SLBUA", + "Ordering Code": "CP80617004122AW", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907998": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6700", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902673", + "Spec Code": "SLGUF", + "Ordering Code": "AT80571PH0882ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902673": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "U5400", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907982", + "Spec Code": "SLBUH", + "Ordering Code": "CN80617006042AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5500", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "907806", + "Spec Code": "SLGTJ", + "Ordering Code": "BX80571E5500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902625": "PCN\n |\n MDDS", + "907806": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "P6000", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "37.5mmx37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "907986", + "Spec Code": "SLBWB", + "Ordering Code": "CP80617004170AF", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907986": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "G6950", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Physical Address Extensions": "36-bit", + "Graphics Base Frequency": "533 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907931", + "Spec Code": "SLBTG", + "Ordering Code": "CM80616004593AE", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907931": "PCN\n |\n MDDS", + "904851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6600", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.06 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V – 1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "905046", + "Spec Code": "SLGUG", + "Ordering Code": "BX80571E6600", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902674": "PCN\n |\n MDDS", + "905044": "PCN\n |\n MDDS", + "905046": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T4500", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "1 MB", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T4400", + "Status": "Discontinued", + "Launch Date": "Q4'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "900480", + "Spec Code": "SLGJL", + "Ordering Code": "AW80577GG0491MA", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900480": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6500", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V – 1.3625V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "904339", + "Spec Code": "SLGUH", + "Ordering Code": "BX80571E6500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902700": "PCN\n |\n MDDS", + "904339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6500K", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "2 MB", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.85V – 1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903971", + "Spec Code": "SLGYP", + "Ordering Code": "AT80571XH0772ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903971": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E6300", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903241", + "Spec Code": "SLGW2", + "Ordering Code": "AT80571AH0722ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902667": "PCN\n |\n MDDS", + "903063": "PCN\n |\n MDDS", + "903241": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5400", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.70 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903981", + "Spec Code": "SLGTK", + "Ordering Code": "BX80571E5400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902626": "PCN\n |\n MDDS", + "903981": "PCN\n |\n MDDS", + "898310": "PCN\n |\n MDDS", + "901650": "PCN\n |\n MDDS", + "900329": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T4200", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "900477", + "Spec Code": "SLGJN", + "Ordering Code": "AW80577GG0411MA", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900477": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5300", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903982", + "Spec Code": "SLGTL", + "Ordering Code": "BX80571E5300", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898314": "PCN\n |\n MDDS", + "900503": "PCN\n |\n MDDS", + "902627": "PCN\n |\n MDDS", + "903982": "PCN\n |\n MDDS", + "901755": "PCN\n |\n MDDS", + "901861": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T3400", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897597", + "Spec Code": "SLB3P", + "Ordering Code": "LF80537GF0481M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E5200", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA775", + "Max CPU Configuration": "1", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902389", + "Spec Code": "SLB9T", + "Ordering Code": "BX80571E5200", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902389": "PCN\n |\n MDDS", + "896940": "PCN\n |\n MDDS", + "899647": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E2220", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897406", + "Spec Code": "SLA8W", + "Ordering Code": "BX80557E2220", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890240": "PCN\n |\n MDDS", + "897406": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T2370", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.73 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888476", + "Spec Code": "SLA4J", + "Ordering Code": "LF80537GE0301M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888476": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E2200", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "895884", + "Spec Code": "SLA8X", + "Ordering Code": "BX80557E2200", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890242": "PCN\n |\n MDDS", + "895884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T2310", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.46 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891150", + "Spec Code": "SLAEC", + "Ordering Code": "LF80537GE0201M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891150": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T2330", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890180", + "Spec Code": "SLA4K", + "Ordering Code": "LF80537GE0251MN", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890180": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E2180", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892608", + "Spec Code": "SLA8Y", + "Ordering Code": "BX80557E2180", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890244": "PCN\n |\n MDDS", + "892608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E2140", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775, PLGA775", + "TCASE": "L2=61.4°C; G0+M0=73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "893238", + "Spec Code": "SLA93", + "Ordering Code": "BX80557E2140R", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890248": "PCN\n |\n MDDS", + "892575": "PCN\n |\n MDDS", + "893238": "PCN\n |\n MDDS", + "888212": "PCN\n |\n MDDS", + "890323": "PCN\n |\n MDDS", + "892984": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "T2080", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.73 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.7625V-1.3V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "886488", + "Spec Code": "SL9VY", + "Ordering Code": "LF80539GE0301M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "T2130", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.7625V-1.3V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890466", + "Spec Code": "SL9VZ", + "Ordering Code": "LF80539GE0361M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890466": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "935", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884346", + "Spec Code": "SL9QR", + "Ordering Code": "BX80553935", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884221": "PCN\n |\n MDDS", + "884346": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "T2060", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "VID Voltage Range": "0.7625V-1.3V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "886541", + "Spec Code": "SL9VX", + "Ordering Code": "LF80539GE0251M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "886541": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "651", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "69.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884878", + "Spec Code": "SL9KE", + "Ordering Code": "BX80552651T2", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "879056": "PCN\n |\n MDDS", + "879365": "PCN", + "879367": "PCN", + "878535": "PCN\n |\n MDDS", + "879161": "PCN", + "879171": "PCN", + "875963": "PCN\n |\n MDDS", + "882911": "PCN\n |\n MDDS", + "884874": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "915", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885739", + "Spec Code": "SL9KB", + "Ordering Code": "BX80553915", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882896": "PCN\n |\n MDDS", + "885739": "PCN", + "881356": "PCN\n |\n MDDS", + "882680": "PCN", + "885714": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "925", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885738", + "Spec Code": "SL9KA", + "Ordering Code": "BX80553925", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "881355": "PCN\n |\n MDDS", + "884120": "PCN", + "882895": "PCN\n |\n MDDS", + "885738": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "945", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885713", + "Spec Code": "SL9QB", + "Ordering Code": "BX80553945R", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "883951": "PCN\n |\n MDDS", + "885138": "PCN", + "885713": "PCN", + "884220": "PCN\n |\n MDDS", + "884345": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E2160", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "77 mm2", + "# of Processing Die Transistors": "105 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "893239", + "Spec Code": "SLA8Z", + "Ordering Code": "BX80557E2160R", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890322": "PCN\n |\n MDDS", + "890245": "PCN\n |\n MDDS", + "892574": "PCN\n |\n MDDS", + "893239": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "524", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.06 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "885732", + "Spec Code": "SL9CA", + "Ordering Code": "BX80547PE3066ER", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872742": "PCN", + "877095": "PCN", + "882073": "PCN", + "880727": "PCN", + "881515": "PCN", + "885732": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "960", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "C1=68.6°C, D0=63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885736", + "Spec Code": "SL9K7", + "Ordering Code": "BX80553960", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882893": "PCN\n |\n MDDS", + "880362": "PCN\n |\n MDDS", + "880688": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "631", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "B1+C1=69.2°C. D0=64.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884879", + "Spec Code": "SL9KG", + "Ordering Code": "BX80552631T2", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878537": "PCN\n |\n MDDS", + "879160": "PCN\n |\n MDDS", + "879173": "PCN\n |\n MDDS", + "879054": "PCN\n |\n MDDS", + "879364": "PCN", + "879370": "PCN", + "875966": "PCN\n |\n MDDS", + "882914": "PCN\n |\n MDDS", + "884875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "641", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "B1,C1=69.2°C; D0-64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884877", + "Spec Code": "SL9KF", + "Ordering Code": "BX80552641T2", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878842": "PCN\n |\n MDDS", + "879363": "PCN", + "879369": "PCN", + "878536": "PCN\n |\n MDDS", + "879159": "PCN", + "879172": "PCN", + "875965": "PCN\n |\n MDDS", + "882912": "PCN\n |\n MDDS", + "884873": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Cedarmill", + "Vertical Segment": "Desktop", + "Processor Number": "661", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "86 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "B1+C1=69°C, D0=64.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "188 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "882909", + "Spec Code": "SL9KD", + "Ordering Code": "HH80552PG1042M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878534": "PCN\n |\n MDDS", + "879158": "PCN", + "879170": "PCN", + "878829": "PCN\n |\n MDDS", + "879368": "PCN", + "875962": "PCN\n |\n MDDS", + "882909": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "920", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "878922", + "Spec Code": "SL94S", + "Ordering Code": "BX80553920T2", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "920", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "878921", + "Spec Code": "SL94S", + "Ordering Code": "BX80553920T", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878543": "PCN\n |\n MDDS", + "878915": "PCN\n |\n MDDS", + "878921": "MDDS", + "875961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "930", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "879468", + "Spec Code": "SL95X", + "Ordering Code": "BX80553930T2", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878857": "PCN\n |\n MDDS", + "879463": "PCN", + "878542": "PCN\n |\n MDDS", + "878916": "PCN", + "878919": "PCN", + "878920": "PCN", + "875960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "940", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "B1=68.6°C, C1=63.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "882010", + "Spec Code": "SL95W", + "Ordering Code": "BX80553940T2", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878854": "PCN\n |\n MDDS", + "879461": "PCN", + "878544": "PCN\n |\n MDDS", + "878914": "PCN", + "878918": "PCN", + "875959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "950", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "C1+D0=63.4°C, B1=68.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "885737", + "Spec Code": "SL9K8", + "Ordering Code": "BX80553950", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "878855": "PCN\n |\n MDDS", + "879460": "PCN", + "882892": "PCN\n |\n MDDS", + "878541": "PCN\n |\n MDDS", + "878913": "PCN", + "875958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "955", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.46 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "68.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "878912", + "Spec Code": "SL94N", + "Ordering Code": "BX80553955", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "875955": "PCN\n |\n MDDS", + "878540": "PCN\n |\n MDDS", + "878912": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Presler", + "Vertical Segment": "Desktop", + "Processor Number": "965", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.73 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.3375V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "68.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "162 mm2", + "# of Processing Die Transistors": "376 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "880675", + "Spec Code": "SL9AN", + "Ordering Code": "BX80553965", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "880346": "PCN\n |\n MDDS", + "880675": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "511", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Execute Disable Bit ‡": "Yes", + "MM#": "882981", + "Spec Code": "SL9CJ", + "Ordering Code": "BX80547PEP280EN", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "874705": "PCN\n |\n MDDS", + "874704": "PCN", + "881583": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "516", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "874036", + "Spec Code": "SL8PM", + "Ordering Code": "HH80547PE0771MN", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "874036": "PCN", + "871199": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "540J", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.425V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "866897", + "Spec Code": "SL7PW", + "Ordering Code": "BX80547PG3200EJ", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862865": "PCN\n |\n MDDS", + "866897": "PCN", + "866208": "PCN\n |\n MDDS", + "866278": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "630", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "66.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875861", + "Spec Code": "SL8Q7", + "Ordering Code": "BX80547PG3000FT", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872826": "PCN\n |\n MDDS", + "875854": "PCN", + "875861": "PCN\n |\n MDDS", + "866087": "MDDS", + "866433": "MDDS", + "867291": "PCN\n |\n MDDS", + "869547": "PCN", + "870314": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "662", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "873040", + "Spec Code": "SL8QB", + "Ordering Code": "HH80547PG1042MH", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "873040": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "672", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "873036", + "Spec Code": "SL8Q9", + "Ordering Code": "HH80547PG1122MH", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "873036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "515", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "866811", + "Spec Code": "SL85V", + "Ordering Code": "JM80547PE0771M", + "Shipping Media": "TRAY", + "Stepping": "E1", + "866811": "PCN\n |\n MDDS", + "865759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "517", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.93 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "880728", + "Spec Code": "SL9CD", + "Ordering Code": "HH80547PE0771MM", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "880728": "PCN", + "872740": "PCN", + "877093": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "521", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "881585", + "Spec Code": "SL8PP", + "Ordering Code": "BX80547PGP280EK", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "880731": "PCN\n |\n MDDS", + "871198": "PCN\n |\n MDDS", + "872438": "PCN", + "872739": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "561", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "872652", + "Spec Code": "SL8J6", + "Ordering Code": "BX80547PG360EKT", + "Shipping Media": "BOX", + "Stepping": "E3", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "864804": "PCN", + "861910": "PCN\n |\n MDDS", + "863935": "PCN", + "871215": "PCN\n |\n MDDS", + "872647": "PCN", + "872652": "PCN", + "862880": "PCN\n |\n MDDS", + "868253": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "571", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "872648", + "Spec Code": "SL8J7", + "Ordering Code": "BX80547PG3800EK", + "Shipping Media": "BOX", + "Stepping": "E3", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862881": "PCN\n |\n MDDS", + "868255": "PCN", + "871216": "PCN\n |\n MDDS", + "872648": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "506", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Execute Disable Bit ‡": "Yes", + "MM#": "882982", + "Spec Code": "SL9CK", + "Ordering Code": "BX80547PEP266EN", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871196": "PCN\n |\n MDDS", + "872643": "PCN", + "880734": "PCN", + "882982": "PCN", + "874037": "PCN", + "874330": "PCN", + "881582": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "670", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875871", + "Spec Code": "SL8Q9", + "Ordering Code": "BX80547PG3800FH", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "867280": "PCN\n |\n MDDS", + "871076": "PCN", + "871586": "PCN", + "872822": "PCN\n |\n MDDS", + "875852": "PCN", + "875857": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Smithfield", + "Vertical Segment": "Desktop", + "Processor Number": "820", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "64.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "206 mm2", + "# of Processing Die Transistors": "230 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "877543", + "Spec Code": "SL88T", + "Ordering Code": "BX80551PG280FT2", + "Shipping Media": "BOX", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "870800": "PCN", + "871057": "PCN\n |\n MDDS", + "870804": "PCN", + "871067": "PCN", + "871381": "PCN", + "877543": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Smithfield", + "Vertical Segment": "Desktop", + "Processor Number": "830", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "206 mm2", + "# of Processing Die Transistors": "230 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "871380", + "Spec Code": "SL88S", + "Ordering Code": "BX80551PG3000FT", + "Shipping Media": "BOX", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "870801": "PCN", + "871053": "PCN", + "871056": "PCN\n |\n MDDS", + "870805": "PCN", + "871065": "PCN", + "871380": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Smithfield", + "Vertical Segment": "Desktop", + "Processor Number": "840", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "206 mm2", + "# of Processing Die Transistors": "230 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "871376", + "Spec Code": "SL88R", + "Ordering Code": "BX80551PG3200FT", + "Shipping Media": "BOX", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "870803": "PCN", + "871050": "PCN", + "871051": "PCN\n |\n MDDS", + "870807": "PCN", + "871062": "PCN", + "871376": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Smithfield", + "Vertical Segment": "Desktop", + "Processor Number": "840", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "1.200-1.400V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "206 mm2", + "# of Processing Die Transistors": "230 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "871377", + "Spec Code": "SL8FK", + "Ordering Code": "BX80551PGH3200F", + "Shipping Media": "BOX", + "Stepping": "A0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "870806": "PCN", + "871377": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "505J", + "Status": "Discontinued", + "Launch Date": "Q1'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.66 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "872414", + "Spec Code": "SL85U", + "Ordering Code": "BX80547PE2667EJ", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "866809": "PCN\n |\n MDDS", + "872414": "PCN", + "865646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "640", + "Status": "Discontinued", + "Launch Date": "Q1'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "66.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875860", + "Spec Code": "SL8Q6", + "Ordering Code": "BX80547PG3200FT", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872825": "PCN\n |\n MDDS", + "875856": "PCN\n |\n MDDS", + "875860": "PCN", + "866086": "MDDS", + "866431": "MDDS", + "867290": "PCN\n |\n MDDS", + "869534": "PCN", + "870313": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "650", + "Status": "Discontinued", + "Launch Date": "Q1'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "66.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875859", + "Spec Code": "SL8Q5", + "Ordering Code": "BX80547PG3400FT", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872823": "PCN\n |\n MDDS", + "875851": "PCN", + "875859": "PCN", + "866085": "MDDS", + "866430": "MDDS", + "867289": "PCN\n |\n MDDS", + "869533": "PCN", + "870312": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "660", + "Status": "Discontinued", + "Launch Date": "Q1'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775, PPGA775", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "875870", + "Spec Code": "SL8QB", + "Ordering Code": "BX80547PG3600FH", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "866084": "MDDS", + "866429": "MDDS", + "867285": "PCN\n |\n MDDS", + "869530": "PCN", + "870311": "PCN", + "872824": "PCN\n |\n MDDS", + "875855": "PCN", + "875858": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Smithfield", + "Vertical Segment": "Desktop", + "Processor Number": "805", + "Status": "Discontinued", + "Launch Date": "Q1'05", + "Lithography": "90 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PLGA775", + "TCASE": "64.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "206 mm2", + "# of Processing Die Transistors": "230 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "879857", + "Spec Code": "SL8ZH", + "Ordering Code": "BX80551PE2666FN", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "877077": "PCN", + "879857": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "760", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "27 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.260V-1.356V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478, H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "915906", + "Spec Code": "SLJ8S", + "Ordering Code": "RH80536GE0412M", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "867109": "PCN\n |\n MDDS", + "915860": "PCN\n |\n MDDS", + "915906": "PCN\n |\n MDDS", + "864656": "PCN\n |\n MDDS", + "868606": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "519K", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.06 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.25V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "874038", + "Spec Code": "SL8PN", + "Ordering Code": "HH80547PE0831MN", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871207": "PCN\n |\n MDDS", + "874038": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "520J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.250-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "883652", + "Spec Code": "SL9CG", + "Ordering Code": "BX80547PG2800E", + "Shipping Media": "BOX", + "Stepping": "G1", + "862852": "PCN\n |\n MDDS", + "866883": "PCN", + "862861": "PCN\n |\n MDDS", + "861635": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "530J", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "866896", + "Spec Code": "SL7PU", + "Ordering Code": "BX80547PG3000EJ", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "866204": "PCN\n |\n MDDS", + "866275": "PCN", + "862862": "PCN\n |\n MDDS", + "866896": "PCN", + "861624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "550", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "883661", + "Spec Code": "SL9C5", + "Ordering Code": "BX80547PG3400E", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "861638": "PCN\n |\n MDDS", + "866210": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "570", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "868357", + "Spec Code": "SL82U", + "Ordering Code": "BX80547PG3800EJ", + "Shipping Media": "BOX", + "Stepping": "E2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "866504": "PCN\n |\n MDDS", + "866505": "PCN", + "865932": "PCN\n |\n MDDS", + "868357": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.46 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "110.7 W", + "VID Voltage Range": "1.287V-1.4V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775, LGA775", + "TCASE": "66°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "863567", + "Spec Code": "SL7RT", + "Ordering Code": "JM80532PH0992M", + "Shipping Media": "TRAY", + "Stepping": "MF", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "862277": "PCN\n |\n MDDS", + "863208": "PCN", + "863567": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.73 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.400V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA775", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "135 mm2", + "# of Processing Die Transistors": "169 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "870231", + "Spec Code": "SL7Z4", + "Ordering Code": "WX80547PH3733F", + "Shipping Media": "BOX", + "Stepping": "N0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "867279": "PCN\n |\n MDDS", + "867772": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "738", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "7.5 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.988V-1.116V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "915870", + "Spec Code": "SLJ95", + "Ordering Code": "RJ80536LC0172M", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "868295": "PCN\n |\n MDDS", + "915870": "PCN\n |\n MDDS", + "915861": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "541", + "Status": "Discontinued", + "Launch Date": "Q3'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884630", + "Spec Code": "SL9C6", + "Ordering Code": "BX80547PG3200EK", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871213": "PCN\n |\n MDDS", + "872650": "PCN", + "862866": "PCN\n |\n MDDS", + "868249": "PCN", + "872743": "PCN\n |\n MDDS", + "874347": "PCN", + "861909": "PCN\n |\n MDDS", + "863934": "PCN", + "880722": "PCN\n |\n MDDS", + "884630": "PCN", + "864803": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "531", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884631", + "Spec Code": "SL9CB", + "Ordering Code": "BX80547PG3000EK", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "871206": "PCN\n |\n MDDS", + "872649": "PCN", + "872741": "PCN\n |\n MDDS", + "874343": "PCN", + "880725": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "551", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "880712", + "Spec Code": "SL9C5", + "Ordering Code": "HH80547PG0961MM", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872734": "PCN\n |\n MDDS", + "872744": "PCN\n |\n MDDS", + "880712": "PCN\n |\n MDDS", + "864805": "PCN", + "862876": "PCN\n |\n MDDS", + "868251": "PCN", + "861916": "PCN\n |\n MDDS", + "863933": "PCN", + "871214": "PCN\n |\n MDDS", + "872646": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "745", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "7.5 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.276V-1.34V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PPGA478, H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "915904", + "Spec Code": "SLJ8Q", + "Ordering Code": "RH80536GC0332M", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "861841": "PCN\n |\n MDDS", + "875183": "PCN\n |\n MDDS", + "915866": "PCN\n |\n MDDS", + "875186": "PCN\n |\n MDDS", + "876243": "PCN\n |\n MDDS", + "915872": "PCN\n |\n MDDS", + "860478": "PCN\n |\n MDDS", + "915904": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "745A", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "21 W", + "VID Voltage Range": "1.276V-1.34V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "520", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "861591", + "Spec Code": "SL7J5", + "Ordering Code": "BX80547PG2800E", + "Shipping Media": "BOX", + "Stepping": "D1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "861562": "PCN", + "861591": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "530", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775, PPGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "883653", + "Spec Code": "SL9CB", + "Ordering Code": "BX80547PG3000E", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "861557": "PCN\n |\n MDDS", + "861615": "PCN\n |\n MDDS", + "857985": "PCN\n |\n MDDS", + "858654": "PCN\n |\n MDDS", + "868027": "PCN\n |\n MDDS", + "868045": "PCN\n |\n MDDS", + "866903": "PCN", + "859163": "PCN\n |\n MDDS", + "861585": "PCN\n |\n MDDS", + "871493": "PCN\n |\n MDDS", + "872636": "PCN\n |\n MDDS", + "873306": "PCN\n |\n MDDS", + "861563": "PCN", + "863419": "PCN", + "862842": "PCN\n |\n MDDS", + "868015": "PCN\n |\n MDDS", + "861592": "PCN", + "861636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "540", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "84 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775, PPGA478", + "TCASE": "67.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "883660", + "Spec Code": "SL9C6", + "Ordering Code": "BX80547PG3200E", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "857995": "PCN\n |\n MDDS", + "858683": "PCN\n |\n MDDS", + "861558": "PCN\n |\n MDDS", + "861618": "PCN\n |\n MDDS", + "871494": "PCN\n |\n MDDS", + "872640": "PCN\n |\n MDDS", + "873309": "PCN\n |\n MDDS", + "863581": "PCN", + "857988": "PCN\n |\n MDDS", + "858655": "PCN\n |\n MDDS", + "868029": "PCN\n |\n MDDS", + "868046": "PCN\n |\n MDDS", + "862840": "PCN\n |\n MDDS", + "868017": "PCN\n |\n MDDS", + "861564": "PCN", + "859164": "PCN\n |\n MDDS", + "861586": "PCN\n |\n MDDS", + "861593": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Processor Number": "550", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "115 W", + "VID Voltage Range": "1.200V-1.425V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775, PPGA478", + "TCASE": "72.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "873310", + "Spec Code": "SL8K4", + "Ordering Code": "BX80546PG3400E", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "857996": "PCN\n |\n MDDS", + "858680": "PCN\n |\n MDDS", + "857989": "PCN\n |\n MDDS", + "858656": "PCN\n |\n MDDS", + "861551": "PCN\n |\n MDDS", + "861559": "PCN\n |\n MDDS", + "862867": "PCN\n |\n MDDS", + "866899": "PCN", + "861565": "PCN", + "861605": "PCN\n |\n MDDS", + "868033": "PCN\n |\n MDDS", + "868048": "PCN\n |\n MDDS", + "861594": "PCN", + "859165": "PCN\n |\n MDDS", + "861587": "PCN\n |\n MDDS", + "862839": "PCN\n |\n MDDS", + "871496": "PCN\n |\n MDDS", + "872641": "PCN\n |\n MDDS", + "873310": "PCN\n |\n MDDS", + "863582": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Dothan", + "Vertical Segment": "Mobile", + "Processor Number": "725", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "7.5 W", + "VID Voltage Range": "0.988V-1.340V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "87 mm2", + "# of Processing Die Transistors": "144 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "862967", + "Spec Code": "SL7EG", + "Ordering Code": "BXM80536GC1600F", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "860569": "PCN\n |\n MDDS", + "862967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "68.4 W", + "VID Voltage Range": "1.340V-1.525V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TCASE": "70°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "852328", + "Spec Code": "SL6S4", + "Ordering Code": "BX80532PE2800D", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "Varies By Product", + "851564": "PCN", + "851687": "PCN\n |\n MDDS", + "849134": "PCN\n |\n MDDS", + "849838": "PCN", + "850164": "PCN\n |\n MDDS", + "850335": "PCN", + "850240": "PCN\n |\n MDDS", + "850394": "PCN", + "851141": "PCN\n |\n MDDS", + "852328": "PCN", + "849244": "PCN\n |\n MDDS", + "849259": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "89 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "69.4°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "89 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "69.4°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.00 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "89 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "Yes", + "TCASE": "73.5°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "103 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "73.5°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "103 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "73.5°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "103 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "73.5°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Prescott", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.40 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "103 W", + "VID Voltage Range": "1.250V-1.400V", + "Embedded Options Available": "No", + "TCASE": "73.5°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Banias", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "24.5 W", + "VID Voltage Range": "0.956V-1.484V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478, H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "83 mm2", + "# of Processing Die Transistors": "77 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "869601", + "Spec Code": "SL8BH", + "Ordering Code": "LE80535GC0251M", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "869601": "PCN\n |\n MDDS", + "848229": "PCN", + "848226": "PCN\n |\n MDDS", + "852160": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Banias", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q2'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.10 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "12 W", + "VID Voltage Range": "0.956V-1.180V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "H-PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "83 mm2", + "# of Processing Die Transistors": "77 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "870139", + "Spec Code": "SL8FL", + "Ordering Code": "LE80535LC0051M", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "870139": "PCN\n |\n MDDS", + "851287": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "62.6 W", + "VID Voltage Range": "1.345V-1.525V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TCASE": "70°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853450", + "Spec Code": "SL6SB", + "Ordering Code": "BX80532PC2600D", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "848572": "PCN", + "849048": "PCN\n |\n MDDS", + "850365": "PCN\n |\n MDDS", + "853441": "PCN", + "850919": "PCN\n |\n MDDS", + "853450": "PCN", + "850484": "PCN\n |\n MDDS", + "852330": "PCN", + "851573": "PCN", + "848649": "PCN\n |\n MDDS", + "849955": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853786", + "Spec Code": "SL6VB", + "Ordering Code": "BXM80532GC2200D", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "Varies By Product", + "849418": "PCN", + "849419": "PCN", + "849466": "PCN\n |\n MDDS", + "849594": "PCN", + "849061": "PCN\n |\n MDDS", + "849921": "PCN", + "852256": "PCN\n |\n MDDS", + "853786": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Mobile", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.70 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "30 W", + "VID Voltage Range": "1.3V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853940", + "Spec Code": "SL6V6", + "Ordering Code": "BXM80532GC1700D", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "Varies By Product", + "847036": "PCN\n |\n MDDS", + "851628": "PCN", + "842155": "PCN\n |\n MDDS", + "844384": "PCN", + "852229": "PCN\n |\n MDDS", + "853940": "PCN", + "848089": "PCN\n |\n MDDS", + "851046": "PCN", + "839418": "PCN\n |\n MDDS", + "845233": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "54.3 W", + "VID Voltage Range": "1.360V-1.435V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TCASE": "69°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853446", + "Spec Code": "SL6PK", + "Ordering Code": "BX80532PC2000D", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "849304": "PCN", + "839247": "PCN\n |\n MDDS", + "843829": "PCN", + "840348": "PCN\n |\n MDDS", + "840355": "PCN", + "845599": "PCN\n |\n MDDS", + "845607": "PCN", + "841429": "PCN\n |\n MDDS", + "843622": "PCN", + "850362": "PCN\n |\n MDDS", + "853446": "PCN", + "844541": "PCN\n |\n MDDS", + "845665": "PCN", + "850481": "PCN\n |\n MDDS", + "852335": "PCN", + "851434": "PCN", + "851472": "PCN\n |\n MDDS", + "848653": "PCN\n |\n MDDS", + "849256": "PCN", + "851204": "PCN\n |\n MDDS", + "853442": "PCN", + "849342": "PCN", + "848158": "PCN", + "848580": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.20 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "57.1 W", + "VID Voltage Range": "1.360V-1.435V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "70°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853455", + "Spec Code": "SL6S8", + "Ordering Code": "BX80532PC2200D", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "839248": "PCN\n |\n MDDS", + "843827": "PCN", + "840350": "PCN\n |\n MDDS", + "840359": "PCN", + "848159": "PCN", + "848581": "PCN\n |\n MDDS", + "851205": "PCN\n |\n MDDS", + "853455": "PCN", + "844657": "PCN\n |\n MDDS", + "845600": "PCN\n |\n MDDS", + "845605": "PCN", + "848647": "PCN\n |\n MDDS", + "849949": "PCN", + "850363": "PCN\n |\n MDDS", + "853445": "PCN", + "844542": "PCN\n |\n MDDS", + "845664": "PCN", + "850482": "PCN\n |\n MDDS", + "852334": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "59.8 W", + "VID Voltage Range": "1.350V-1.430V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "71°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853454", + "Spec Code": "SL6S9", + "Ordering Code": "BX80532PC2400D", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "848160": "PCN", + "848582": "PCN\n |\n MDDS", + "851151": "PCN\n |\n MDDS", + "853454": "PCN", + "850483": "PCN\n |\n MDDS", + "852333": "PCN", + "851475": "PCN\n |\n MDDS", + "851575": "PCN", + "851685": "PCN", + "845081": "PCN", + "845083": "PCN\n |\n MDDS", + "845601": "PCN\n |\n MDDS", + "845606": "PCN", + "848646": "PCN\n |\n MDDS", + "849950": "PCN", + "843946": "PCN\n |\n MDDS", + "845082": "PCN", + "850364": "PCN\n |\n MDDS", + "853444": "PCN", + "844543": "PCN\n |\n MDDS", + "845663": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "59.8 W", + "VID Voltage Range": "1.350V-1.525V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478", + "TCASE": "71°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "857396", + "Spec Code": "SL79B", + "Ordering Code": "RK80532PE056512", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "850237": "PCN\n |\n MDDS", + "850349": "PCN", + "851138": "PCN\n |\n MDDS", + "852324": "PCN", + "857388": "PCN", + "857396": "PCN\n |\n MDDS", + "845186": "PCN\n |\n MDDS", + "846275": "PCN", + "847366": "PCN\n |\n MDDS", + "850027": "PCN", + "850158": "PCN\n |\n MDDS", + "850339": "PCN", + "856198": "PCN", + "851501": "PCN\n |\n MDDS", + "851569": "PCN", + "847759": "PCN\n |\n MDDS", + "848392": "PCN", + "847644": "PCN\n |\n MDDS", + "849114": "PCN", + "847436": "PCN\n |\n MDDS", + "849842": "PCN", + "845273": "PCN\n |\n MDDS", + "845288": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Northwood", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.50 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "No", + "TDP": "61 W", + "VID Voltage Range": "1.350V-1.430V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TCASE": "72°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "853451", + "Spec Code": "SL6SA", + "Ordering Code": "BX80532PC2500D", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "Varies By Product", + "US HTS": "Varies By Product", + "CCATS": "NA", + "850486": "PCN\n |\n MDDS", + "852331": "PCN", + "848161": "PCN", + "848579": "PCN\n |\n MDDS", + "848645": "PCN\n |\n MDDS", + "849953": "PCN", + "850366": "PCN\n |\n MDDS", + "850920": "PCN\n |\n MDDS", + "853451": "PCN", + "850411": "PCN\n |\n MDDS", + "853443": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Tualatin", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q4'01", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.26 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "30.4 W", + "VID Voltage Range": "1.5V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370", + "TCASE": "69°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "851289", + "Spec Code": "SL6BX", + "Ordering Code": "BX80530C1266512", + "Shipping Media": "BOX", + "Stepping": "BA", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "836583": "PCN", + "836829": "PCN\n |\n MDDS", + "836721": "PCN\n |\n MDDS", + "844838": "PCN", + "847861": "PCN\n |\n MDDS", + "849119": "PCN", + "851289": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Tualatin", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q4'01", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "800 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "10.63 W", + "VID Voltage Range": "1.15V", + "Embedded Options Available": "Yes", + "Sockets Supported": "H-PBGA479", + "TCASE": "100°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "848638", + "Spec Code": "SL6HC", + "Ordering Code": "RJ80530KZ800512", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "848638": "PCN", + "844363": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Tualatin", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q4'01", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "933 MHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "11.61 W", + "VID Voltage Range": "1.15V", + "Embedded Options Available": "Yes", + "Sockets Supported": "H-PBGA479", + "TCASE": "100°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "849162", + "Spec Code": "SL69K", + "Ordering Code": "RJ80530KZ933512", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "849162": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "100 MHz", + "TDP": "29 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2495", + "TCASE": "75°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "854495", + "Spec Code": "SL5QV", + "Ordering Code": "BX80526F1000256", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "836655": "PCN\n |\n MDDS", + "854495": "PCN", + "830767": "PCN", + "830782": "PCN", + "830189": "PCN", + "835906": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.00 GHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "29 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2, SECC2495", + "TCASE": "75°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "841931", + "Spec Code": "SL5B3", + "Ordering Code": "BX80526C1000256", + "Shipping Media": "BOX", + "Stepping": "A0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "830699": "PCN\n |\n MDDS", + "830707": "PCN", + "830713": "PCN", + "829991": "PCN", + "830024": "PCN", + "836606": "PCN\n |\n MDDS", + "829132": "PCN", + "834990": "PCN\n |\n MDDS", + "834992": "PCN", + "835720": "PCN\n |\n MDDS", + "838383": "PCN", + "831335": "PCN\n |\n MDDS", + "837158": "PCN", + "833076": "PCN\n |\n MDDS", + "833416": "PCN\n |\n MDDS", + "837159": "PCN", + "834380": "PCN\n |\n MDDS", + "841931": "PCN", + "834442": "PCN\n |\n MDDS", + "834448": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "600 MHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "100 MHz", + "TDP": "19.5 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2, H-PBGA, SECC2495", + "TCASE": "82°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "854497", + "Spec Code": "SL5BT", + "Ordering Code": "BX80526F600256", + "Shipping Media": "BOX", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "Varies By Product", + "Stepping": "D0", + "830152": "PCN\n |\n MDDS", + "828101": "PCN\n |\n MDDS", + "828260": "PCN", + "828299": "PCN", + "828311": "PCN", + "827347": "PCN\n |\n MDDS", + "824977": "PCN", + "824978": "PCN", + "825171": "PCN", + "828113": "PCN", + "834318": "PCN\n |\n MDDS", + "854497": "PCN", + "830199": "PCN", + "822784": "PCN", + "825423": "PCN\n |\n MDDS", + "825580": "PCN", + "825582": "PCN", + "828454": "PCN", + "828572": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "700 MHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "100 MHz", + "TDP": "18.3 W", + "VID Voltage Range": "1.65V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2, SECC2495", + "TCASE": "80°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "833747", + "Spec Code": "SL4ZM", + "Ordering Code": "RB80526PY700256", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "830708": "PCN", + "830714": "MDDS", + "825702": "PCN", + "825835": "PCN", + "825838": "PCN", + "830150": "PCN\n |\n MDDS", + "833420": "PCN", + "827314": "PCN\n |\n MDDS", + "833747": "PCN\n |\n MDDS", + "828128": "PCN", + "828577": "PCN\n |\n MDDS", + "828610": "PCN", + "828623": "PCN", + "825820": "PCN\n |\n MDDS", + "825823": "PCN", + "825827": "PCN", + "828106": "PCN\n |\n MDDS", + "830689": "PCN", + "828264": "PCN", + "828295": "PCN", + "828308": "PCN", + "830195": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "733 MHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "22.8 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2370, SECC2, SECC2495", + "TCASE": "80°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "854498", + "Spec Code": "SL4ZL", + "Ordering Code": "BX80526C733256", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "830540": "PCN", + "830556": "PCN", + "828091": "PCN", + "829754": "PCN", + "827315": "PCN\n |\n MDDS", + "830140": "PCN\n |\n MDDS", + "834932": "PCN", + "835056": "PCN", + "835200": "PCN", + "825821": "PCN\n |\n MDDS", + "825822": "PCN", + "825825": "PCN", + "828117": "PCN\n |\n MDDS", + "830690": "PCN", + "828265": "PCN", + "828294": "PCN", + "828307": "PCN", + "829968": "PCN", + "829969": "PCN", + "830200": "PCN", + "830715": "PCN\n |\n MDDS", + "830760": "PCN", + "828574": "PCN\n |\n MDDS", + "828611": "PCN", + "828626": "PCN", + "825839": "PCN", + "833404": "PCN\n |\n MDDS", + "854498": "PCN", + "826019": "PCN", + "830166": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "850 MHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "100 MHz", + "TDP": "22.5 W", + "VID Voltage Range": "1.7V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2, SECC2495", + "TCASE": "80°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "838388", + "Spec Code": "SL43F", + "Ordering Code": "BX80526U850256E", + "Shipping Media": "BOX", + "Stepping": "L0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "828862": "PCN\n |\n MDDS", + "830181": "PCN", + "828593": "PCN", + "828625": "PCN", + "830700": "PCN\n |\n MDDS", + "830712": "PCN", + "833400": "PCN\n |\n MDDS", + "828877": "PCN", + "838388": "PCN", + "830765": "PCN", + "830809": "PCN", + "829423": "PCN", + "829424": "PCN", + "829472": "PCN\n |\n MDDS", + "830147": "PCN\n |\n MDDS", + "834937": "PCN", + "835198": "PCN" + }, + { + "Product Collection": "Legacy Intel® Pentium® Processor", + "Code Name": "Products formerly Coppermine", + "Vertical Segment": "Desktop", + "Status": "Discontinued", + "Launch Date": "Q1'00", + "Lithography": "180 nm", + "Total Cores": "1", + "Processor Base Frequency": "866 MHz", + "Cache": "256 KB L2 Cache", + "Bus Speed": "133 MHz", + "TDP": "26.1 W", + "VID Voltage Range": "1.75V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA370, SECC2, SECC2495", + "TCASE": "80°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Instruction Set": "32-bit", + "MM#": "837742", + "Spec Code": "SL4ZJ", + "Ordering Code": "BX80526C866256E", + "Shipping Media": "BOX", + "Stepping": "L0", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "829021": "PCN", + "834444": "PCN\n |\n MDDS", + "835568": "PCN", + "836600": "PCN\n |\n MDDS", + "828588": "PCN", + "828595": "PCN", + "828627": "PCN", + "828861": "PCN\n |\n MDDS", + "830701": "PCN\n |\n MDDS", + "830706": "PCN", + "830756": "PCN", + "830163": "PCN", + "834381": "PCN\n |\n MDDS", + "829425": "PCN", + "829477": "PCN\n |\n MDDS", + "829543": "PCN", + "829544": "PCN", + "830138": "PCN\n |\n MDDS", + "835616": "PCN", + "830766": "PCN", + "830783": "PCN", + "833403": "PCN\n |\n MDDS", + "837742": "PCN" + }, + { + "Product Collection": "Intel® NUC 9 Extreme Laptop Kit", + "Status": "Launched", + "Launch Date": "Q3'19", + "Board Number": "LAPQC71A", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Discrete Graphics": "GeForce* GTX 1660Ti", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "356.4mm x 233.6mm x 20.5mm" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC 9 Extreme Laptop Kit", + "Status": "Launched", + "Launch Date": "Q3'19", + "Board Number": "LAPQC71B", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Discrete Graphics": "GeForce* RTX 2070 Max-Q", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "356.4mm x 233.6mm x 20.5mm" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC 9 Extreme Laptop Kit", + "Status": "Launched", + "Launch Date": "Q3'19", + "Board Number": "LAPQC71C", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Discrete Graphics": "GeForce* RTX 2060", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "356.4mm x 233.6mm x 20.5mm" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC 9 Extreme Laptop Kit", + "Status": "Launched", + "Launch Date": "Q3'19", + "Board Number": "LAPQC71D", + "Lithography": "14 nm", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Discrete Graphics": "GeForce* RTX 2070 Super Max-Q", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "356.4mm x 233.6mm x 20.5mm" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Code Name": "Products formerly Rooks County", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Lithography": "Intel 7", + "TDP": "28 W", + "Pre-Installed Operating System": "Windows 11 Home*", + "Processor Included": "Intel® Core™ i5-1240P Processor (12M Cache, up to 4.40 GHz)", + "Total Cores": "12", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Storage": "512GB", + "Included Memory": "16GB", + "Memory Types": "LPDDR5-5200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 15mm", + "MM#": "99AMNA", + "Ordering Code": "BRC510EAUXBC1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1240P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVAD", + "Spec Code": "SRLD9", + "Ordering Code": "FJ8071504787907", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVAD": "PCN" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Code Name": "Products formerly Rooks County", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Lithography": "Intel 7", + "TDP": "28 W", + "Pre-Installed Operating System": "Windows 11 Home*", + "Processor Included": "Intel® Core™ i7-1260P Processor (18M Cache, up to 4.70 GHz)", + "Total Cores": "12", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Storage": "1TB", + "Included Memory": "16GB", + "Memory Types": "LPDDR5-5200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 15mm", + "MM#": "99AMRA", + "Ordering Code": "BRC710ECUXBD1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1260P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA9", + "Spec Code": "SRLD6", + "Ordering Code": "FJ8071504786607", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA9": "PCN" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Code Name": "Products formerly Rooks County", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Lithography": "Intel 7", + "TDP": "28 W", + "Processor Included": "Intel® Core™ i5-1240P Processor (12M Cache, up to 4.40 GHz)", + "Total Cores": "12", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Memory": "16GB", + "Memory Types": "LPDDR5-5200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 15mm", + "MM#": "99AMN7", + "Ordering Code": "BRC510BAG7B02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1240P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVAD", + "Spec Code": "SRLD9", + "Ordering Code": "FJ8071504787907", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVAD": "PCN" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Code Name": "Products formerly Rooks County", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Lithography": "Intel 7", + "TDP": "28 W", + "Processor Included": "Intel® Core™ i7-1260P Processor (18M Cache, up to 4.70 GHz)", + "Total Cores": "12", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Memory": "16GB or 32GB", + "Memory Types": "LPDDR5-5200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 15mm", + "MM#": "99AMP7", + "Ordering Code": "BRC710BCG7B02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1260P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA9", + "Spec Code": "SRLD6", + "Ordering Code": "FJ8071504786607", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA9": "PCN" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Status": "Launched", + "Launch Date": "Q4'20", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Board Number": "LAPBC510", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz, with IPU)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Memory": "8GB Dual-Channel LPDDR4x-4266MHz", + "ECC Memory Supported ‡": "No", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 14.9mm", + "MM#": "99A93P", + "Ordering Code": "BBC510BCS7A02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100", + "99A6GN": "PCN", + "99A6GP": "PCN\n |\n MDDS", + "99A6H7": "PCN", + "99A6H8": "PCN\n |\n MDDS", + "99A6HC": "PCN", + "99A6HD": "PCN\n |\n MDDS", + "99A6HK": "PCN\n |\n MDDS", + "99A6HN": "PCN\n |\n MDDS", + "99A6JD": "PCN", + "99A6JF": "PCN\n |\n MDDS", + "99A6JJ": "PCN", + "99A6JK": "PCN\n |\n MDDS", + "99A91Z": "PCN", + "99A93G": "PCN\n |\n MDDS", + "99A93J": "PCN", + "99A93N": "PCN", + "99A93P": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DD", + "Spec Code": "SRK04", + "Ordering Code": "FH8069004530601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC M15 Laptop Kit", + "Status": "Launched", + "Launch Date": "Q4'20", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Board Number": "LAPBC710", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz, with IPU)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Included Memory": "16GB Dual-Channel LPDDR4x-4266MHz", + "ECC Memory Supported ‡": "No", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "2", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "355mm x 230mm x 14.9mm", + "MM#": "99A940", + "Ordering Code": "BBC710BCI7B02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100", + "99A6JX": "PCN\n |\n MDDS", + "99A6JZ": "PCN\n |\n MDDS", + "99A6K4": "PCN\n |\n MDDS", + "99A6K5": "PCN\n |\n MDDS", + "99A6KH": "PCN\n |\n MDDS", + "99A6KV": "PCN\n |\n MDDS", + "99A93X": "PCN\n |\n MDDS", + "99A93Z": "PCN\n |\n MDDS", + "99A940": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3CX", + "Spec Code": "SRK01", + "Ordering Code": "FH8069004529905", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3CX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC X15 Laptop Kit", + "Code Name": "Products formerly King County", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Board Number": "LAPKC51E", + "Lithography": "10 nm SuperFin", + "TDP": "45 W", + "Processor Included": "Intel® Core™ i5-11400H Processor (12M Cache, up to 4.50 GHz)", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Memory Types": "DDR4-2933MHz, up to 64GB", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Discrete Graphics": "NVIDIA* GeForce* RTX3060", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "USB Configuration": "USB 3.2 Gen2", + "Integrated LAN": "2.5 Gigabit Ethernet", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Chassis Dimensions": "357mm x 235mm x 21.65mm", + "MM#": "99AJGL", + "Ordering Code": "BKC51EBBN6002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100", + "99AJGH": "PCN\n |\n MDDS", + "99AJGK": "MDDS", + "99AJGL": "MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11400H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDZ", + "Spec Code": "SRKT1", + "Ordering Code": "FH8069004351613", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDZ": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11800H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF1", + "Spec Code": "SRKT3", + "Ordering Code": "FH8069004352018", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC X15 Laptop Kit", + "Code Name": "Products formerly King County", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11*, Windows 10*", + "Board Number": "LAPKC71F", + "Lithography": "10 nm SuperFin", + "TDP": "45 W", + "Processor Included": "Intel® Core™ i7-11800H Processor (24M Cache, up to 4.60 GHz)", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Warranty Period": "2 yrs", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200MHz, up to 64GB", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Discrete Graphics": "NVIDIA* GeForce* RTX3070", + "M.2 Card Slot (storage)": "2", + "# of USB Ports": "3", + "USB Configuration": "USB 3.2 Gen2", + "Integrated LAN": "2.5 Gigabit Ethernet", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4", + "Chassis Dimensions": "357mm x 235mm x 21.65mm", + "MM#": "99AJGZ", + "Ordering Code": "BKC71FBFU6000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471300100", + "99AJGV": "PCN\n |\n MDDS", + "99AJGX": "PCN\n |\n MDDS", + "99AJGZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11800H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF1", + "Spec Code": "SRKT3", + "Ordering Code": "FH8069004352018", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1250", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A5", + "Spec Code": "SRH48", + "Ordering Code": "BX80701W1250", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL8": "PCN\n |\n MDDS", + "99A1A5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1250P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is not included", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.80 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A6", + "Spec Code": "SRH7H", + "Ordering Code": "BX80701W1250P", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W5C": "PCN\n |\n MDDS", + "99A1A6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1270", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A9", + "Spec Code": "SRH96", + "Ordering Code": "BX80701W1270", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZF": "PCN\n |\n MDDS", + "99A1A9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1270P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is not included", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.50 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A8", + "Spec Code": "SRH95", + "Ordering Code": "BX80701W1270P", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZ1": "PCN\n |\n MDDS", + "99A1A8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A7", + "Spec Code": "SRH94", + "Ordering Code": "BX80701W1290", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXZ": "PCN\n |\n MDDS", + "99A1A7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray only.", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WXW", + "Spec Code": "SRH93", + "Ordering Code": "CM8070104378412", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray only.", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WZH", + "Spec Code": "SRH97", + "Ordering Code": "CM8070104429007", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2254ME", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0L", + "Spec Code": "SRFEM", + "Ordering Code": "CL8068404175200", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2254ML", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0H", + "Spec Code": "SRFEJ", + "Ordering Code": "CL8068404165301", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2276ME", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F09", + "Spec Code": "SRFEC", + "Ordering Code": "CL8068404164700", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F09": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2276ML", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0F", + "Spec Code": "SRFEG", + "Ordering Code": "CL8068404165100", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2224G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JML", + "Spec Code": "SRFAW", + "Ordering Code": "BX80684E2224G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C89": "PCN\n |\n MDDS", + "999JML": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2226G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMG", + "Spec Code": "SRF7F", + "Ordering Code": "BX80684E2226G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ADW": "PCN\n |\n MDDS", + "999JMG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2244G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C8F", + "Spec Code": "SRFAY", + "Ordering Code": "CM8068404175105", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C8F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2246G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999AFN", + "Spec Code": "SRF7N", + "Ordering Code": "CM8068404227903", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AFN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2274G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "83 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMP", + "Spec Code": "SRFDE", + "Ordering Code": "BX80684E2274G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DJL": "PCN\n |\n MDDS", + "999JMP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2276G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999AFM", + "Spec Code": "SRF7M", + "Ordering Code": "CM8068404227703", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AFM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2276M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXD", + "Spec Code": "SRFCK", + "Ordering Code": "CL8068404068806", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2278G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CD4", + "Spec Code": "SRFB2", + "Ordering Code": "CM8068404225303", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CD4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2286G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "67.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999ADR", + "Spec Code": "SRF7C", + "Ordering Code": "CM8068404173706", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ADR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2286M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ4", + "Spec Code": "SRFCZ", + "Ordering Code": "CL8068404068710", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2288G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "67.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CD6", + "Spec Code": "SRFB3", + "Ordering Code": "CM8068404224102", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CD6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2124G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "Yes", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977233", + "Spec Code": "SR3WL", + "Ordering Code": "BX80684E2124G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963428": "PCN\n |\n MDDS", + "977233": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2126G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963464", + "Spec Code": "SR3WU", + "Ordering Code": "CM8068403380219", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2144G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963429", + "Spec Code": "SR3WM", + "Ordering Code": "CM8068403654220", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963429": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2146G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974864", + "Spec Code": "SR3WT", + "Ordering Code": "BX80684E2146G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963454": "PCN\n |\n MDDS", + "974864": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2174G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977244", + "Spec Code": "SR3WN", + "Ordering Code": "BX80684E2174G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963430": "PCN\n |\n MDDS", + "977244": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2176G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973773", + "Spec Code": "SR3WS", + "Ordering Code": "BX80684E2176G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963450": "PCN\n |\n MDDS", + "973773": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2186G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963448", + "Spec Code": "SR3WR", + "Ordering Code": "CM8068403379918", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963448": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2176M", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963717", + "Spec Code": "SR3YX", + "Ordering Code": "CL8068403359116", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963717": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2186M", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975245", + "Spec Code": "SRCKQ", + "Ordering Code": "CL8068403359021", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "975245": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVM", + "Spec Code": "SRH3P", + "Ordering Code": "BXC8070110105", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKH": "PCN\n |\n MDDS", + "99AFTR": "PCN\n |\n MDDS", + "99AFVM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10105T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKL", + "Spec Code": "SRH3R", + "Ordering Code": "CM8070104291414", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10305", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVL", + "Spec Code": "SRH3K", + "Ordering Code": "BXC8070110305", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKC": "PCN\n |\n MDDS", + "99AFTP": "MDDS", + "99AFVL": "MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10305T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKF", + "Spec Code": "SRH3M", + "Ordering Code": "CM8070104291214", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10325", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVK", + "Spec Code": "SRH3H", + "Ordering Code": "BXC8070110325", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK6": "PCN\n |\n MDDS", + "99AFTN": "MDDS", + "99AFVK": "MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ6", + "Spec Code": "SRH38", + "Ordering Code": "CM8070104290316", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ6": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV9", + "Spec Code": "SRH3V", + "Ordering Code": "BXC80701G6505", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKT": "PCN\n |\n MDDS", + "99AFPN": "MDDS", + "99AFV9": "MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6505T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKW", + "Spec Code": "SRH3X", + "Ordering Code": "CM8070104291709", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6605", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV8", + "Spec Code": "SRH3T", + "Ordering Code": "BXC80701G6605", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKN": "PCN\n |\n MDDS", + "99AFPM": "MDDS", + "99AFV8": "MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10850K", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A750", + "Spec Code": "SRK51", + "Ordering Code": "BX8070110850KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5VJ": "PCN", + "99A6W4": "PCN\n |\n MDDS", + "99A6W5": "PCN\n |\n MDDS", + "99A750": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1250E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXC", + "Spec Code": "SRH6L", + "Ordering Code": "CM8070104425005", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1250TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXD", + "Spec Code": "SRH6M", + "Ordering Code": "CM8070104440305", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1270E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0H5", + "Spec Code": "SRJGE", + "Ordering Code": "CM8070104420607", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A0H5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1270TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0H6", + "Spec Code": "SRJGF", + "Ordering Code": "CM8070104420706", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A0H6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1290E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A07W", + "Spec Code": "SRJFB", + "Ordering Code": "CM8070104420510", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A07W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1290TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A082", + "Spec Code": "SRJFH", + "Ordering Code": "CM8070104440205", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A082": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10100", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A012", + "Spec Code": "SRH3N", + "Ordering Code": "BXC8070110100", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKG": "PCN\n |\n MDDS", + "99A00J": "PCN\n |\n MDDS", + "99A012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-10100E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX1", + "Spec Code": "SRH6E", + "Ordering Code": "CM8070104423605", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10100T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKK", + "Spec Code": "SRH3Q", + "Ordering Code": "CM8070104291412", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-10100TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX2", + "Spec Code": "SRH6F", + "Ordering Code": "CM8070104423707", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10300", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A011", + "Spec Code": "SRH3J", + "Ordering Code": "BXC8070110300", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKA": "PCN\n |\n MDDS", + "99A00G": "PCN\n |\n MDDS", + "99A011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10300T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKD", + "Spec Code": "SRH3L", + "Ordering Code": "CM8070104291212", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10320", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A010", + "Spec Code": "SRH3G", + "Ordering Code": "BXC8070110320", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK4": "PCN\n |\n MDDS", + "99A00F": "PCN\n |\n MDDS", + "99A010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10400", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8 / 0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A102", + "Spec Code": "SRH78", + "Ordering Code": "BXC8070110400", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W51": "PCN\n |\n MDDS", + "99A0V8": "PCN\n |\n MDDS", + "99A102": "PCN\n |\n MDDS", + "999TJA": "PCN\n |\n MDDS", + "99A00D": "PCN\n |\n MDDS", + "99A00X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10400T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TK3", + "Spec Code": "SRH3F", + "Ordering Code": "CM8070104290806", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10500", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A00W", + "Spec Code": "SRH3A", + "Ordering Code": "BXC8070110500", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ8": "PCN\n |\n MDDS", + "99A00C": "PCN\n |\n MDDS", + "99A00W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-10500E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A087", + "Spec Code": "SRJFL", + "Ordering Code": "CM8070104510607", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VWZ": "PCN\n |\n MDDS", + "99A087": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10500T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ9", + "Spec Code": "SRH3B", + "Ordering Code": "CM8070104290606", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-10500TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX0", + "Spec Code": "SRH6D", + "Ordering Code": "CM8070104422406", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A00V", + "Spec Code": "SRH37", + "Ordering Code": "BXC8070110600", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ5": "PCN\n |\n MDDS", + "99A00A": "PCN\n |\n MDDS", + "99A00V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.80 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FN", + "Spec Code": "SRH6R", + "Ordering Code": "BX8070110600KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W41": "PCN\n |\n MDDS", + "99A0V5": "PCN\n |\n MDDS", + "99A0ZX": "PCN\n |\n MDDS", + "99A5FN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ7", + "Spec Code": "SRH39", + "Ordering Code": "CM8070104290410", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0ZZ", + "Spec Code": "SRH6Y", + "Ordering Code": "BXC8070110700", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4A": "PCN\n |\n MDDS", + "99A0V6": "PCN\n |\n MDDS", + "99A0ZZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-10700E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A083", + "Spec Code": "SRJFJ", + "Ordering Code": "CM8070104498106", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.50 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FW", + "Spec Code": "SRH72", + "Ordering Code": "BXC8070110700KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4G": "PCN\n |\n MDDS", + "99A0V7": "PCN\n |\n MDDS", + "99A100": "PCN\n |\n MDDS", + "99A5FP": "PCN\n |\n MDDS", + "99A5FW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W44", + "Spec Code": "SRH6U", + "Ordering Code": "CM8070104282215", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W44": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-10700TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A081", + "Spec Code": "SRJFG", + "Ordering Code": "CM8070104420905", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A081": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A103", + "Spec Code": "SRH8Z", + "Ordering Code": "BXC8070110900", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXC": "PCN\n |\n MDDS", + "99A0V9": "PCN\n |\n MDDS", + "99A103": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-10900E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Thermal Velocity Boost Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A080", + "Spec Code": "SRJFD", + "Ordering Code": "CM8070104420408", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FX", + "Spec Code": "SRH91", + "Ordering Code": "BXC8070110900KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXM": "PCN\n |\n MDDS", + "99A0VA": "PCN\n |\n MDDS", + "99A0ZW": "PCN\n |\n MDDS", + "99A5FR": "PCN\n |\n MDDS", + "99A5FX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WX5", + "Spec Code": "SRH8Y", + "Ordering Code": "CM8070104282515", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WX5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-10900TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A07Z", + "Spec Code": "SRJFC", + "Ordering Code": "CM8070104420306", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A07Z": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6500", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A014", + "Spec Code": "SRH3U", + "Ordering Code": "BXC80701G6500", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKR": "PCN\n |\n MDDS", + "99A00L": "PCN\n |\n MDDS", + "99A014": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6500T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKV", + "Spec Code": "SRH3W", + "Ordering Code": "CM8070104291707", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6600", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A013", + "Spec Code": "SRH3S", + "Ordering Code": "BXC80701G6600", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKM": "PCN\n |\n MDDS", + "99A00K": "PCN\n |\n MDDS", + "99A013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900KS", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Warranty Period": "1 yrs", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "127 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H3Z", + "Spec Code": "SRG1Q", + "Ordering Code": "CM8068404170208", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3Z": "MDDS", + "999MGT": "MDDS", + "999MGV": "MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMT", + "Spec Code": "SRGQY", + "Ordering Code": "CM8068404404829", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAL": "PCN\n |\n MDDS", + "999LMT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100HL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0J", + "Spec Code": "SRFEK", + "Ordering Code": "CL8068404165400", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMZ", + "Spec Code": "SRGR0", + "Ordering Code": "CM8068404404629", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-9500E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMP", + "Spec Code": "SRGQX", + "Ordering Code": "CM8068404404932", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-9500TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMW", + "Spec Code": "SRGQZ", + "Ordering Code": "CM8068404404726", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9700E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JAC", + "Spec Code": "SRGDX", + "Ordering Code": "CM8068404196203", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9700TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JC3", + "Spec Code": "SRGE3", + "Ordering Code": "CM8068404311404", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JC3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9850HE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0A", + "Spec Code": "SRFED", + "Ordering Code": "CL8068404164800", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9850HL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0G", + "Spec Code": "SRFEH", + "Ordering Code": "CL8068404165200", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2226GE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMM", + "Spec Code": "SRGQW", + "Ordering Code": "CM8068404405020", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2278GE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "16 MB", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JAD", + "Spec Code": "SRGDY", + "Ordering Code": "CM8068404196302", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2278GEL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JC2", + "Spec Code": "SRGE2", + "Ordering Code": "CM8068404311303", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JC2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9100", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX2", + "Spec Code": "SRCZV", + "Ordering Code": "BXC80684I39100", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979139": "PCN\n |\n MDDS", + "999FRK": "PCN\n |\n MDDS", + "999FX2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9100T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979143", + "Spec Code": "SRCZX", + "Ordering Code": "CM8068403377425", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9300", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX1", + "Spec Code": "SRCZU", + "Ordering Code": "BXC80684I39300", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979136": "PCN\n |\n MDDS", + "999FRJ": "PCN\n |\n MDDS", + "999FX1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9300T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979141", + "Spec Code": "SRCZW", + "Ordering Code": "CM8068403377222", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979141": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9320", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX3", + "Spec Code": "SRF7X", + "Ordering Code": "BXC80684I39320", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999APV": "PCN\n |\n MDDS", + "999FRL": "PCN\n |\n MDDS", + "999FX3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9350K", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX0", + "Spec Code": "SRCZT", + "Ordering Code": "BXC80684I39350K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979134": "PCN\n |\n MDDS", + "999FRH": "PCN\n |\n MDDS", + "999FX0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9300H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8R", + "Spec Code": "SRF6X", + "Ordering Code": "CL8068404121905", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXR": "PCN\n |\n MDDS", + "999A8R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9400H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DM6", + "Spec Code": "SRFDM", + "Ordering Code": "CL8068404069511", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DM6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9400T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963542", + "Spec Code": "SR3X8", + "Ordering Code": "CM8068403358915", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963542": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9500", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F9X", + "Spec Code": "SRF4B", + "Ordering Code": "BXC80684I59500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RP": "PCN\n |\n MDDS", + "999F9K": "PCN\n |\n MDDS", + "999F9X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9500T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "9999RT", + "Spec Code": "SRF4D", + "Ordering Code": "CM8068403362510", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F9R", + "Spec Code": "SRF4H", + "Ordering Code": "BXC80684I59600", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999T0": "PCN\n |\n MDDS", + "999F9D": "PCN\n |\n MDDS", + "999F9R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "9999RW", + "Spec Code": "SRF4F", + "Ordering Code": "CM8068403358709", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J30", + "Spec Code": "SRG13", + "Ordering Code": "BXC80684I79700", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2F": "PCN\n |\n MDDS", + "999J2R": "PCN\n |\n MDDS", + "999J30": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H2L", + "Spec Code": "SRG17", + "Ordering Code": "CM8068403874912", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9850H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXK", + "Spec Code": "SRFCN", + "Ordering Code": "CL8068404069311", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9880H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ6", + "Spec Code": "SRFD1", + "Ordering Code": "CL8068404069006", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J32", + "Spec Code": "SRG18", + "Ordering Code": "BXC80684I99900", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H39": "PCN\n |\n MDDS", + "999J2W": "PCN\n |\n MDDS", + "999J32": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H3D", + "Spec Code": "SRG1B", + "Ordering Code": "CM8068403874122", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9980HK", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ5", + "Spec Code": "SRFD0", + "Ordering Code": "CL8068404068910", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5600T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963679", + "Spec Code": "SR3YF", + "Ordering Code": "CM8068403377714", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963679": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5620", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FXX", + "Spec Code": "SR3YC", + "Ordering Code": "BXC80684G5620", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963664": "PCN\n |\n MDDS", + "999FV4": "PCN\n |\n MDDS", + "999FXX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9400", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0X3E98/x92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984511", + "Spec Code": "SRELV", + "Ordering Code": "BXC80684I59400", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963539": "PCN\n |\n MDDS", + "999H28": "PCN\n |\n MDDS", + "983357": "PCN\n |\n MDDS", + "984507": "PCN\n |\n MDDS", + "984511": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984505", + "Spec Code": "SRELU", + "Ordering Code": "BX80684I59600K", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "983356": "PCN\n |\n MDDS", + "984505": "PCN\n |\n MDDS", + "984512": "PCN", + "999H2C": "PCN\n |\n MDDS", + "999J2P": "PCN\n |\n MDDS", + "999J2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "985083", + "Spec Code": "SRELT", + "Ordering Code": "BX80684I79700K", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "983355": "PCN\n |\n MDDS", + "984509": "PCN\n |\n MDDS", + "985083": "PCN\n |\n MDDS", + "999H2H": "PCN\n |\n MDDS", + "999J2T": "PCN\n |\n MDDS", + "999J31": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J34", + "Spec Code": "SRG19", + "Ordering Code": "BXC80684I99900K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3A": "PCN\n |\n MDDS", + "999J2X": "PCN\n |\n MDDS", + "999J34": "PCN\n |\n MDDS", + "99A5N8": "PCN", + "983354": "PCN\n |\n MDDS", + "984503": "PCN\n |\n MDDS", + "999AGF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8100B", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "981451", + "Spec Code": "SRDEC", + "Ordering Code": "CL8068404111901", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "981451": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8100H", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963727", + "Spec Code": "SR3Z7", + "Ordering Code": "CL8068403359228", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963727": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8086K", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8100T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963660", + "Spec Code": "SR3Y8", + "Ordering Code": "CM8068403377415", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8300", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974959", + "Spec Code": "SR3XY", + "Ordering Code": "BX80684I38300", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963643": "PCN\n |\n MDDS", + "974959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8300T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963646", + "Spec Code": "SR3Y1", + "Ordering Code": "CM8068403377212", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8300H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963720", + "Spec Code": "SR3Z0", + "Ordering Code": "CL8068403373522", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963720": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977518", + "Spec Code": "SR3QT", + "Ordering Code": "BO80684I58400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977514": "PCN\n |\n MDDS", + "977518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8400B", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976531", + "Spec Code": "SRCX4", + "Ordering Code": "CL8068403612408", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8400H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963721", + "Spec Code": "SR3Z1", + "Ordering Code": "CL8068403373614", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963721": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963540", + "Spec Code": "SR3X6", + "Ordering Code": "CM8068403358913", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975871", + "Spec Code": "SR3XE", + "Ordering Code": "BXC80684I58500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963598": "PCN\n |\n MDDS", + "974957": "PCN\n |\n MDDS", + "975871": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977519", + "Spec Code": "SR3XE", + "Ordering Code": "BO80684I58500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977515": "PCN\n |\n MDDS", + "977519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8500B", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976526", + "Spec Code": "SRCX3", + "Ordering Code": "CL8068403612509", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976526": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963592", + "Spec Code": "SR3XD", + "Ordering Code": "CM8068403362509", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963592": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975870", + "Spec Code": "SR3X0", + "Ordering Code": "BXC80684I58600", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963534": "PCN\n |\n MDDS", + "974956": "PCN\n |\n MDDS", + "975870": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963537", + "Spec Code": "SR3X3", + "Ordering Code": "CM8068403358708", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963537": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977513", + "Spec Code": "SR3QS", + "Ordering Code": "BOC80684I78700", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977399": "PCN\n |\n MDDS", + "977513": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8700B", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976523", + "Spec Code": "SRCX2", + "Ordering Code": "CL8068403611210", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976523": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963506", + "Spec Code": "SR3WX", + "Ordering Code": "CM8068403358413", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8750H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963718", + "Spec Code": "SR3YY", + "Ordering Code": "CL8068403359524", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963718": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8850H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963719", + "Spec Code": "SR3YZ", + "Ordering Code": "CL8068403359725", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-8950HK", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975241", + "Spec Code": "SRCKN", + "Ordering Code": "CL8068403805708", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "975241": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5500", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975872", + "Spec Code": "SR3YD", + "Ordering Code": "BXC80684G5500", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963670": "PCN\n |\n MDDS", + "974961": "PCN\n |\n MDDS", + "975872": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5500T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963678", + "Spec Code": "SR3YE", + "Ordering Code": "CM8068403377713", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963678": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8100", + "Status": "Launched", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91/x92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961084", + "Spec Code": "SR3N5", + "Ordering Code": "BXC80684I38100", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960012": "PCN\n |\n MDDS", + "961060": "PCN\n |\n MDDS", + "961084": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8350K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961083", + "Spec Code": "SR3N4", + "Ordering Code": "BXC80684I38350K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960011": "PCN\n |\n MDDS", + "961059": "PCN\n |\n MDDS", + "961083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961575", + "Spec Code": "SR3QT", + "Ordering Code": "BXC80684I58400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960619": "PCN\n |\n MDDS", + "961568": "PCN\n |\n MDDS", + "961575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961576", + "Spec Code": "SR3QU", + "Ordering Code": "BXC80684I58600K", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960620": "PCN\n |\n MDDS", + "961570": "PCN\n |\n MDDS", + "961576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700", + "Status": "Launched", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961574", + "Spec Code": "SR3QS", + "Ordering Code": "BXC80684I78700", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960618": "PCN\n |\n MDDS", + "961567": "PCN\n |\n MDDS", + "961574": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961573", + "Spec Code": "SR3QR", + "Ordering Code": "BXC80684I78700K", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960617": "PCN\n |\n MDDS", + "961566": "PCN\n |\n MDDS", + "961573": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8140U", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L21", + "Spec Code": "SRGMN", + "Ordering Code": "FH8068404208005", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L21": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8260U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L1Z", + "Spec Code": "SRGMM", + "Ordering Code": "FH8068404163208", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L1Z": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-8145UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR4", + "Spec Code": "SRFDT", + "Ordering Code": "CL8068404149204", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-8365UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR5", + "Spec Code": "SRFDU", + "Ordering Code": "CL8068404149404", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-8665UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR3", + "Spec Code": "SRFDS", + "Ordering Code": "CL8068404148003", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8130U", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963178", + "Spec Code": "SR3W0", + "Ordering Code": "FJ8067703282227", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "963178": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8250U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959160", + "Spec Code": "SR3LA", + "Ordering Code": "FJ8067703282221", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8350U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959155", + "Spec Code": "SR3L9", + "Ordering Code": "FJ8067703282016", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959155": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8550U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959163", + "Spec Code": "SR3LC", + "Ordering Code": "FJ8067703281816", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959163": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8650U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959152", + "Spec Code": "SR3L8", + "Ordering Code": "FJ8067703281718", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8310Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 617", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87C0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983288", + "Spec Code": "SREKP", + "Ordering Code": "HE8067702739888", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G158870", + "US HTS": "8542310001", + "983288": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8210Y", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 617", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87C0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983289", + "Spec Code": "SREKQ", + "Ordering Code": "HE8067702739889", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "983289": "PCN\n |\n MDDS", + "983287": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10100Y", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "6500Y", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Amber Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4425Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "6 W", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980677", + "Spec Code": "SRD24", + "Ordering Code": "HE8067702740049", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980677": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8200Y", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980667", + "Spec Code": "SRD22", + "Ordering Code": "HE8067702739846", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8500Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980666", + "Spec Code": "SRD21", + "Ordering Code": "HE8067702739858", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "m3-8100Y", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "8 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980672", + "Spec Code": "SRD23", + "Ordering Code": "HE8067702739859", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980672": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6405", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVA", + "Spec Code": "SRH3Z", + "Ordering Code": "BXC80701G6405", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKZ": "PCN\n |\n MDDS", + "99AFPP": "MDDS", + "99AFVA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6405T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL1", + "Spec Code": "SRH41", + "Ordering Code": "CM8070104291909", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL1": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5905", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A6MV", + "Spec Code": "SRK27", + "Ordering Code": "BXC80701G5905", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K2": "PCN\n |\n MDDS", + "99A6MR": "PCN\n |\n MDDS", + "99A6MV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5905T", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A4K4", + "Spec Code": "SRK28", + "Ordering Code": "CM8070104292213", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5925", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A6MT", + "Spec Code": "SRK26", + "Ordering Code": "BXC80701G5925", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A4K0": "PCN\n |\n MDDS", + "99A6MP": "PCN\n |\n MDDS", + "99A6MT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5900", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A01C", + "Spec Code": "SRH44", + "Ordering Code": "BXC80701G5900", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL4": "PCN\n |\n MDDS", + "99A00T": "PCN\n |\n MDDS", + "99A01C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G5900E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W63", + "Spec Code": "SRH7T", + "Ordering Code": "CM8070104424111", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W63": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5900T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL6", + "Spec Code": "SRH46", + "Ordering Code": "CM8070104292207", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G5900TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXA", + "Spec Code": "SRH6J", + "Ordering Code": "CM8070104424010", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXA": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5920", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A019", + "Spec Code": "SRH42", + "Ordering Code": "BXC80701G5920", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL2": "PCN\n |\n MDDS", + "99A00R": "PCN\n |\n MDDS", + "99A019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6400", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A015", + "Spec Code": "SRH3Y", + "Ordering Code": "BXC80701G6400", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKX": "PCN\n |\n MDDS", + "99A00M": "PCN\n |\n MDDS", + "99A015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6400E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX3", + "Spec Code": "SRH6G", + "Ordering Code": "CM8070104423809", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX3": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G6400T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TL0", + "Spec Code": "SRH40", + "Ordering Code": "CM8070104291907", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G6400TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX4", + "Spec Code": "SRH6H", + "Ordering Code": "CM8070104423912", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "4305UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DRK", + "Spec Code": "SRFDZ", + "Ordering Code": "CL8068404210005", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DRK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G4930E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9C", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0C", + "Spec Code": "SRFEE", + "Ordering Code": "CL8068404164900", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "G4932E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Max Turbo Frequency": "1.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9C", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0K", + "Spec Code": "SRFEL", + "Ordering Code": "CL8068404165500", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4930", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FZ1", + "Spec Code": "SR3YN", + "Ordering Code": "BXC80684G4930", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963696": "PCN\n |\n MDDS", + "999FRG": "PCN\n |\n MDDS", + "999FZ1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4930T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963699", + "Spec Code": "SR3YQ", + "Ordering Code": "CM8068403379313", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963699": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4950", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FZ0", + "Spec Code": "SR3YM", + "Ordering Code": "BXC80684G4950", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963695": "PCN\n |\n MDDS", + "999FRF": "PCN\n |\n MDDS", + "999FZ0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5420", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FXZ", + "Spec Code": "SR3YH", + "Ordering Code": "BXC80684G5420", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FXV": "PCN", + "999FXZ": "PCN\n |\n MDDS", + "963555": "PCN\n |\n MDDS", + "999FXT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5420T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963576", + "Spec Code": "SR3XC", + "Ordering Code": "CM8068403360213", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4900", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.10 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963825", + "Spec Code": "SR3W4", + "Ordering Code": "BXC80684G4900", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963375": "PCN\n |\n MDDS", + "963823": "PCN\n |\n MDDS", + "963825": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4900T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.90 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963697", + "Spec Code": "SR3YP", + "Ordering Code": "CM8068403379312", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor G Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G4920", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "3.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973459", + "Spec Code": "SR3YL", + "Ordering Code": "BX80684G4920", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963694": "PCN\n |\n MDDS", + "973459": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5400", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "58 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976952", + "Spec Code": "SR3X9", + "Ordering Code": "BX80684G5400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963543": "PCN\n |\n MDDS", + "976952": "PCN\n |\n MDDS", + "976953": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "G5400T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 610", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E90/x93", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100/88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963566", + "Spec Code": "SR3XB", + "Ordering Code": "CM8068403360212", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963566": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J5040", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DAL", + "Spec Code": "SRFDB", + "Ordering Code": "FH8068003067443", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999DAL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N5030", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.10 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DAV", + "Spec Code": "SRFDC", + "Ordering Code": "FH8068003067442", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999DAV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J5005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961642", + "Spec Code": "SR3S3", + "Ordering Code": "FH8068003067415", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5000", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105°C", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961638", + "Spec Code": "SR3RZ", + "Ordering Code": "FH8068003067406", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961638": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4025", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984796", + "Spec Code": "SRET3", + "Ordering Code": "FH8068003067428", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4125", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "4K Support": "Yes, at 60Hz", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PVK", + "Spec Code": "SRGZS", + "Ordering Code": "FH8068003067410", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999PVK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N4020", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Description": "N4020 is offered in 2 MM#: 99AAJ6: Launched Q4'20 with Spec Code SRKLL supports DDR4 only. See Additional information for more details. 984730: Launched Q4'19 with Spec Code SRETO supports DDR4/LPDDR4", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 (SRET0) up to 2400 MT/s DDR4 (SRKLL) up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AAJ6", + "Spec Code": "SRKLL", + "Ordering Code": "FH8068003067484", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "99AAJ6": "PCN", + "984730": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "N4120", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984729", + "Spec Code": "SRESZ", + "Ordering Code": "FH8068003067400", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984729": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961644", + "Spec Code": "SR3S5", + "Ordering Code": "FH8068003067416", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4105", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961643", + "Spec Code": "SR3S4", + "Ordering Code": "FH8068003067403", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4000", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961640", + "Spec Code": "SR3S1", + "Ordering Code": "FH8068003067417", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961640": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4100", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961639", + "Spec Code": "SR3S0", + "Ordering Code": "FH8068003067408", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961639": "PCN\n |\n MDDS" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-12300HE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "# of Performance-cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "12", + "Performance-core Max Turbo Frequency": "4.30 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 mm x 25 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99C14T", + "Spec Code": "SRM2P", + "Ordering Code": "FJ8071504798008", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99C14T": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4500", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98N", + "Spec Code": "SRKH0", + "Ordering Code": "DC8069704609907", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98J", + "Spec Code": "SRKGW", + "Ordering Code": "DC8069704609809", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5100", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98M", + "Spec Code": "SRKGZ", + "Ordering Code": "DC8069704609906", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98H", + "Spec Code": "SRKGV", + "Ordering Code": "DC8069704609808", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N6000", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.30 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB L3 Cache", + "Scenario Design Power (SDP)": "4.8 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E71", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98L", + "Spec Code": "SRKGY", + "Ordering Code": "DC8069704609905", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N6005", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E71", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98G", + "Spec Code": "SRKGU", + "Ordering Code": "DC8069704609807", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6305E", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3N6", + "Spec Code": "SRK17", + "Ordering Code": "FH8069004542700", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3N6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lakefield", + "Vertical Segment": "Mobile", + "Processor Number": "i3-L13G4", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Total Cores": "5", + "Total Threads": "5", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "Scenario Design Power (SDP)": "7 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR4X 4267 POP Memory", + "Maximum Memory Speed": "4267 MHz", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Execution Units": "48", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "DX12", + "OpenGL* Support": "OpenGL4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "9941", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x2, 1x2 + 2x1", + "Max # of PCI Express Lanes": "6", + "Sockets Supported": "FC-CSP1016", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "12mm x 12mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "No", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0GH", + "Spec Code": "SRJGC", + "Ordering Code": "NW8069103800806", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999V1X": "PCN", + "99A0GH": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lakefield", + "Vertical Segment": "Mobile", + "Processor Number": "i5-L16G7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Total Cores": "5", + "Total Threads": "5", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "Scenario Design Power (SDP)": "7 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR4X 4267 POP Memory", + "Maximum Memory Speed": "4267 MHz", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Execution Units": "64", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "DX12", + "OpenGL* Support": "OpenGL4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "9940", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x2, 1x2 + 2x1", + "Max # of PCI Express Lanes": "6", + "Sockets Supported": "FC-CSP1016", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "12mm x 12mm", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0GF", + "Spec Code": "SRJGA", + "Ordering Code": "NW8069103800804", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999V1T": "PCN", + "99A0GF": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6600HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH8D", + "Spec Code": "SRKX7", + "Ordering Code": "FH8069004638144", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH8D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-11100HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH80", + "Spec Code": "SRKX2", + "Ordering Code": "FH8069004638051", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH80": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-11500HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7P", + "Spec Code": "SRKX0", + "Ordering Code": "FH8069004638049", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-11850HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7N", + "Spec Code": "SRKWZ", + "Ordering Code": "FH8069004638048", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11155MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH8A", + "Spec Code": "SRKX5", + "Ordering Code": "FH8069004638142", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH8A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11155MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7R", + "Spec Code": "SRKX1", + "Ordering Code": "FH8069004638050", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11555MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH87", + "Spec Code": "SRKX3", + "Ordering Code": "FH8069004638140", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH87": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11555MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7M", + "Spec Code": "SRKWY", + "Ordering Code": "FH8069004638047", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11865MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "24 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH89", + "Spec Code": "SRKX4", + "Ordering Code": "FH8069004638151", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH89": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11865MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7L", + "Spec Code": "SRKWX", + "Ordering Code": "FH8069004638046", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11600H", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFFA", + "Spec Code": "SRKT9", + "Ordering Code": "FH8069004670407", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFFA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11260H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDX", + "Spec Code": "SRKT0", + "Ordering Code": "FH8069004351513", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11400H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDZ", + "Spec Code": "SRKT1", + "Ordering Code": "FH8069004351613", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11500H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF0", + "Spec Code": "SRKT2", + "Ordering Code": "FH8069004351711", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11800H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF1", + "Spec Code": "SRKT3", + "Ordering Code": "FH8069004352018", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11850H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "50 x 26.5", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF2", + "Spec Code": "SRKT4", + "Ordering Code": "FH8069004352114", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11900H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF8", + "Spec Code": "SRKT7", + "Ordering Code": "FH8069004352617", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11950H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF7", + "Spec Code": "SRKT6", + "Ordering Code": "FH8069004352616", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11980HK", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "65 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDW", + "Spec Code": "SRKSZ", + "Ordering Code": "FH8069004351114", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-11855M", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "3.20 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF9", + "Spec Code": "SRKT8", + "Ordering Code": "FH8069004466609", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-11955M", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF6", + "Spec Code": "SRKT5", + "Ordering Code": "FH8069004352312", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 6000 Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6305", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "2", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3G6", + "Spec Code": "SRK0B", + "Ordering Code": "FH8069004531901", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3G6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "7505", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 3", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3F4", + "Spec Code": "SRK0A", + "Ordering Code": "FH8069004531802", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3F4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1115G4E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3M2", + "Spec Code": "SRK12", + "Ordering Code": "FH8069004542300", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3M2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1115GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733, In -Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3M9", + "Spec Code": "SRK13", + "Ordering Code": "FH8069004542400", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3M9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1120G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78R", + "Spec Code": "SRK8T", + "Ordering Code": "FH8069004532506", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78R": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1125G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78N", + "Spec Code": "SRK8S", + "Ordering Code": "FH8069004531606", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78N": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1125G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78J", + "Spec Code": "SRK8R", + "Ordering Code": "FH8069004531506", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78J": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1110G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "1.50 GHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3H5", + "Spec Code": "SRK0H", + "Ordering Code": "FH8069004532502", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3H5": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DL", + "Spec Code": "SRK07", + "Ordering Code": "FH8069004531502", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6412", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "1x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4N", + "Spec Code": "SRKUA", + "Ordering Code": "DC8070304190881", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4N": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6210", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.60 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "1x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4R", + "Spec Code": "SRKUC", + "Ordering Code": "DC8070304190883", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4R": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10500H", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HX", + "Spec Code": "SRK3Z", + "Ordering Code": "CL8070104409309", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor 6800 Series", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6805", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Execution Units": "32", + "# of Displays Supported ‡": "3", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3JC", + "Spec Code": "SRK0U", + "Ordering Code": "FJ8068904310016", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3JC": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6211E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4T", + "Spec Code": "SRKUD", + "Ordering Code": "FH8070304243807", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6212RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH1", + "Spec Code": "SRKLE", + "Ordering Code": "FH8070304289568", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6413E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "9 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGZ", + "Spec Code": "SRKLC", + "Ordering Code": "FH8070304243865", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6414RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "9 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH2", + "Spec Code": "SRKLF", + "Ordering Code": "FH8070304289591", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6425E", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB LPDDR4/x & DDR4 with In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4V", + "Spec Code": "SRKUE", + "Ordering Code": "FH8070304243808", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6425RE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 4267MT/s Max (8GB, 16GB, @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB Max 32GB With In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH3", + "Spec Code": "SRKLG", + "Ordering Code": "FH8070304289558", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "6427FE", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 4267MT/s Max (8GB, 16GB, @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB Max 32GB With In Band ECC", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "110°C", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAH4", + "Spec Code": "SRKLH", + "Ordering Code": "FH8070304289690", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAH4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6413", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3733MT/s Max (8GB, 16GB @3200MT/s) / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGN", + "Spec Code": "SRKL7", + "Ordering Code": "DC8070304190822", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGN": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6211", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGV", + "Spec Code": "SRKL9", + "Ordering Code": "DC8070304190819", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGV": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor J Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "J6426", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AG4P", + "Spec Code": "SRKUB", + "Ordering Code": "DC8070304190882", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AG4P": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Elkhart Lake", + "Vertical Segment": "Embedded", + "Processor Number": "N6415", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1.5 MB L2 Cache", + "TDP": "6.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "4x32 LPDDR4/x 3200MT/s Max 16GB / 2x64 DDR4 3200MT/s Max 32GB", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (DP)‡": "4096x2160@ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@ 60Hz", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "OpenCL* Support": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "PCIe 0: 1 x4/2 x2/1 x2 + 2 x1/4 x1, PCIe 1-3: 1 x2/1 x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0/3.1", + "Total # of SATA Ports": "2", + "Integrated LAN": "3x 2.5GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1493", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Package Size": "35mm x 24mm", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Speed Shift Technology": "Yes", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AAGW", + "Spec Code": "SRKLA", + "Ordering Code": "DC8070304190820", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G179048", + "US HTS": "8542310001", + "99AAGW": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10870H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HW", + "Spec Code": "SRK3Y", + "Ordering Code": "CL8070104399317", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10200H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HV", + "Spec Code": "SRK3X", + "Ordering Code": "CL8070104441108", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 5000 Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5305U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K4K", + "Spec Code": "SRGL4", + "Ordering Code": "FJ8070104307903", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10310U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.20 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7P", + "Spec Code": "SRJ7T", + "Ordering Code": "FJ8070104500100", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7P": "PCN\n |\n MDDS", + "999K48": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10610U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7M", + "Spec Code": "SRJ7R", + "Ordering Code": "FJ8070104499900", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K46": "PCN\n |\n MDDS", + "999X7M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10810U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7L", + "Spec Code": "SRJ7Q", + "Ordering Code": "FJ8070104499800", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7L": "PCN\n |\n MDDS", + "999LH2": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-10885H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999ZM8", + "Spec Code": "SRJ8J", + "Ordering Code": "CL8070104398814", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ZM8": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-10855M", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BF6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMN", + "Spec Code": "SRH8M", + "Ordering Code": "CL8070104398912", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMN": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-10885M", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BF6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMM", + "Spec Code": "SRH8L", + "Ordering Code": "CL8070104398811", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMM": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10300H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W76", + "Spec Code": "SRH84", + "Ordering Code": "CL8070104399510", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W76": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10400H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMW", + "Spec Code": "SRH8R", + "Ordering Code": "CL8070104399409", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10750H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMV", + "Spec Code": "SRH8Q", + "Ordering Code": "CL8070104399315", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10850H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMR", + "Spec Code": "SRH8P", + "Ordering Code": "CL8070104399211", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10875H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999Z5H", + "Spec Code": "SRJ8F", + "Ordering Code": "CL8070104399111", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999Z5H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-10980HK", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-up Base Frequency": "3.10 GHz", + "Configurable TDP-up": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMZ", + "Spec Code": "SRH8T", + "Ordering Code": "CL8070104502004", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 5000 Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5205U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.90 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21,0x9BAA", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LHC", + "Spec Code": "SRGP4", + "Ordering Code": "FJ8070104309301", + "Shipping Media": "TRAY", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4J": "PCN\n |\n MDDS", + "999LHC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "6405U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K4H", + "Spec Code": "SRGL2", + "Ordering Code": "FJ8070104307703", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "700 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K45", + "Spec Code": "SRGKU", + "Ordering Code": "FJ8068404190521", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K45": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LTZ", + "Spec Code": "SRGSD", + "Ordering Code": "FJ8068404190418", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K44": "PCN", + "999LTZ": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10310Y", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.40 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K43", + "Spec Code": "SRGKS", + "Ordering Code": "FJ8068404190310", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K43": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10510U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7N", + "Spec Code": "SRJ7S", + "Ordering Code": "FJ8070104500000", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K47": "PCN\n |\n MDDS", + "999W5W": "PCN", + "999X7N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10510Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "400 MHz", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LTX", + "Spec Code": "SRGSC", + "Ordering Code": "FJ8068404190220", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999LTX": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1000G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A58", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1005G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A56", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K24", + "Spec Code": "SRGKF", + "Ordering Code": "FJ8068904310007", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K24": "PCN\n |\n MDDS", + "999H1Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.20 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "700 MHz", + "Configurable TDP-down": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A56", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K41", + "Spec Code": "SRGKL", + "Ordering Code": "FJ8068904312402", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K2A": "PCN\n |\n MDDS", + "999K41": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4305U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C35", + "Spec Code": "SRFA5", + "Ordering Code": "CL8068404066103", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C35": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor 4000 Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "4205U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984533", + "Spec Code": "SRESP", + "Ordering Code": "CL8068404080803", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "984533": "PCN\n |\n MDDS", + "999FFJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Gold Processor Series", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "5405U", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "2 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA1", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984529", + "Spec Code": "SRESL", + "Ordering Code": "CL8068404080703", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999FFH": "PCN\n |\n MDDS", + "984529": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8265U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "3EA0, 3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Deep Learning Boost (Intel® DL Boost)": "No", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FFA", + "Spec Code": "SRFFY", + "Ordering Code": "CL8068404064610", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982922": "PCN\n |\n MDDS", + "982921": "PCN\n |\n MDDS", + "999FFA": "PCN", + "999FF9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8565U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "982918", + "Spec Code": "SREJP", + "Ordering Code": "FJ8068404064405", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982918": "PCN\n |\n MDDS", + "999FF4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6585R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6685R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6785R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6350HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948625", + "Spec Code": "SR2QZ", + "Ordering Code": "JQ8066202195125", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948625": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6770HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948624", + "Spec Code": "SR2QY", + "Ordering Code": "JQ8066202195123", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6870HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948623", + "Spec Code": "SR2QX", + "Ordering Code": "JQ8066202195122", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948623": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6970HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948622", + "Spec Code": "SR2QW", + "Ordering Code": "JQ8066202195121", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1565LV5", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948665", + "Spec Code": "SR2R8", + "Ordering Code": "JQ8066201935626", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948665": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1578LV5", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "700 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Device ID": "0x193D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949901", + "Spec Code": "SR2TT", + "Ordering Code": "JQ8066202811001", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "949901": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1585V5", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948668", + "Spec Code": "SR2RB", + "Ordering Code": "JQ8066201935710", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948668": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1585LV5", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948666", + "Spec Code": "SR2R9", + "Ordering Code": "JQ8066201935627", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1515MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948619", + "Spec Code": "SR2QT", + "Ordering Code": "JQ8066202193208", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948619": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1545MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948620", + "Spec Code": "SR2QU", + "Ordering Code": "JQ8066202193209", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948620": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1575MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948621", + "Spec Code": "SR2QV", + "Ordering Code": "JQ8066202193210", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948621": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5350H", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943432", + "Spec Code": "SR2BK", + "Ordering Code": "FH8065802491703", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943432": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5575R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943367", + "Spec Code": "SR2AK", + "Ordering Code": "FH8065802483402", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943367": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5675C", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944548", + "Spec Code": "SR2FX", + "Ordering Code": "BX80658I55675C", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944383": "PCN\n |\n MDDS", + "944548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5675R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943366", + "Spec Code": "SR2AJ", + "Ordering Code": "FH8065802483401", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5700HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1612", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943450", + "Spec Code": "SR2BP", + "Ordering Code": "FH8065802491903", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943450": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5750HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943433", + "Spec Code": "SR2BL", + "Ordering Code": "FH8065802491802", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943433": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5775C", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943887", + "Spec Code": "SR2AG", + "Ordering Code": "BX80658I75775C", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943363": "PCN\n |\n MDDS", + "943887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5775R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943368", + "Spec Code": "SR2AL", + "Ordering Code": "FH8065802483601", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943368": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-5850EQ", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944076", + "Spec Code": "SR2E8", + "Ordering Code": "FH8065802420503", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944076": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5850HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943430", + "Spec Code": "SR2BH", + "Ordering Code": "FH8065802491501", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943430": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5950HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943431", + "Spec Code": "SR2BJ", + "Ordering Code": "FH8065802491601", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943431": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4770HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936768", + "Spec Code": "SR1ZW", + "Ordering Code": "CL8064701956100", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4870HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936770", + "Spec Code": "SR1ZX", + "Ordering Code": "CL8064701956200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936770": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4980HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936772", + "Spec Code": "SR1ZY", + "Ordering Code": "CL8064701956300", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4760HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930145", + "Spec Code": "SR1BM", + "Ordering Code": "CL8064701510601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930145": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4860HQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930147", + "Spec Code": "SR1BP", + "Ordering Code": "CL8064701510800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930147": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4960HQ", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930150", + "Spec Code": "SR1BS", + "Ordering Code": "CL8064701511001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930150": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4750HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929327", + "Spec Code": "SR18J", + "Ordering Code": "CL8064701510101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4850HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929326", + "Spec Code": "SR18H", + "Ordering Code": "CL8064701509800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4950HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929325", + "Spec Code": "SR18G", + "Ordering Code": "CL8064701509700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929349", + "Spec Code": "SR18P", + "Ordering Code": "CL8064701508603", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929347", + "Spec Code": "SR18M", + "Ordering Code": "CL8064701508403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929347": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "40", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929345", + "Spec Code": "SR18K", + "Ordering Code": "CL8064701508001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929345": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Stick with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Cedar City", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Windows 8.1, 64-bit*, Windows Embedded 8.1 Industry*", + "Board Number": "STK2m364CC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "5 VDC", + "Processor Included": "Intel® Core™ m3-6Y30 Processor (4M Cache, up to 2.20 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "900 MHz", + "Max Turbo Frequency": "2.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3-1866", + "Memory Types": "LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4b", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "3", + "USB Revision": "3.0", + "USB 2.0 Configuration (External + Internal)": "0", + "USB 3.0 Configuration (External + Internal)": "1 + 2 hub", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "947057", + "Ordering Code": "BLKSTK2M364CCL", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "944721": "PCN\n |\n MDDS", + "947057": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-6Y30", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944326", + "Spec Code": "SR2EN", + "Ordering Code": "HE8066201930521", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Stick with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Cedar City", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "STK2m3W64CC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "5 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Core™ m3-6Y30 Processor (4M Cache, up to 2.20 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "900 MHz", + "Max Turbo Frequency": "2.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3-1866", + "Memory Types": "LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4b", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "3", + "USB Revision": "3.0", + "USB 2.0 Configuration (External + Internal)": "0", + "USB 3.0 Configuration (External + Internal)": "1 + 2 hub", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "947055", + "Ordering Code": "BOXSTK2M3W64CCL", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "944709": "PCN", + "944712": "PCN\n |\n MDDS", + "947055": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-6Y30", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944326", + "Spec Code": "SR2EN", + "Ordering Code": "HE8066201930521", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Stick with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Cedar City", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Windows 8.1, 64-bit*, Windows Embedded 8.1 Industry*", + "Board Number": "STK2mv64CC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "5 VDC", + "Processor Included": "Intel® Core™ m5-6Y57 Processor (4M Cache, up to 2.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "2.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3-1866", + "Memory Types": "LPDDR3-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4b", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "3", + "USB Revision": "3.0", + "USB 2.0 Configuration (External + Internal)": "0", + "USB 3.0 Configuration (External + Internal)": "1 + 2 hub", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "947056", + "Ordering Code": "BLKSTK2MV64CCL", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "944715": "PCN\n |\n MDDS", + "947056": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M5-6Y57", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944320", + "Spec Code": "SR2EG", + "Ordering Code": "HE8066201922876", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944320": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Stick with Intel® Atom® Processors", + "Code Name": "Products formerly Sterling City", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows Embedded 8.1 Industry*", + "Board Number": "STK1A32SC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "5 VDC", + "Processor Included": "Intel Atom® x5-Z8330 Processor (2M Cache, up to 1.92 GHz)", + "Total Cores": "4", + "Processor Base Frequency": "1.44 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Included Storage": "32GB eMMC", + "Included Memory": "2GB DDR3L-1600", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4b", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "2", + "USB Revision": "2.0, 3.0", + "USB 3.0 Configuration (External + Internal)": "1", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8330", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "1.92 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "500 MHz", + "Execution Units": "12", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X1", + "Max # of PCI Express Lanes": "1", + "USB Revision": "3.0", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® Compute Stick with Intel® Atom® Processors", + "Code Name": "Products formerly Sterling City", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Supported Operating Systems": "Windows 10, 32-bit*", + "Board Number": "STK1AW32SC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "5 VDC", + "Pre-Installed Operating System": "Windows 10, 32-bit*", + "Processor Included": "Intel Atom® x5-Z8330 Processor (2M Cache, up to 1.92 GHz)", + "Total Cores": "4", + "Processor Base Frequency": "1.44 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Included Storage": "32GB eMMC", + "Included Memory": "2GB DDR3L-1600", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4b", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "2", + "USB Revision": "2.0, 3.0", + "USB 3.0 Configuration (External + Internal)": "1", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel Atom® Processor X Series", + "Code Name": "Products formerly Cherry Trail", + "Vertical Segment": "Mobile", + "Processor Number": "x5-Z8330", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Burst Frequency": "1.92 GHz", + "Processor Base Frequency": "1.44 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1600", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "500 MHz", + "Execution Units": "12", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X1", + "Max # of PCI Express Lanes": "1", + "USB Revision": "3.0", + "TJUNCTION": "90°C", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® Compute Stick with Intel® Atom® Processors", + "Code Name": "Products formerly Falls City", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Supported Operating Systems": "Ubuntu*", + "Board Number": "STCK1A8LFC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "8 GB", + "Lithography": "22 nm", + "DC Input Voltage Supported": "5 VDC", + "Pre-Installed Operating System": "Ubuntu 14.04*", + "Processor Included": "Intel Atom® Processor Z3735F (2M Cache, up to 1.83 GHz)", + "Total Cores": "4", + "Processor Base Frequency": "1.33 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Included Storage": "8GB eMMC", + "Included Memory": "1 GB", + "Memory Types": "DDR3L-1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4a", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "1", + "USB Revision": "2.0", + "Integrated Wireless‡": "Yes", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "943240", + "Ordering Code": "BOXSTCK1A8LFCR", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8471500150", + "941872": "PCN\n |\n MDDS", + "943240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735F", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933463", + "Spec Code": "SR1UB", + "Ordering Code": "FH8065301685598", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Stick with Intel® Atom® Processors", + "Code Name": "Products formerly Falls City", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 8.1, 32-bit*", + "Board Number": "STCK1A32WFC", + "Board Form Factor": "Compute Stick", + "Socket": "Soldered-down BGA", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "22 nm", + "DC Input Voltage Supported": "5 VDC", + "Pre-Installed Operating System": "Windows 10, 32-bit*", + "Processor Included": "Intel Atom® Processor Z3735F (2M Cache, up to 1.83 GHz)", + "Total Cores": "4", + "Processor Base Frequency": "1.33 GHz", + "Warranty Period": "1 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Included Storage": "32GB eMMC", + "Included Memory": "2 GB", + "Memory Types": "DDR3L-1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Physical Address Extensions": "32-bit", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4a", + "# of Displays Supported ‡": "1", + "Removable Memory Card Slot": "MicroSDXC with UHS-I support", + "# of USB Ports": "1", + "USB Revision": "2.0", + "Integrated Wireless‡": "Yes", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "944466", + "Ordering Code": "BOXSTCK1A32WFCL", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "941865": "PCN\n |\n MDDS", + "943239": "PCN\n |\n MDDS", + "944466": "PCN" + }, + { + "Product Collection": "Intel Atom® Processor Z Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "Z3735F", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Burst Frequency": "1.83 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "2.2 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "DDR3L-RS 1333", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "311 MHz", + "Graphics Burst Frequency": "646 MHz", + "Sockets Supported": "UTFCBGA592", + "Package Size": "17mm x 17mm", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "933463", + "Spec Code": "SR1UB", + "Ordering Code": "FH8065301685598", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "933463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller E810", + "Code Name": "Products formerly Columbiaville", + "Status": "Launched", + "Launch Date": "Q3'20", + "Expected Discontinuance": "2H'27", + "Lithography": "16 nm", + "Operating Temperature Range": "0°C to 105°C", + "Operating Temperature (Maximum)": "105 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25Gb/s", + "System Interface Type": "PCIe 4.0/3.0", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Package Size": "21x21mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Storage Over Ethernet": "SMB Direct", + "MM#": "999W9K", + "Spec Code": "SLNG2", + "Ordering Code": "EYE810XXVAM2", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "999W9K": "PCN\n |\n MDDS", + "999W9J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller E810", + "Code Name": "Products formerly Columbiaville", + "Status": "Launched", + "Launch Date": "Q3'20", + "Expected Discontinuance": "2H'27", + "Lithography": "16 nm", + "Operating Temperature Range": "0°C to 105°C", + "Operating Temperature (Maximum)": "105 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Ethernet Controller, 100GbE bandwidth, up to 1x100GbE connection and 2x50GbE, 4x25GbE, 4x10GbE connections", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "100Gb/s", + "System Interface Type": "PCIe 4.0/3.0", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "PCIe 3.0/4.0 x16", + "Package Size": "25x25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "SMB Direct", + "MM#": "999W9D", + "Spec Code": "SLNFW", + "Ordering Code": "EZE810CAM1", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "999W9C": "PCN", + "999W9D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller E810", + "Code Name": "Products formerly Columbiaville", + "Status": "Launched", + "Launch Date": "Q3'20", + "Expected Discontinuance": "2H'27", + "Lithography": "16 nm", + "Operating Temperature Range": "0°C to 105°C", + "Operating Temperature (Maximum)": "105 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Ethernet Controller, 100GbE bandwidth, up to 2x100GbE connection and 2x50GbE, 4x25GbE, 4x10GbE and 8x10GbE connections", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "100Gb/s", + "System Interface Type": "PCIe 4.0/3.0", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "PCIe 3.0/4.0 x16", + "Package Size": "25x25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "Yes", + "RoCEv2/RDMA": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "SMB Direct", + "MM#": "999W9G", + "Spec Code": "SLNFY", + "Ordering Code": "EZE810CAM2", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "999W9F": "PCN\n |\n MDDS", + "999W9G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Programmable Acceleration Cards (PAC)", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "FPGA": "Intel® Arria® 10 GT FPGA", + "Logic Elements (LE)": "1150000", + "On-chip Memory": "65.7 Mb", + "DSP Blocks": "3036", + "External Onboard DDR4": "9 GB", + "External Onboard SRAM": "144 Mb QDR IV", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "Gen3 x16", + "QSFP Interface": "x2", + "Network Interface": "10 Gbps, 25 Gbps (up to 100 GbE) with  Dual Intel Ethernet Converged Network Adapter XL710", + "Board Form Factor": "½ length, full height, single slot", + "Thermal Solution Specification": "Passively Cooled", + "TDP": "100 W", + "Tools Supported": "Intel® Acceleration Stack for Intel® Xeon® CPU with FPGAs, Intel® Quartus® Prime Software, Open Programmable Acceleration Engine (OPAE), Data Plane Developer Kit (DPDK)", + "Datasheet": "View now", + "Description": "Intel FPGA PAC N3000 accelerates network traffic for up to 100 Gbps to support low-latency, high-bandwidth 5G applications." + }, + { + "Product Collection": "Intel® Programmable Acceleration Cards (PAC)", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "FPGA": "Intel® Stratix® 10 GX FPGA", + "Logic Elements (LE)": "2800000", + "On-chip Memory": "244 Mb", + "DSP Blocks": "11520", + "External Onboard DDR4": "32 GB (8GB x 4 banks)", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "Gen3 x16", + "QSFP Interface": "x2", + "USB Configuration": "USB 2.0", + "Network Interface": "10 Gbps, 25 Gbps, 40 Gbps, 100 Gbps", + "Board Form Factor": "¾ length, full height, dual slot", + "Thermal Solution Specification": "Passively Cooled", + "TDP": "215 W", + "Tools Supported": "Intel® Acceleration Stack for Intel® Xeon® CPU with FPGAs, Intel® Quartus® Prime Software, Open Programmable Acceleration Engine (OPAE)", + "Datasheet": "View now", + "Description": "Intel FPGA PAC D5005, previously known as Intel PAC with Intel Stratix® 10 SX FPGA, offers inline high-speed interfaces up to 100 Gbps." + }, + { + "Product Collection": "Intel® Programmable Acceleration Cards (PAC)", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "FPGA": "Intel® Arria® 10 GX FPGA", + "Logic Elements (LE)": "1150000", + "On-chip Memory": "65.7 Mb", + "DSP Blocks": "3036", + "External Onboard DDR4": "8 GB (4 GB x 2 banks)", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "Gen3 x8 (electrical), Gen3 x16 (mechanical)", + "QSFP Interface": "x1", + "USB Configuration": "USB 2.0", + "Network Interface": "10 Gbps, 40 Gbps (up to 40 GbE)", + "Board Form Factor": "½ length, full height w ½ ht option, single slot", + "Thermal Solution Specification": "Passively Cooled", + "TDP": "66 W", + "Tools Supported": "Intel® Acceleration Stack for Intel® Xeon® CPU with FPGAs, Intel® Quartus® Prime Software, Open Programmable Acceleration Engine (OPAE), Intel® Distribution of OpenVINO™ toolkit", + "Datasheet": "View now", + "Description": "Intel Programmable Acceleration Card w/ Intel Arria 10 GX FPGA is a high-performance workload acceleration solution for applications such as big data analytics, artificial intelligence, genomics, video transcoding, cybersecurity, and financial trading." + }, + { + "Product Collection": "Intel® Ethernet QSFP28 Optics", + "Status": "Launched", + "Launch Date": "Q3'20", + "Vertical Segment": "Server", + "Product Brief": "View now", + "MM#": "999J7F", + "Ordering Code": "E100GQSFP28LRX", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8517620090" + }, + { + "Product Collection": "Intel® Ethernet QSFP+ Optics", + "Status": "Launched", + "Launch Date": "Q2'16", + "Product Brief": "View now", + "MM#": "933912", + "Ordering Code": "E40GQSFPLR", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "933912": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet QSFP+ Optics", + "Status": "Launched", + "Launch Date": "Q2'14", + "Vertical Segment": "Server", + "Product Brief": "View now", + "MM#": "933911", + "Ordering Code": "E40GQSFPSR", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8517620090", + "933911": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet SFP+ Optics", + "Status": "Launched", + "Launch Date": "Q4'09", + "Product Brief": "View now", + "MM#": "903240", + "Ordering Code": "E10GSFPLR", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "903240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet SFP+ Optics", + "Status": "Launched", + "Launch Date": "Q4'09", + "Vertical Segment": "Server", + "Product Brief": "View now", + "MM#": "99AFL4", + "Ordering Code": "E10GSFPSRG2P5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "903239": "PCN\n |\n MDDS", + "909923": "PCN\n |\n MDDS", + "954746": "PCN\n |\n MDDS", + "99AFL4": "PCN" + }, + { + "Product Collection": "Intel® Ethernet SFP28 Optics", + "Status": "Launched", + "Launch Date": "Q1'20", + "Vertical Segment": "Server", + "Product Brief": "View now", + "MM#": "986474", + "Ordering Code": "E25GSFP28LRX", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "986474": "PCN" + }, + { + "Product Collection": "Intel® Ethernet SFP28 Optics", + "Status": "Launched", + "Launch Date": "Q1'17", + "Vertical Segment": "Server", + "Product Brief": "View now", + "MM#": "958873", + "Ordering Code": "E25GSFP28SRX", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "952293": "PCN\n |\n MDDS", + "958873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5315Y", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.60 GHz", + "Intel SpeedStep® Max Frequency": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHJ9", + "Spec Code": "SRKXR", + "Ordering Code": "CD8068904665802", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJ9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5317", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "18 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "84°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHJ0", + "Spec Code": "SRKXM", + "Ordering Code": "CD8068904657302", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJ0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5318N", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Intel SpeedStep® Max Frequency": "3.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "83°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHR", + "Spec Code": "SRKXG", + "Ordering Code": "CD8068904658802", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5318S", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Intel SpeedStep® Max Frequency": "3.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "87°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "512 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHM", + "Spec Code": "SRKXD", + "Ordering Code": "CD8068904658602", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5318Y", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Intel SpeedStep® Max Frequency": "3.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "87°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHN", + "Spec Code": "SRKXE", + "Ordering Code": "CD8068904656703", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5320", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "26", + "Total Threads": "52", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "39 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "79°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKF5", + "Spec Code": "SRKWU", + "Ordering Code": "BX806895320", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AH6Z": "PCN\n |\n MDDS", + "99AKF5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "5320T", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "86°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHV", + "Spec Code": "SRKXJ", + "Ordering Code": "CD8068904659101", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6312U", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "36 MB", + "TDP": "185 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "80°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHL", + "Spec Code": "SRKXC", + "Ordering Code": "CD8068904658902", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6314U", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "48 MB", + "TDP": "205 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9H7", + "Spec Code": "SRKHL", + "Ordering Code": "CD8068904570101", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9H7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6326", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "24 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "78°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHX", + "Spec Code": "SRKXK", + "Ordering Code": "CD8068904657502", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6330", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "42 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "86°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKDL", + "Spec Code": "SRKHM", + "Ordering Code": "BX806896330", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9HG": "PCN\n |\n MDDS", + "99AKDL": "MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6330N", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "42 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "86°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9DF", + "Spec Code": "SRKH9", + "Ordering Code": "CD8068904582501", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9DF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6334", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "18 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "69°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHJ7", + "Spec Code": "SRKXQ", + "Ordering Code": "CD8068904657601", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJ7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6336Y", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.60 GHz", + "Intel SpeedStep® Max Frequency": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "80°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKF6", + "Spec Code": "SRKXB", + "Ordering Code": "BX806896336Y", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHC": "PCN\n |\n MDDS", + "99AKF6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6338", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9LX", + "Spec Code": "SRKJ9", + "Ordering Code": "CD8068904572501", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9LX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6338N", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "83°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHXL", + "Spec Code": "SRKY2", + "Ordering Code": "CD8068904722302", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHXL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6338T", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "87°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHP", + "Spec Code": "SRKXF", + "Ordering Code": "CD8068904658201", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6342", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "230 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHHA", + "Spec Code": "SRKXA", + "Ordering Code": "CD8068904657701", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6346", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "36 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "78°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9HL", + "Spec Code": "SRKHN", + "Ordering Code": "CD8068904570201", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9HL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6348", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "42 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "235 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "80°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9HV", + "Spec Code": "SRKHP", + "Ordering Code": "CD8068904572204", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9HV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "6354", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "39 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "77°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9D6", + "Spec Code": "SRKH7", + "Ordering Code": "CD8068904571601", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9D6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8351N", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "36", + "Total Threads": "72", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "54 MB", + "TDP": "225 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "76°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9KK", + "Spec Code": "SRKJ3", + "Ordering Code": "CD8068904582702", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9KK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8352M", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.50 GHz", + "Intel SpeedStep® Max Frequency": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "77°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AJFV", + "Spec Code": "SRKYF", + "Ordering Code": "CD8068904686504", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AJFV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8352S", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.40 GHz", + "Intel SpeedStep® Max Frequency": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "512 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9LT", + "Spec Code": "SRKJ8", + "Ordering Code": "CD8068904642802", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9LT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8352V", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "36", + "Total Threads": "72", + "Max Turbo Frequency": "3.50 GHz", + "Intel SpeedStep® Max Frequency": "3.50 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "54 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "195 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "78°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9KH", + "Spec Code": "SRKJ2", + "Ordering Code": "CD8068904571501", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9KH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8352Y", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.40 GHz", + "Intel SpeedStep® Max Frequency": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9GC", + "Spec Code": "SRKHG", + "Ordering Code": "CD8068904572401", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9GC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8358", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "250 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "81°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9KF", + "Spec Code": "SRKJ1", + "Ordering Code": "CD8068904572302", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9KF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8358P", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "240 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "80°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9KC", + "Spec Code": "SRKJ0", + "Ordering Code": "CD8068904599101", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9KC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8362", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "48 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "265 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "82°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "64 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHXM", + "Spec Code": "SRKY3", + "Ordering Code": "CD8068904722404", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHXM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8368", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "38", + "Total Threads": "76", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "57 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "270 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "84°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "512 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9D7", + "Spec Code": "SRKH8", + "Ordering Code": "CD8068904572001", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9D7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8368Q", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "38", + "Total Threads": "76", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "57 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "270 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "58°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "512 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9JT", + "Spec Code": "SRKHX", + "Ordering Code": "CD8068904582803", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9JT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "8380", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "40", + "Total Threads": "80", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "60 MB", + "Intel® UPI Speed": "11.2 GT/s", + "Max # of UPI Links": "3", + "TDP": "270 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "83°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "512 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9J4", + "Spec Code": "SRKHR", + "Ordering Code": "CD8068904572601", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99A9J4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "4309Y", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.60 GHz", + "Intel SpeedStep® Max Frequency": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB", + "Intel® UPI Speed": "10.4 GT/s", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "76°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKDP", + "Spec Code": "SRKXS", + "Ordering Code": "BX806894309Y", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJC": "PCN\n |\n MDDS", + "99AKDP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "4310", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "18 MB", + "Intel® UPI Speed": "10.4 GT/s", + "Max # of UPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "82°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKDN", + "Spec Code": "SRKXN", + "Ordering Code": "BX806894310", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJ2": "PCN\n |\n MDDS", + "99AKDN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "4310T", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "15 MB", + "Intel® UPI Speed": "10.4 GT/s", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "88°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AHJ5", + "Spec Code": "SRKXP", + "Ordering Code": "CD8068904659001", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHJ5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "4314", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "24 MB", + "Intel® UPI Speed": "10.4 GT/s", + "Max # of UPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "86°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKF8", + "Spec Code": "SRKXL", + "Ordering Code": "BX806894314", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHZ": "PCN\n |\n MDDS", + "99AKF8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "4316", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB", + "Intel® UPI Speed": "10.4 GT/s", + "Max # of UPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "4.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "84°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "8 GB", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AKF7", + "Spec Code": "SRKXH", + "Ordering Code": "BX806894316", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AHHT": "PCN\n |\n MDDS", + "99AKF7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "6330H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "6", + "TDP": "150 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A64C", + "Spec Code": "SRK5A", + "Ordering Code": "CD8070604560002", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A64C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8356H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "6", + "TDP": "190 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A643", + "Spec Code": "SRK57", + "Ordering Code": "CD8070604559701", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8360H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "6", + "TDP": "225 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A64A", + "Spec Code": "SRK59", + "Ordering Code": "CD8070604559900", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A64A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8360HL", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "6", + "TDP": "225 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A646", + "Spec Code": "SRK58", + "Ordering Code": "CD8070604559801", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A646": "PCN" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "5318H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "6", + "TDP": "150 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34K", + "Spec Code": "SRJY3", + "Ordering Code": "CD8070604481600", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A0H3": "PCN\n |\n MDDS", + "99A34K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "5320H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "6", + "TDP": "150 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34G", + "Spec Code": "SRJY1", + "Ordering Code": "CD8070604481501", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A34G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "6328H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "6", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Speed Select Technology – Core Power": "Yes", + "Intel® Speed Select Technology – Turbo Frequency": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34C", + "Spec Code": "SRJXY", + "Ordering Code": "CD8070604481201", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A34C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "6328HL", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "6", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34D", + "Spec Code": "SRJXZ", + "Ordering Code": "CD8070604481301", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A34D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "6348H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "6", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34A", + "Spec Code": "SRJXX", + "Ordering Code": "CD8070604481101", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A34A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8353H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "6", + "TDP": "150 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A34H", + "Spec Code": "SRJY2", + "Ordering Code": "CD8070604481601", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A34H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8354H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "6", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A677", + "Spec Code": "SRK5Y", + "Ordering Code": "CD8070604481002", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A677": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8376H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "6", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A33P", + "Spec Code": "SRJXS", + "Ordering Code": "CD8070604480501", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A33P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8376HL", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "6", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A33R", + "Spec Code": "SRJXT", + "Ordering Code": "CD8070604480601", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A33R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "3rd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cooper Lake", + "Vertical Segment": "Server", + "Processor Number": "8380H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "6", + "TDP": "250 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1.12 TB", + "Memory Types": "DDR4 RDIMM", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA4189", + "Package Size": "77.5x56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A33D", + "Spec Code": "SRJXQ", + "Ordering Code": "CD8070604480301", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A33D": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "3206R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "1.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2133", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PTW", + "Spec Code": "SRG25", + "Ordering Code": "BX806953206R", + "Shipping Media": "BOX", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H5M": "PCN\n |\n MDDS", + "999PTW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5218R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "2", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VLN", + "Spec Code": "SRGZ7", + "Ordering Code": "BX806955218R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKD": "PCN\n |\n MDDS", + "999VLN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5220R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VM1", + "Spec Code": "SRGZP", + "Ordering Code": "BX806955220R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PT3": "PCN\n |\n MDDS", + "999VM1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6208U", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "0", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PKL", + "Spec Code": "SRGZD", + "Ordering Code": "CD8069504449101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6226R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VLV", + "Spec Code": "SRGZC", + "Ordering Code": "BX806956226R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKK": "PCN\n |\n MDDS", + "999VLV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6230R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "26", + "Total Threads": "52", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VLT", + "Spec Code": "SRGZA", + "Ordering Code": "BX806956230R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKH": "PCN\n |\n MDDS", + "999VLT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6238R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "2", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VLR", + "Spec Code": "SRGZ9", + "Ordering Code": "BX806956238R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKG": "PCN\n |\n MDDS", + "999VLR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6240R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VLP", + "Spec Code": "SRGZ8", + "Ordering Code": "BX806956240R", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKF": "PCN\n |\n MDDS", + "999VLP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6242R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PL3", + "Spec Code": "SRGZJ", + "Ordering Code": "CD8069504449601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PL3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6246R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "75°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PL5", + "Spec Code": "SRGZL", + "Ordering Code": "CD8069504449801", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PL5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6248R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "2", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "75°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PL1", + "Spec Code": "SRGZG", + "Ordering Code": "CD8069504449401", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PL1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6250", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "60°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999MDW", + "Spec Code": "SRGTR", + "Ordering Code": "CD8069504425402", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999MDW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6250L", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "185 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "60°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VDR", + "Spec Code": "SRH5D", + "Ordering Code": "CD8069504497400", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VDR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6256", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "64°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999MDT", + "Spec Code": "SRGTQ", + "Ordering Code": "CD8069504425301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999MDT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6258R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "2", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "74°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PKN", + "Spec Code": "SRGZF", + "Ordering Code": "CD8069504449301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4210R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "2", + "TDP": "100 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PTV", + "Spec Code": "SRG24", + "Ordering Code": "BX806954210R", + "Shipping Media": "BOX", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H5K": "PCN\n |\n MDDS", + "999PTV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4210T", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "91°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999P31", + "Spec Code": "SRGYH", + "Ordering Code": "CD8069504444900", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999P31": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4214R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "2", + "TDP": "100 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PTH", + "Spec Code": "SRG1W", + "Ordering Code": "BX806954214R", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H4H": "PCN\n |\n MDDS", + "999PTH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4215R", + "Status": "Launched", + "Launch Date": "Q1'20", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PKM", + "Spec Code": "SRGZE", + "Ordering Code": "CD8069504449200", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999PKM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "9221", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "71.5 MB", + "Max # of UPI Links": "4", + "TDP": "250 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "12", + "Max CPU Configuration": "2", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "9222", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "71.5 MB", + "Max # of UPI Links": "4", + "TDP": "250 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "12", + "Max CPU Configuration": "2", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "3204", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "1.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2133", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K53", + "Spec Code": "SRFBP", + "Ordering Code": "BX806953204", + "Shipping Media": "BOX", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CML": "PCN\n |\n MDDS", + "999K53": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5215", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CM4", + "Spec Code": "SRFBC", + "Ordering Code": "CD8069504214002", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5215L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CM6", + "Spec Code": "SRFBE", + "Ordering Code": "CD8069504214202", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5217", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CM7", + "Spec Code": "SRFBF", + "Ordering Code": "CD8069504214302", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5218", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FNZ", + "Spec Code": "SRF8T", + "Ordering Code": "BX806955218", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AZ7": "PCN\n |\n MDDS", + "999FNZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5218B", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "125 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DKN", + "Spec Code": "SRFDJ", + "Ordering Code": "CD8069504295701", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DKN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5218N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "110 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "81°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DA8", + "Spec Code": "SRFD9", + "Ordering Code": "CD8069504289900", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DA8": "PCN\n |\n MDDS", + "999KGL": "PCN" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5218T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "93°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FVX", + "Spec Code": "SRFPM", + "Ordering Code": "CD8069504283204", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FVX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5220", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "2", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H7X", + "Spec Code": "SRFBJ", + "Ordering Code": "BX806955220", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CMA": "PCN\n |\n MDDS", + "999H7X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5220S", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "2", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FW5", + "Spec Code": "SRFPT", + "Ordering Code": "CD8069504283804", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FW5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5220T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2667", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "93°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FVV", + "Spec Code": "SRFPK", + "Ordering Code": "CD8069504283006", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FVV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "5222", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "72°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999AZZ", + "Spec Code": "SRF8V", + "Ordering Code": "CD8069504193501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AZZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6209U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "0", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FWH", + "Spec Code": "SRFQ3", + "Ordering Code": "CD8069504284804", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FWH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6210U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "0", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0N", + "Spec Code": "SRF9B", + "Ordering Code": "CD8069504198101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6212U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0M", + "Spec Code": "SRF9A", + "Ordering Code": "CD8069504198002", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6222V", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "83°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FWL", + "Spec Code": "SRFQ5", + "Ordering Code": "CD8069504285204", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FWL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6226", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "19.25 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FW1", + "Spec Code": "SRFPP", + "Ordering Code": "CD8069504283404", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FW1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6230", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP0", + "Spec Code": "SRF8W", + "Ordering Code": "BX806956230", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C00": "PCN\n |\n MDDS", + "999FP0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6230N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FW3", + "Spec Code": "SRFPR", + "Ordering Code": "CD8069504283604", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FW3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6230T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FW4", + "Spec Code": "SRFPS", + "Ordering Code": "CD8069504283704", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FW4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6234", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999KNR", + "Spec Code": "SRFPN", + "Ordering Code": "BX806956234", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FVZ": "PCN\n |\n MDDS", + "999KNR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6238", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30.25 MB", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999KNP", + "Spec Code": "SRFPL", + "Ordering Code": "BX806956238", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FVW": "PCN\n |\n MDDS", + "999KNP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6238L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30.25 MB", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FWG", + "Spec Code": "SRFQ2", + "Ordering Code": "CD8069504284704", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FWG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6238T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "30.25 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0P", + "Spec Code": "SRF9C", + "Ordering Code": "CD8069504200401", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6240", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP1", + "Spec Code": "SRF8X", + "Ordering Code": "BX806956240", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C01": "PCN\n |\n MDDS", + "999FP1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6240L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FWD", + "Spec Code": "SRFQ0", + "Ordering Code": "CD8069504284503", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FWD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6240Y", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "74°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0R", + "Spec Code": "SRF9D", + "Ordering Code": "CD8069504200501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6242", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP2", + "Spec Code": "SRF8Y", + "Ordering Code": "BX806956242", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C05": "PCN\n |\n MDDS", + "999FP2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6244", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "74°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C07", + "Spec Code": "SRF8Z", + "Ordering Code": "CD8069504194202", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C07": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6246", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FVT", + "Spec Code": "SRFPJ", + "Ordering Code": "CD8069504282905", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FVT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6248", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP3", + "Spec Code": "SRF90", + "Ordering Code": "BX806956248", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C09": "PCN\n |\n MDDS", + "999FP3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6252", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP4", + "Spec Code": "SRF91", + "Ordering Code": "BX806956252", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0A": "PCN\n |\n MDDS", + "999FP4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6252N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "74°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FW2", + "Spec Code": "SRFPQ", + "Ordering Code": "CD8069504283503", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FW2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6254", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "3", + "TDP": "200 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "82°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0C", + "Spec Code": "SRF92", + "Ordering Code": "CD8069504194501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "6262V", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "3", + "TDP": "135 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "91°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FWK", + "Spec Code": "SRFQ4", + "Ordering Code": "CD8069504285004", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999FWK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8253", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0D", + "Spec Code": "SRF93", + "Ordering Code": "CD8069504194601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8256", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "72°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FP5", + "Spec Code": "SRF94", + "Ordering Code": "BX806958256", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0F": "PCN\n |\n MDDS", + "999FP5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8260", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0X", + "Spec Code": "SRF9H", + "Ordering Code": "CD8069504201101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8260L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0W", + "Spec Code": "SRF9G", + "Ordering Code": "CD8069504201001", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8260Y", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0V", + "Spec Code": "SRF9F", + "Ordering Code": "CD8069504200902", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8268", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0G", + "Spec Code": "SRF95", + "Ordering Code": "CD8069504195101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8270", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "26", + "Total Threads": "52", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "35.75 MB", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0H", + "Spec Code": "SRF96", + "Ordering Code": "CD8069504195201", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8276", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0L", + "Spec Code": "SRF99", + "Ordering Code": "CD8069504195501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8276L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C0J", + "Spec Code": "SRF97", + "Ordering Code": "CD8069504195301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C0J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8280", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C14", + "Spec Code": "SRF9P", + "Ordering Code": "CD8069504228001", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C14": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "8280L", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4.5 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C16", + "Spec Code": "SRF9R", + "Ordering Code": "CD8069504228201", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C16": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "9242", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "48", + "Total Threads": "96", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "71.5 MB Intel® Smart Cache", + "Max # of UPI Links": "4", + "TDP": "350 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "12", + "Max CPU Configuration": "2", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "9282", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "56", + "Total Threads": "112", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "77 MB Intel® Smart Cache", + "Max # of UPI Links": "4", + "TDP": "400 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "12", + "Max CPU Configuration": "2", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4208", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K51", + "Spec Code": "SRFBM", + "Ordering Code": "BX806954208", + "Shipping Media": "BOX", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CMF": "PCN\n |\n MDDS", + "999K51": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4209T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "91°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CMX", + "Spec Code": "SRFBQ", + "Ordering Code": "CD8069503956900", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CMX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4210", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K50", + "Spec Code": "SRFBL", + "Ordering Code": "BX806954210", + "Shipping Media": "BOX", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CMD": "PCN\n |\n MDDS", + "999K50": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4214", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H7T", + "Spec Code": "SRFB9", + "Ordering Code": "BX806954214", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM1": "PCN\n |\n MDDS", + "999H7T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4214Y", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "Yes", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DKL", + "Spec Code": "SRFDG", + "Ordering Code": "CD8069504294401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DKL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4215", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CM2", + "Spec Code": "SRFBA", + "Ordering Code": "CD8069504212701", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "2nd Generation Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Server", + "Processor Number": "4216", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "2", + "TDP": "100 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "No", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H7W", + "Spec Code": "SRFBB", + "Ordering Code": "BX806954216", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CM3": "PCN\n |\n MDDS", + "999H7W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6138P", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "195 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "Max CPU Configuration": "2", + "Thermal Solution Specification": "2U extended air", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975680", + "Spec Code": "SRCUG", + "Ordering Code": "CM8067303824101", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A002U", + "CCATS": "G168390", + "US HTS": "8542310001", + "975680": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "3104", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2133", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959762", + "Spec Code": "SR3GM", + "Ordering Code": "BX806733104", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957420": "PCN\n |\n MDDS", + "959762": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "3106", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "1.70 GHz", + "Cache": "11 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2133", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959761", + "Spec Code": "SR3GL", + "Ordering Code": "BX806733106", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957419": "PCN\n |\n MDDS", + "959761": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5115", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "13.75 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957337", + "Spec Code": "SR3GB", + "Ordering Code": "CD8067303535601", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957337": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5118", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "81°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957341", + "Spec Code": "SR3GF", + "Ordering Code": "CD8067303536100", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5119T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959780", + "Spec Code": "SR3MN", + "Ordering Code": "CD8067303567703", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959780": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5120", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "81°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959684", + "Spec Code": "SR3GD", + "Ordering Code": "BX806735120", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957339": "PCN\n |\n MDDS", + "959684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5120T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957338", + "Spec Code": "SR3GC", + "Ordering Code": "CD8067303535700", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957338": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "5122", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "71°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958975", + "Spec Code": "SR3AT", + "Ordering Code": "BX806735122", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955974": "PCN\n |\n MDDS", + "958975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6126", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956004", + "Spec Code": "SR3B3", + "Ordering Code": "CD8067303405900", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6126F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958466", + "Spec Code": "SR3KE", + "Ordering Code": "CD8067303593400", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958466": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6126T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958190", + "Spec Code": "SR3J9", + "Ordering Code": "CD8067303593100", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958190": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6128", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "74°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959767", + "Spec Code": "SR3J4", + "Ordering Code": "BX806736128", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958179": "PCN\n |\n MDDS", + "959767": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6130", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958982", + "Spec Code": "SR3B9", + "Ordering Code": "BX806736130", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956019": "PCN\n |\n MDDS", + "958982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6130F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958465", + "Spec Code": "SR3KD", + "Ordering Code": "CD8067303593300", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958465": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6130T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958189", + "Spec Code": "SR3J8", + "Ordering Code": "CD8067303593000", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958189": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6132", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "19.25 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958178", + "Spec Code": "SR3J3", + "Ordering Code": "CD8067303592500", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958178": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6134", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "79°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958974", + "Spec Code": "SR3AR", + "Ordering Code": "BX806736134", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955887": "PCN\n |\n MDDS", + "958974": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6136", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956002", + "Spec Code": "SR3B2", + "Ordering Code": "CD8067303405800", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6138", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958979", + "Spec Code": "SR3B5", + "Ordering Code": "BX806736138", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956008": "PCN\n |\n MDDS", + "958979": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6138F", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958471", + "Spec Code": "SR3KK", + "Ordering Code": "CD8067303593900", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958471": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6138T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "94°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958188", + "Spec Code": "SR3J7", + "Ordering Code": "CD8067303592900", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958188": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6140", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "91°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958976", + "Spec Code": "SR3AX", + "Ordering Code": "BX806736140", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955989": "PCN\n |\n MDDS", + "958976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6142", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958977", + "Spec Code": "SR3AY", + "Ordering Code": "BX806736142", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955993": "PCN\n |\n MDDS", + "958977": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6142F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958469", + "Spec Code": "SR3KH", + "Ordering Code": "CD8067303593700", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958469": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6144", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "75°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "962201", + "Spec Code": "SR3TR", + "Ordering Code": "CD8067303843000", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "962201": "PCN\n |\n MDDS", + "959504": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6146", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959503", + "Spec Code": "SR3MA", + "Ordering Code": "CD8067303657201", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959503": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6148", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "86°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958981", + "Spec Code": "SR3B6", + "Ordering Code": "BX806736148", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956010": "PCN\n |\n MDDS", + "958981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6148F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "27.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958470", + "Spec Code": "SR3KJ", + "Ordering Code": "CD8067303593800", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958470": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6150", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955037", + "Spec Code": "SR37K", + "Ordering Code": "CD8067303328000", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6152", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30.25 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958978", + "Spec Code": "SR3B4", + "Ordering Code": "BX806736152", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956006": "PCN\n |\n MDDS", + "958978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "6154", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "200 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "82°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958186", + "Spec Code": "SR3J5", + "Ordering Code": "CD8067303592700", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958186": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8153", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "22 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "125 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956021", + "Spec Code": "SR3BA", + "Ordering Code": "CD8067303408900", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956021": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8156", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "71°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955978", + "Spec Code": "SR3AV", + "Ordering Code": "CD8067303368800", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955978": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8158", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956012", + "Spec Code": "SR3B7", + "Ordering Code": "CD8067303406500", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8160", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "33 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958972", + "Spec Code": "SR3B0", + "Ordering Code": "BX806738160", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955998": "PCN\n |\n MDDS", + "958972": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8160F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "33 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "160 W", + "Embedded Options Available": "No", + "Description": "Intel® Server Component Extended Warranty provides an additional 2 years and is available wherever the 3 year standard warranty is available, and must be order at the same time or within 30 days of product order", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958468", + "Spec Code": "SR3KG", + "Ordering Code": "CD8067303593600", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958468": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8160T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "33 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "93°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958187", + "Spec Code": "SR3J6", + "Ordering Code": "CD8067303592800", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958187": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8164", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "26", + "Total Threads": "52", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "35.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958973", + "Spec Code": "SR3BB", + "Ordering Code": "BX806738164", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956023": "PCN\n |\n MDDS", + "958973": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8168", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "33 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955036", + "Spec Code": "SR37J", + "Ordering Code": "CD8067303327701", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8170", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "26", + "Total Threads": "52", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "35.75 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958971", + "Spec Code": "SR37H", + "Ordering Code": "BX806738170", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955035": "PCN\n |\n MDDS", + "958971": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8176", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "38.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "89°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955028", + "Spec Code": "SR37A", + "Ordering Code": "CD8067303314700", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955028": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8176F", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "38.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "173 W", + "Embedded Options Available": "No", + "Description": "Intel® Server Component Extended Warranty provides an additional 2 years and is available wherever the 3 year standard warranty is available, and must be order at the same time or within 30 days of product order", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "87°C", + "Package Size": "88.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Integrated Intel® Omni-Path Architecture (Intel® OPA)": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959636", + "Spec Code": "SR3MK", + "Ordering Code": "CD8067303694600", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "8180", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "38.5 MB L3 Cache", + "Max # of UPI Links": "3", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "84°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958969", + "Spec Code": "SR377", + "Ordering Code": "BX806738180", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955025": "PCN\n |\n MDDS", + "958969": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4108", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "11 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959764", + "Spec Code": "SR3GJ", + "Ordering Code": "BX806734108", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957417": "PCN\n |\n MDDS", + "959764": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4109T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "11 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "90°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "957422", + "Spec Code": "SR3GP", + "Ordering Code": "CD8067303562200", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957422": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4110", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "11 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959763", + "Spec Code": "SR3GH", + "Ordering Code": "BX806734110", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957416": "PCN\n |\n MDDS", + "959763": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4112", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8.25 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959766", + "Spec Code": "SR3GN", + "Ordering Code": "BX806734112", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957421": "PCN\n |\n MDDS", + "959766": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4114T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "13.75 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "92°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959707", + "Spec Code": "SR3MM", + "Ordering Code": "CD8067303645300", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4116", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "16.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959685", + "Spec Code": "SR3HQ", + "Ordering Code": "BX806734116", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957661": "PCN\n |\n MDDS", + "959685": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Scalable Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "4116T", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "16.5 MB L3 Cache", + "Max # of UPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4-2400", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "TCASE": "91°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959790", + "Spec Code": "SR3MQ", + "Ordering Code": "CD8067303645400", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959790": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2314", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ACXT", + "Spec Code": "SRKN8", + "Ordering Code": "CM8070804496113", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACXT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2324G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMPM", + "Spec Code": "SRKN7", + "Ordering Code": "BX80708E2324G", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACXR": "PCN\n |\n MDDS", + "99AMPM": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2334", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMPL", + "Spec Code": "SRKN6", + "Ordering Code": "BX80708E2334", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACXM": "PCN\n |\n MDDS", + "99AMPL": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2336", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMPK", + "Spec Code": "SRKN5", + "Ordering Code": "BX80708E2336", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACX8": "PCN\n |\n MDDS", + "99AMPK": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2356G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ACX1", + "Spec Code": "SRKN2", + "Ordering Code": "CM8070804495016", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACX1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2374G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMPJ", + "Spec Code": "SRKN3", + "Ordering Code": "BX80708E2374G", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACX3": "PCN\n |\n MDDS", + "99AMPJ": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2378", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ACX4", + "Spec Code": "SRKN4", + "Ordering Code": "CM8070804495612", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACX4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2378G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMPH", + "Spec Code": "SRKN1", + "Ordering Code": "BX80708E2378G", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACX0": "PCN\n |\n MDDS", + "99AMPH": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2386G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ACWZ", + "Spec Code": "SRKN0", + "Ordering Code": "CM8070804494716", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACWZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2388G", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @60 Hz", + "Max Resolution (DP)‡": "5120 x 3200 @ 60 Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 60 Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "1", + "Device ID": "0x4C9A", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "TJUNCTION": "100 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Maximum Enclave Page Cache (EPC) Size for Intel® SGX": "0.5 GB", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ACWX", + "Spec Code": "SRKMZ", + "Ordering Code": "CM8070804494617", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ACWX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2226GE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMM", + "Spec Code": "SRGQW", + "Ordering Code": "CM8068404405020", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2254ME", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0L", + "Spec Code": "SRFEM", + "Ordering Code": "CL8068404175200", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2254ML", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0H", + "Spec Code": "SRFEJ", + "Ordering Code": "CL8068404165301", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2276ME", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F09", + "Spec Code": "SRFEC", + "Ordering Code": "CL8068404164700", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F09": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2276ML", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0F", + "Spec Code": "SRFEG", + "Ordering Code": "CL8068404165100", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2278GE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "16 MB", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JAD", + "Spec Code": "SRGDY", + "Ordering Code": "CM8068404196302", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E-2278GEL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JC2", + "Spec Code": "SRGE2", + "Ordering Code": "CM8068404311303", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JC2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2224", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Device ID": "N/A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMJ", + "Spec Code": "SRFAV", + "Ordering Code": "BX80684E2224", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C7J": "PCN\n |\n MDDS", + "999JMJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2224G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JML", + "Spec Code": "SRFAW", + "Ordering Code": "BX80684E2224G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C89": "PCN\n |\n MDDS", + "999JML": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2226G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMG", + "Spec Code": "SRF7F", + "Ordering Code": "BX80684E2226G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ADW": "PCN\n |\n MDDS", + "999JMG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2234", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Device ID": "N/A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMM", + "Spec Code": "SRFAX", + "Ordering Code": "BX80684E2234", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C8C": "PCN\n |\n MDDS", + "999JMM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2236", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "Device ID": "N/A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMH", + "Spec Code": "SRF7G", + "Ordering Code": "BX80684E2236", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ADX": "PCN\n |\n MDDS", + "999JMH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2244G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C8F", + "Spec Code": "SRFAY", + "Ordering Code": "CM8068404175105", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C8F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2246G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999AFN", + "Spec Code": "SRF7N", + "Ordering Code": "CM8068404227903", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AFN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2274G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "83 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "69.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JMP", + "Spec Code": "SRFDE", + "Ordering Code": "BX80684E2274G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DJL": "PCN\n |\n MDDS", + "999JMP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2276G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999AFM", + "Spec Code": "SRF7M", + "Ordering Code": "CM8068404227703", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999AFM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2276M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXD", + "Spec Code": "SRFCK", + "Ordering Code": "CL8068404068806", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2278G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "73.0°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CD4", + "Spec Code": "SRFB2", + "Ordering Code": "CM8068404225303", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CD4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2286G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "67.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999ADR", + "Spec Code": "SRF7C", + "Ordering Code": "CM8068404173706", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ADR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2286M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ4", + "Spec Code": "SRFCZ", + "Ordering Code": "CL8068404068710", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2288G", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory may require a BIOS update. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TCASE": "67.3°C", + "TJUNCTION": "100", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CD6", + "Spec Code": "SRFB3", + "Ordering Code": "CM8068404224102", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CD6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2124", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973772", + "Spec Code": "SR3WQ", + "Ordering Code": "BX80684E2124", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963447": "PCN\n |\n MDDS", + "973772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2124G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "Yes", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977233", + "Spec Code": "SR3WL", + "Ordering Code": "BX80684E2124G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963428": "PCN\n |\n MDDS", + "977233": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2126G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963464", + "Spec Code": "SR3WU", + "Ordering Code": "CM8068403380219", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2134", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977235", + "Spec Code": "SR3WP", + "Ordering Code": "BX80684E2134", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963443": "PCN\n |\n MDDS", + "977235": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2136", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973774", + "Spec Code": "SR3WW", + "Ordering Code": "BX80684E2136", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963466": "PCN\n |\n MDDS", + "973774": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2144G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963429", + "Spec Code": "SR3WM", + "Ordering Code": "CM8068403654220", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963429": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2146G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974864", + "Spec Code": "SR3WT", + "Ordering Code": "BX80684E2146G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963454": "PCN\n |\n MDDS", + "974864": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2174G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "71 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977244", + "Spec Code": "SR3WN", + "Ordering Code": "BX80684E2174G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963430": "PCN\n |\n MDDS", + "977244": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2176G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "973773", + "Spec Code": "SR3WS", + "Ordering Code": "BX80684E2176G", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963450": "PCN\n |\n MDDS", + "973773": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Server", + "Processor Number": "E-2186G", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "Support for up to 128GB system memory capacity will be available in 2019 and requires both a BIOS update and hardware platform support. Please contact your hardware provider regarding availability for your system.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E96", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963448", + "Spec Code": "SR3WR", + "Ordering Code": "CM8068403379918", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963448": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2176M", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@30Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@30Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963717", + "Spec Code": "SR3YX", + "Ordering Code": "CL8068403359116", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963717": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2186M", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975245", + "Spec Code": "SRCKQ", + "Ordering Code": "CL8068403359021", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "975245": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11155MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH8A", + "Spec Code": "SRKX5", + "Ordering Code": "FH8069004638142", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH8A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11155MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7R", + "Spec Code": "SRKX1", + "Ordering Code": "FH8069004638050", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11555MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH87", + "Spec Code": "SRKX3", + "Ordering Code": "FH8069004638140", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH87": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11555MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7M", + "Spec Code": "SRKWY", + "Ordering Code": "FH8069004638047", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11865MLE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp, Industrial Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "24 MB Intel® Smart Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH89", + "Spec Code": "SRKX4", + "Ordering Code": "FH8069004638151", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH89": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-11865MRE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7L", + "Spec Code": "SRKWX", + "Ordering Code": "FH8069004638046", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3323", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "21 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "220 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "68°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "No", + "Intel® Speed Select Technology – Turbo Frequency": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Platform Firmware Resilience Support": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH6T", + "Spec Code": "SRKWT", + "Ordering Code": "CD8068904708502", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AH6T": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3335", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "24 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "250 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "68°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "No", + "Intel® Speed Select Technology – Turbo Frequency": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Platform Firmware Resilience Support": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH6R", + "Spec Code": "SRKWS", + "Ordering Code": "CD8068904708401", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AH6R": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3345", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "36 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "250 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "73°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "No", + "Intel® Speed Select Technology – Turbo Frequency": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Platform Firmware Resilience Support": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDM", + "Spec Code": "SRKSU", + "Ordering Code": "CD8068904691101", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AFDM": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3365", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm", + "Total Cores": "32", + "Total Threads": "64", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "48 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "270 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "77°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "No", + "Intel® Speed Select Technology – Turbo Frequency": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Platform Firmware Resilience Support": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDP", + "Spec Code": "SRKSW", + "Ordering Code": "CD8068904691303", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AFDP": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3375", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm", + "Total Cores": "38", + "Total Threads": "76", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "57 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "270 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR4-3200", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "8", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA4189", + "TCASE": "80°C", + "Package Size": "77.5mm x 56.5mm", + "Intel® Speed Select Technology – Core Power": "No", + "Intel® Speed Select Technology – Turbo Frequency": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Platform Firmware Resilience Support": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDT", + "Spec Code": "SRKSX", + "Ordering Code": "CD8068904691401", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992CN3", + "CCATS": "G178966", + "US HTS": "8542310001", + "99AFDT": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-11855M", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "3.20 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF9", + "Spec Code": "SRKT8", + "Ordering Code": "FH8069004466609", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-11955M", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A70", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF6", + "Spec Code": "SRKT5", + "Ordering Code": "FH8069004352312", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1350", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included.", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019B", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFH6", + "Spec Code": "SRKPA", + "Ordering Code": "BX80708W1350", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD35": "PCN\n |\n MDDS", + "99AFH6": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1350P", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFH5", + "Spec Code": "SRKP9", + "Ordering Code": "BX80708W1350P", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD34": "PCN\n |\n MDDS", + "99AFH5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1370", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included.", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019B", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFH4", + "Spec Code": "SRKP8", + "Ordering Code": "BX80708W1370", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD33": "PCN\n |\n MDDS", + "99AFH4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1370P", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.10 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFH2", + "Spec Code": "SRKP7", + "Ordering Code": "BX80708W1370P", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2V": "PCN\n |\n MDDS", + "99AFH2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1390", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included.", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019B", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFH1", + "Spec Code": "SRKP5", + "Ordering Code": "BX80708W1390", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2R": "PCN\n |\n MDDS", + "99AFH1": "MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1390P", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD8G", + "Spec Code": "SRKQA", + "Ordering Code": "CM8070804497213", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD8G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1390T", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "14 nm", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C90", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD2T", + "Spec Code": "SRKP6", + "Ordering Code": "CM8070804497518", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-10855M", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BF6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMN", + "Spec Code": "SRH8M", + "Ordering Code": "CL8070104398912", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMN": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "W-10885M", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BF6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMM", + "Spec Code": "SRH8L", + "Ordering Code": "CL8070104398811", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMM": "PCN" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1250", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A5", + "Spec Code": "SRH48", + "Ordering Code": "BX80701W1250", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TL8": "PCN\n |\n MDDS", + "99A1A5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1250E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXC", + "Spec Code": "SRH6L", + "Ordering Code": "CM8070104425005", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1250P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is not included", + "Use Conditions": "Workstation", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.80 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A6", + "Spec Code": "SRH7H", + "Ordering Code": "BX80701W1250P", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W5C": "PCN\n |\n MDDS", + "99A1A6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1250TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BE6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VXD", + "Spec Code": "SRH6M", + "Ordering Code": "CM8070104440305", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VXD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1270", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A9", + "Spec Code": "SRH96", + "Ordering Code": "BX80701W1270", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZF": "PCN\n |\n MDDS", + "99A1A9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1270E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0H5", + "Spec Code": "SRJGE", + "Ordering Code": "CM8070104420607", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A0H5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1270P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is not included", + "Use Conditions": "Workstation", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.50 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A8", + "Spec Code": "SRH95", + "Ordering Code": "BX80701W1270P", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZ1": "PCN\n |\n MDDS", + "99A1A8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1270TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0H6", + "Spec Code": "SRJGF", + "Ordering Code": "CM8070104420706", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A0H6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box. For boxed product, a thermal solution is included", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A1A7", + "Spec Code": "SRH94", + "Ordering Code": "BX80701W1290", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXZ": "PCN\n |\n MDDS", + "99A1A7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1290E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015W", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A07W", + "Spec Code": "SRJFB", + "Ordering Code": "CM8070104420510", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A07W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290P", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray only.", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WXW", + "Spec Code": "SRH93", + "Ordering Code": "CM8070104378412", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-1290T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Included Items": "This product is available in tray only.", + "Use Conditions": "Workstation", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WZH", + "Spec Code": "SRH97", + "Ordering Code": "CM8070104429007", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WZH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "W-1290TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC6", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A082", + "Spec Code": "SRJFH", + "Ordering Code": "CM8070104440205", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A082": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2223", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box.", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "64°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999PPK", + "Spec Code": "SRGSX", + "Ordering Code": "BX80695W2223", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999M02": "PCN\n |\n MDDS", + "999PPK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2225", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "61°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999R68", + "Spec Code": "SRH03", + "Ordering Code": "CD8069504394102", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999R68": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2235", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "This product is available in tray and box.", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "64°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999V4T", + "Spec Code": "SRGVA", + "Ordering Code": "BX80695W2235", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999N1C": "PCN\n |\n MDDS", + "999V4T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2245", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "59°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999R66", + "Spec Code": "SRH02", + "Ordering Code": "CD8069504393801", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999R66": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2255", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "19.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "62°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999N0C", + "Spec Code": "SRGV8", + "Ordering Code": "CD8069504393600", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999N0C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2265", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "19.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "61°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LZN", + "Spec Code": "SRGSQ", + "Ordering Code": "CD8069504393400", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2275", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "19.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "62°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LZM", + "Spec Code": "SRGSP", + "Ordering Code": "CD8069504393300", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-2295", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "93.85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "61°C", + "Package Size": "45mm x 52.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LZJ", + "Spec Code": "SRGSL", + "Ordering Code": "CD8069504393000", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3223", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.20 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "68°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F96", + "Spec Code": "SRFFG", + "Ordering Code": "CD8069504248402", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F96": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3225", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "16.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "68°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F8L", + "Spec Code": "SRFFB", + "Ordering Code": "CD8069504152705", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F8L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3235", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "19.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "180 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "72°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F8M", + "Spec Code": "SRFFC", + "Ordering Code": "CD8069504152802", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F8M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3245", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F8N", + "Spec Code": "SRFFD", + "Ordering Code": "CD8069504152900", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F8N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3245M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "77°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F97", + "Spec Code": "SRFFH", + "Ordering Code": "CD8069504248501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F97": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3265", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F8T", + "Spec Code": "SRFFE", + "Ordering Code": "CD8069504153002", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F8T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3265M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "33 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "78°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F98", + "Spec Code": "SRFFJ", + "Ordering Code": "CD8069504248601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F98": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3275", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F90", + "Spec Code": "SRFFF", + "Ordering Code": "CD8069504153101", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F90": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Workstation", + "Processor Number": "W-3275M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "205 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4-2933", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "64", + "Sockets Supported": "FCLGA3647", + "TCASE": "76°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Select Technology - Performance Profile": "No", + "Intel® Speed Select Technology - Base Frequency": "No", + "Intel® Resource Director Technology (Intel® RDT)": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Run Sure Technology": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F9A", + "Spec Code": "SRFFK", + "Ordering Code": "CD8069504248702", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F9A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "W-3175X", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "28", + "Total Threads": "56", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "38.5 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "TDP": "255 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-2666", + "Maximum Memory Speed": "2666 MHz", + "Max # of Memory Channels": "6", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA3647", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "TJUNCTION": "85°C", + "Package Size": "76.0mm x 56.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999D6R", + "Spec Code": "SRF6L", + "Ordering Code": "BX80673W3175X", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999D6R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2123", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "65", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961844", + "Spec Code": "SR3LJ", + "Ordering Code": "BX80673W2123", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959169": "PCN\n |\n MDDS", + "961844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2125", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "64", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959172", + "Spec Code": "SR3LM", + "Ordering Code": "CD8067303533303", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959172": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2133", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "65", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959171", + "Spec Code": "SR3LL", + "Ordering Code": "CD8067303533204", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2135", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8.25 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "64", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "962353", + "Spec Code": "SR3LN", + "Ordering Code": "BX80673W2135", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959173": "PCN\n |\n MDDS", + "962353": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2145", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "70", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959175", + "Spec Code": "SR3LQ", + "Ordering Code": "CD8067303533601", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959175": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2155", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "13.75 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "68", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959176", + "Spec Code": "SR3LR", + "Ordering Code": "CD8067303533703", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "959176": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2175", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "19 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963212", + "Spec Code": "SR3W2", + "Ordering Code": "CD8067303842300", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963212": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® W Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "W-2195", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "24.75 MB", + "Max # of UPI Links": "0", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4 1600/1866/2133/2400/2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "TCASE": "66", + "Package Size": "45mm x 52.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961300", + "Spec Code": "SR3RX", + "Ordering Code": "CD8067303805901", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961300": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1702", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "2", + "# of Performance-cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "5 MB", + "Max # of UPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8D", + "Spec Code": "SRLC5", + "Ordering Code": "FH8068604437205", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8D": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1712TR", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV83", + "Spec Code": "SRLBZ", + "Ordering Code": "FH8068604436820", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV83": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1713NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7N", + "Spec Code": "SRLBS", + "Ordering Code": "FH8068604435007", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7N": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1713NTE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7P", + "Spec Code": "SRLBT", + "Ordering Code": "FH8068604436204", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7P": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1714", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "38 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV85", + "Spec Code": "SRLC0", + "Ordering Code": "FH8068604436906", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV85": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1715TER", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7W", + "Spec Code": "SRLBX", + "Ordering Code": "FH8068604436605", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7W": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1718T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "46 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV81", + "Spec Code": "SRLBY", + "Ordering Code": "FH8068604436705", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV81": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1722NE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "6", + "# of Performance-cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "36 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8C", + "Spec Code": "SRLC4", + "Ordering Code": "FH8068604437106", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8C": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1726", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "6", + "# of Performance-cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "10 MB", + "Max # of UPI Links": "0", + "TDP": "70 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8A", + "Spec Code": "SRLC3", + "Ordering Code": "FH8068604437107", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8A": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1732TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "52 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7V", + "Spec Code": "SRLBW", + "Ordering Code": "FH8068604436505", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7V": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1733NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "53 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7L", + "Spec Code": "SRLBR", + "Ordering Code": "FH8068604434909", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7L": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1734NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "50 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8G", + "Spec Code": "SRLC7", + "Ordering Code": "FH8068604437405", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8G": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1735TR", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "59 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1736", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "55 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV89", + "Spec Code": "SRLC2", + "Ordering Code": "FH8068604437007", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV89": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1736NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "67 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7K", + "Spec Code": "SRLBQ", + "Ordering Code": "FH8068604434811", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7K": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1739", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "83 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV88", + "Spec Code": "SRLC1", + "Ordering Code": "FH8068604437006", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV88": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1746TER", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "10", + "# of Performance-cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "67 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7R", + "Spec Code": "SRLBU", + "Ordering Code": "FH8068604436317", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7R": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1747NTE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "10", + "# of Performance-cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8F", + "Spec Code": "SRLC6", + "Ordering Code": "FH8068604437308", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8F": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1748TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "10", + "# of Performance-cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8H", + "Spec Code": "SRLC8", + "Ordering Code": "FH8068604564305", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8H": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1749NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "10", + "# of Performance-cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "90 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2227", + "Package Size": "45mm x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV7H", + "Spec Code": "SRLBP", + "Ordering Code": "FH8068604427819", + "Shipping Media": "TRAY", + "Stepping": "Z1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV7H": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2712T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "4", + "# of Performance-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8Z", + "Spec Code": "SRLCK", + "Ordering Code": "FH8068604676144", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV8Z": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2733NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8X", + "Spec Code": "SRLCJ", + "Ordering Code": "FH8068604676143", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8X": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2738", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "8", + "# of Performance-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "15 MB", + "Max # of UPI Links": "0", + "TDP": "88 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV94", + "Spec Code": "SRLCQ", + "Ordering Code": "FH8068604676166", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV94": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2752NTE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "12", + "# of Performance-cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB", + "Max # of UPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8V", + "Spec Code": "SRLCG", + "Ordering Code": "FH8068604676161", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8V": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2752TER", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "12", + "# of Performance-cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB", + "Max # of UPI Links": "0", + "TDP": "77 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV92", + "Spec Code": "SRLCN", + "Ordering Code": "FH8068604676164", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV92": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2753NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "12", + "# of Performance-cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB", + "Max # of UPI Links": "0", + "TDP": "87 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8W", + "Spec Code": "SRLCH", + "Ordering Code": "FH8068604676162", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8W": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2766NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "14", + "# of Performance-cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB", + "Max # of UPI Links": "0", + "TDP": "97 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV9C", + "Spec Code": "SRLCS", + "Ordering Code": "FH8068604676168", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV9C": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2775TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "16", + "# of Performance-cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "25 MB", + "Max # of UPI Links": "0", + "TDP": "100 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV91", + "Spec Code": "SRLCM", + "Ordering Code": "FH8068604676146", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV91": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2776NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "16", + "# of Performance-cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "25 MB", + "Max # of UPI Links": "0", + "TDP": "117 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8T", + "Spec Code": "SRLCF", + "Ordering Code": "FH8068604676160", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8T": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2779", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "16", + "# of Performance-cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "25 MB", + "Max # of UPI Links": "0", + "TDP": "126 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV93", + "Spec Code": "SRLCP", + "Ordering Code": "FH8068604676165", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV93": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2786NTE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "18", + "# of Performance-cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "27.5 MB", + "Max # of UPI Links": "0", + "TDP": "118 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8R", + "Spec Code": "SRLCE", + "Ordering Code": "FH8068604676159", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8R": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2795NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "20", + "# of Performance-cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "30 MB", + "Max # of UPI Links": "0", + "TDP": "110 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV9F", + "Spec Code": "SRLCU", + "Ordering Code": "FH8068604676153", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV9F": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2796NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "20", + "# of Performance-cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "30 MB", + "Max # of UPI Links": "0", + "TDP": "120 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV96", + "Spec Code": "SRLCR", + "Ordering Code": "FH8068604676167", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV96": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2796TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Communications Extended Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Industrial Commercial Temp, Industrial Extended Temp, Server/Enterprise", + "Total Cores": "20", + "# of Performance-cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "30 MB", + "Max # of UPI Links": "0", + "TDP": "118 W", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 x 45mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV90", + "Spec Code": "SRLCL", + "Ordering Code": "FH8068604676163", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV90": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2798NT", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "20", + "# of Performance-cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30 MB", + "Max # of UPI Links": "0", + "TDP": "125 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV8N", + "Spec Code": "SRLCD", + "Ordering Code": "FH8068604676158", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A002R", + "CCATS": "G177233", + "US HTS": "8542310001", + "99AV8N": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Server", + "Processor Number": "D-2799", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "10 nm", + "Use Conditions": "Automotive, Base Transceiver Station, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Industrial Commercial Temp, Server/Enterprise", + "Total Cores": "20", + "# of Performance-cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB", + "Max # of UPI Links": "0", + "TDP": "129 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "3200 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Integrated LAN": "No", + "Max # of SATA 6.0 Gb/s Ports": "24", + "Sockets Supported": "FCBGA2579", + "Package Size": "52.5 mm x 45 mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Resource Director Technology (Intel® RDT)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® SPS", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "No", + "Intel® Platform Firmware Resilience Support": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "99AV9D", + "Spec Code": "SRLCT", + "Ordering Code": "FH8068604676169", + "Shipping Media": "TRAY", + "Stepping": "U1", + "ECCN": "5A992C", + "CCATS": "G188783", + "US HTS": "8542310001", + "99AV9D": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1602", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "27 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "84", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZJ", + "Spec Code": "SRG05", + "Ordering Code": "GG8068204236502", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1622", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "83", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZM", + "Spec Code": "SRG08", + "Ordering Code": "GG8068204236902", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1623N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "83", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZL", + "Spec Code": "SRG07", + "Ordering Code": "GG8068204236801", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1627", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "82", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZN", + "Spec Code": "SRG09", + "Ordering Code": "GG8068204237001", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1633N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "83", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZR", + "Spec Code": "SRG0B", + "Ordering Code": "GG8068204237201", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1637", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "9 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "77", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZP", + "Spec Code": "SRG0A", + "Ordering Code": "GG8068204237101", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1649N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "85", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZV", + "Spec Code": "SRG0D", + "Ordering Code": "GG8068204237401", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Hewitt Lake", + "Vertical Segment": "Server", + "Processor Number": "D-1653N", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB", + "Max # of UPI Links": "0", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "4x 10GbE", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "71", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999GZH", + "Spec Code": "SRG04", + "Ordering Code": "GG8068204235902", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "999GZH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2123IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB", + "Max # of UPI Links": "0", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964092", + "Spec Code": "SR3ZW", + "Ordering Code": "FH8067303784201", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964092": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2141I", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964091", + "Spec Code": "SR3ZV", + "Ordering Code": "FH8067303784100", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964091": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2142IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964095", + "Spec Code": "SR3ZZ", + "Ordering Code": "FH8067303871000", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964095": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2143IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964090", + "Spec Code": "SR3ZU", + "Ordering Code": "FH8067303782900", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964090": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2145NT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "11 MB", + "Max # of UPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964089", + "Spec Code": "SR3ZT", + "Ordering Code": "FH8067303782801", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964089": "PCN\n |\n MDDS" + }, + {}, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2161I", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16.5 MB L2 Cache", + "Max # of UPI Links": "0", + "TDP": "90 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964083", + "Spec Code": "SR3ZN", + "Ordering Code": "FH8067303534104", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964083": "PCN" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2163IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "17 MB", + "Max # of UPI Links": "0", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964084", + "Spec Code": "SR3ZP", + "Ordering Code": "FH8067303692003", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964084": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2166NT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "17 MB", + "Max # of UPI Links": "0", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964093", + "Spec Code": "SR3ZX", + "Ordering Code": "FH8067303784301", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964093": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2173IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "19 MB", + "Max # of UPI Links": "0", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964088", + "Spec Code": "SR3ZS", + "Ordering Code": "FH8067303782702", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964088": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2177NT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "19 MB", + "Max # of UPI Links": "0", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964094", + "Spec Code": "SR3ZY", + "Ordering Code": "FH8067303870800", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964094": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2183IT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "0", + "TDP": "100 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964085", + "Spec Code": "SR3ZQ", + "Ordering Code": "FH8067303782501", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964085": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "D-2187NT", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "22 MB", + "Max # of UPI Links": "0", + "TDP": "110 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2667 MHz", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": ">", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCBGA2518", + "Max CPU Configuration": "1", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "964082", + "Spec Code": "SR3ZM", + "Ordering Code": "FH8067303534005", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "964082": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1513N", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958600", + "Spec Code": "SR3KV", + "Ordering Code": "GG8068203255106", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "958600": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1523N", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958599", + "Spec Code": "SR3KU", + "Ordering Code": "GG8068203255105", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "958599": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1533N", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "9 MB", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958597", + "Spec Code": "SR3KS", + "Ordering Code": "GG8068203255103", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "958597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1543N", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "12 MB", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958602", + "Spec Code": "SR3KW", + "Ordering Code": "GG8068203255107", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "958602": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1553N", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TJUNCTION": "105", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "SPS 3.0", + "Intel® Quiet System Technology": "No", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958598", + "Spec Code": "SR3KT", + "Ordering Code": "GG8068203255104", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992C", + "CCATS": "G186091", + "US HTS": "8542310001", + "958598": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1529", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.30 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "6 MB", + "TDP": "20 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "1600 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "37.5mm x 37.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944013", + "Spec Code": "SR2DR", + "Ordering Code": "GG8067402570001", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1539", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "12 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "37.5mm x 37.5mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944005", + "Spec Code": "SR2DH", + "Ordering Code": "GG8067402569000", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944005": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1559", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "18 MB", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Package Size": "37.5 mm x 37.5 mm", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947376", + "Spec Code": "SR2M5", + "Ordering Code": "GG8067402570801", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "947376": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1557", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "18 MB", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947375", + "Spec Code": "SR2M4", + "Ordering Code": "GG8067402570702", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "947375": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1567", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "18 MB", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947374", + "Spec Code": "SR2M3", + "Ordering Code": "GG8067402570603", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "947374": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1571", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "24 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947371", + "Spec Code": "SR2M0", + "Ordering Code": "GG8067402570310", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "947371": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1577", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "24 MB", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947373", + "Spec Code": "SR2M2", + "Ordering Code": "GG8067402570503", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "947373": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1518", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944010", + "Spec Code": "SR2DN", + "Ordering Code": "GG8067402569700", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1521", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944001", + "Spec Code": "SR2DF", + "Ordering Code": "GG8067402568800", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944001": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1527", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944007", + "Spec Code": "SR2DK", + "Ordering Code": "GG8067402569400", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1528", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "9 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "4", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944008", + "Spec Code": "SR2DL", + "Ordering Code": "GG8067402569500", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1531", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944002", + "Spec Code": "SR2DG", + "Ordering Code": "GG8067402568900", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1537", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "12 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944484", + "Spec Code": "SR2GF", + "Ordering Code": "GG8067402612700", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944484": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1541", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "12 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944000", + "Spec Code": "SR2DE", + "Ordering Code": "GG8067402568700", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1548", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4, DDR3", + "Maximum Memory Speed": "2400 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "SFI, KR, KX, 1000Base-T, 10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944006", + "Spec Code": "SR2DJ", + "Ordering Code": "GG8067402569300", + "Shipping Media": "TRAY", + "Stepping": "V2", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "944006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1520", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "942393", + "Spec Code": "SR29B", + "Ordering Code": "GG8067401741800", + "Shipping Media": "TRAY", + "Stepping": "V1", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "942393": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® D Processor", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "D-1540", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4", + "Maximum Memory Speed": "2133 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "2.0/3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "32", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "General Purpose IO": "Yes", + "UART": "Yes", + "Interfaces Supported": "10GBase-T", + "Sockets Supported": "FCBGA1667", + "Max CPU Configuration": "1", + "TCASE": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "942392", + "Spec Code": "SR29A", + "Ordering Code": "GG8067401635553", + "Shipping Media": "TRAY", + "Stepping": "V1", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "942392": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8894V4", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "60 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952962", + "Spec Code": "SR32U", + "Ordering Code": "CM8066903251800", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952962": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-4809V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.10 GHz", + "Cache": "20 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "69°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948741", + "Spec Code": "SR2S5", + "Ordering Code": "CM8066902027604", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948741": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-4820V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Processor Base Frequency": "2.00 GHz", + "Cache": "25 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "67°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948739", + "Spec Code": "SR2S4", + "Ordering Code": "CM8066902027500", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948739": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-4830V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "35 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "68°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948737", + "Spec Code": "SR2S3", + "Ordering Code": "CM8066902027102", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948737": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-4850V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "40 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "69°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948735", + "Spec Code": "SR2S2", + "Ordering Code": "CM8066902026904", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948735": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8860V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "45 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "75°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948747", + "Spec Code": "SR2S8", + "Ordering Code": "CM8066902325800", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948747": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8867V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "45 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "80°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948743", + "Spec Code": "SR2S6", + "Ordering Code": "CM8066902028403", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948743": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8870V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "50 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "76°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948733", + "Spec Code": "SR2S1", + "Ordering Code": "CM8066902025802", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948733": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8880V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "55 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948745", + "Spec Code": "SR2S7", + "Ordering Code": "CM8066902325500", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8890V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "24", + "Total Threads": "48", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "60 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948873", + "Spec Code": "SR2SS", + "Ordering Code": "CM8066902885200", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8891V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "60 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948869", + "Spec Code": "SR2SQ", + "Ordering Code": "CM8066902027903", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948869": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E7-8893V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "60 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4-1333/1600/1866 DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948871", + "Spec Code": "SR2SR", + "Ordering Code": "CM8066902065502", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948871": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-4809V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB Last Level Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "70°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937882", + "Spec Code": "SR223", + "Ordering Code": "CM8064501551526", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937882": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-4820V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Processor Base Frequency": "1.90 GHz", + "Cache": "25 MB Last Level Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "70°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937884", + "Spec Code": "SR224", + "Ordering Code": "CM8064502020200", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-4830V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30 MB Last Level Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "70°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937881", + "Spec Code": "SR222", + "Ordering Code": "CM8064502020101", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937881": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-4850V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "35 MB Last Level Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "70°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937875", + "Spec Code": "SR221", + "Ordering Code": "CM8064501551702", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8860V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "40 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "75°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937873", + "Spec Code": "SR21Z", + "Ordering Code": "CM8064502017900", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8867V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "45 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937888", + "Spec Code": "SR228", + "Ordering Code": "CM8064502025001", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937888": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8870V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "75°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937871", + "Spec Code": "SR21Y", + "Ordering Code": "CM8064501550107", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937871": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8880V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937870", + "Spec Code": "SR21X", + "Ordering Code": "CM8064501550002", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937870": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8880LV3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "70°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937887", + "Spec Code": "SR227", + "Ordering Code": "CM8064501552522", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8890V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937868", + "Spec Code": "SR21V", + "Ordering Code": "CM8064501549928", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937868": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8891V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "79°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937885", + "Spec Code": "SR225", + "Ordering Code": "CM8064501552202", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E7-8893V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "45 MB Last Level Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "3", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4-1333/1600/1866, DDR3-1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "75°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937886", + "Spec Code": "SR226", + "Ordering Code": "CM8064501753602", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937886": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-2850V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "24 MB", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Max CPU Configuration": "2", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-2870V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930667", + "Spec Code": "SR1GR", + "Ordering Code": "CM8063601273406", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-2880V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930665", + "Spec Code": "SR1GQ", + "Ordering Code": "CM8063601273306", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930665": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-2890V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930675", + "Spec Code": "SR1GV", + "Ordering Code": "CM8063601375306", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930675": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4809V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.90 GHz", + "Cache": "12 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930646", + "Spec Code": "SR1FD", + "Ordering Code": "CM8063601537106", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4820V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930686", + "Spec Code": "SR1H0", + "Ordering Code": "CM8063601521707", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930686": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4830V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "20 MB", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930673", + "Spec Code": "SR1GU", + "Ordering Code": "CM8063601374506", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930673": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4850V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "24 MB", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930663", + "Spec Code": "SR1GP", + "Ordering Code": "CM8063601272906", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930663": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4860V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930680", + "Spec Code": "SR1GX", + "Ordering Code": "CM8063601453406", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930680": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4870V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930661", + "Spec Code": "SR1GN", + "Ordering Code": "CM8063601272606", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930661": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4880V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930659", + "Spec Code": "SR1GM", + "Ordering Code": "CM8063601272512", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930659": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-4890V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930657", + "Spec Code": "SR1GL", + "Ordering Code": "CM8063601272412", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930657": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8850V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "24 MB", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930655", + "Spec Code": "SR1GK", + "Ordering Code": "CM8063601272306", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930655": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8857V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930671", + "Spec Code": "SR1GT", + "Ordering Code": "CM8063601275912", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930671": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8870V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930653", + "Spec Code": "SR1GJ", + "Ordering Code": "CM8063601272006", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930653": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8880V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "73°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930651", + "Spec Code": "SR1GH", + "Ordering Code": "CM8063601271810", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930651": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8880LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "68°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930669", + "Spec Code": "SR1GS", + "Ordering Code": "CM8063601275812", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930669": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8890V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "15", + "Total Threads": "30", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930642", + "Spec Code": "SR1ET", + "Ordering Code": "CM8063601213513", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8891V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930678", + "Spec Code": "SR1GW", + "Ordering Code": "CM8063601377422", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930678": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E7-8893V2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "37.5 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "3", + "TDP": "155 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "32", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "8", + "TCASE": "77°C", + "Package Size": "52mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930684", + "Spec Code": "SR1GZ", + "Ordering Code": "CM8063601454907", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2803", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.73 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 800 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911506", + "Spec Code": "SLC3M", + "Ordering Code": "AT80615006438AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2820", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911510", + "Spec Code": "SLC3R", + "Ordering Code": "AT80615007245AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911510": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2830", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911503", + "Spec Code": "SLC3J", + "Ordering Code": "AT80615005787AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911503": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2850", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911513", + "Spec Code": "SLC3W", + "Ordering Code": "AT80615007452AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911513": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2860", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.67 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911502", + "Spec Code": "SLC3H", + "Ordering Code": "AT80615005781AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911502": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-2870", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S2S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "2", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911516", + "Spec Code": "SLC3U", + "Ordering Code": "AT80615007266AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911516": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4807", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.86 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 800 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "70°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911505", + "Spec Code": "SLC3L", + "Ordering Code": "AT80615006432AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4820", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911501", + "Spec Code": "SLC3G", + "Ordering Code": "AT80615005772AC", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911501": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4830", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911626", + "Spec Code": "SLC3Q", + "Ordering Code": "BX80615E74830", + "Shipping Media": "BOX", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911509": "PCN\n |\n MDDS", + "911626": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4850", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911512", + "Spec Code": "SLC3V", + "Ordering Code": "AT80615007449AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911512": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4860", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.67 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911511", + "Spec Code": "SLC3S", + "Ordering Code": "AT80615007254AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911511": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-4870", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S4S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "4", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911628", + "Spec Code": "SLC3T", + "Ordering Code": "BX80615E74870", + "Shipping Media": "BOX", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911515": "PCN\n |\n MDDS", + "911628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8830", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911504", + "Spec Code": "SLC3K", + "Ordering Code": "AT80615005826AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911504": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8837", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911507", + "Spec Code": "SLC3N", + "Ordering Code": "AT80615006750AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911507": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8850", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911499", + "Spec Code": "SLC3D", + "Ordering Code": "AT80615007446AA", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911499": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8860", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.67 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911500", + "Spec Code": "SLC3F", + "Ordering Code": "AT80615005760AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911500": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8867L", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "64°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911508", + "Spec Code": "SLC3P", + "Ordering Code": "AT80615007002AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911508": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E7 Family", + "Code Name": "Products formerly Westmere EX", + "Vertical Segment": "Server", + "Processor Number": "E7-8870", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2015", + "Lithography": "32 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "4 TB", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "Scalability": "S8S", + "Sockets Supported": "LGA1567", + "Max CPU Configuration": "8", + "TCASE": "69°C", + "Package Size": "49.17mm x 56.47mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911514", + "Spec Code": "SLC3E", + "Ordering Code": "AT80615005757AB", + "Shipping Media": "TRAY", + "Stepping": "A2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911514": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2699AV4", + "Status": "Launched", + "Launch Date": "04'16", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "55 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952190", + "Spec Code": "SR30Y", + "Ordering Code": "CM8066003197800", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952190": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2699RV4", + "Status": "Launched", + "Launch Date": "04'16", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "55 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952514", + "Spec Code": "SR31X", + "Ordering Code": "CM8066003216500", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952514": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4610V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "1.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "25 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "79", + "Package Size": "45mm x 52.5mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948762", + "Spec Code": "SR2SE", + "Ordering Code": "CM8066002062800", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948762": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4620V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "79", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948771", + "Spec Code": "SR2SJ", + "Ordering Code": "CM8066002883900", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948771": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4627V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "10", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "82", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948865", + "Spec Code": "SR2SN", + "Ordering Code": "CM8066002330800", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948865": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-4628LV4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "35 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "87", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948754", + "Spec Code": "SR2SB", + "Ordering Code": "CM8066002061000", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948754": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4640V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "80", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948756", + "Spec Code": "SR2SC", + "Ordering Code": "CM8066002061701", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948756": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4650V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "35 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "80", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948752", + "Spec Code": "SR2SA", + "Ordering Code": "CM8066002028621", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4655V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "30 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "82", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948769", + "Spec Code": "SR2SH", + "Ordering Code": "CM8066002065000", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948769": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4660V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "40 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "83", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948758", + "Spec Code": "SR2SD", + "Ordering Code": "CM8066002062605", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4667V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "45 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "87", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948764", + "Spec Code": "SR2SF", + "Ordering Code": "CM8066002064600", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948764": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-4669V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "55 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "90", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948767", + "Spec Code": "SR2SG", + "Ordering Code": "CM8066002064800", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948767": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-1620V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "10 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "69°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949007", + "Spec Code": "SR2P6", + "Ordering Code": "BX80660E51620V4", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948130": "PCN\n |\n MDDS", + "949007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-1630V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "10 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "69°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948142", + "Spec Code": "SR2PF", + "Ordering Code": "CM8066002395300", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948142": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-1650V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "15 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "69°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950795", + "Spec Code": "SR2P7", + "Ordering Code": "BX80660E51650V4", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948131": "PCN\n |\n MDDS", + "950795": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-1660V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948146", + "Spec Code": "SR2PK", + "Ordering Code": "CM8066002646401", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948146": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-1680V4", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "20 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948132", + "Spec Code": "SR2P8", + "Ordering Code": "CM8066002044401", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948132": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2603V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Processor Base Frequency": "1.70 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "73°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948124", + "Spec Code": "SR2P0", + "Ordering Code": "CM8066002032805", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948124": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2608LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "1.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "94°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948136", + "Spec Code": "SR2P9", + "Ordering Code": "CM8066002045102", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948136": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2609V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "8", + "Processor Base Frequency": "1.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "74°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949006", + "Spec Code": "SR2P1", + "Ordering Code": "BX80660E52609V4", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948125": "PCN\n |\n MDDS", + "949006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2618LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948141", + "Spec Code": "SR2PE", + "Ordering Code": "CM8066002061300", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948141": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2620V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "74°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949499", + "Spec Code": "SR2R6", + "Ordering Code": "BX80660E52620V4", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948659": "PCN\n |\n MDDS", + "949499": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2623V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "73°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948145", + "Spec Code": "SR2PJ", + "Ordering Code": "CM8066002402400", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948145": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2628LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947637", + "Spec Code": "SR2NC", + "Ordering Code": "CM8066002044903", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947637": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2630V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "74°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949500", + "Spec Code": "SR2R7", + "Ordering Code": "BX80660E52630V4", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948660": "PCN\n |\n MDDS", + "949500": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2630LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "62°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948126", + "Spec Code": "SR2P2", + "Ordering Code": "CM8066002033202", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948126": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2637V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948127", + "Spec Code": "SR2P3", + "Ordering Code": "CM8066002041100", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948127": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2640V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "90 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68.3 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948123", + "Spec Code": "SR2NZ", + "Ordering Code": "CM8066002032701", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948123": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2643V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948128", + "Spec Code": "SR2P4", + "Ordering Code": "CM8066002041500", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948128": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2648LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947638", + "Spec Code": "SR2ND", + "Ordering Code": "CM8066002189001", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947638": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2650V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "80°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948198", + "Spec Code": "SR2N3", + "Ordering Code": "BX80660E52650V4", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947616": "PCN\n |\n MDDS", + "948198": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2650LV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "64°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947622", + "Spec Code": "SR2N8", + "Ordering Code": "CM8066002033006", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2658V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "91°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947636", + "Spec Code": "SR2NB", + "Ordering Code": "CM8066002044801", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2660V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "35 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947617", + "Spec Code": "SR2N4", + "Ordering Code": "CM8066002031201", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947617": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2667V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "78°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948129", + "Spec Code": "SR2P5", + "Ordering Code": "CM8066002041900", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948129": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2680V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "86°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948200", + "Spec Code": "SR2N7", + "Ordering Code": "BX80660E52680V4", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947620": "PCN\n |\n MDDS", + "948200": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2683V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "40 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "84°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946676", + "Spec Code": "SR2JT", + "Ordering Code": "CM8066002023604", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "946676": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2687WV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948206", + "Spec Code": "SR2NA", + "Ordering Code": "BX80660E52687V4", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947624": "PCN\n |\n MDDS", + "948206": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2690V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "89°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948197", + "Spec Code": "SR2N2", + "Ordering Code": "BX80660E52690V4", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947614": "PCN\n |\n MDDS", + "948197": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2695V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "45 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "84°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948059", + "Spec Code": "SR2J1", + "Ordering Code": "BX80660E52695V4", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945450": "PCN\n |\n MDDS", + "948059": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2697V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "45 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946678", + "Spec Code": "SR2JV", + "Ordering Code": "CM8066002023907", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "946678": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2697AV4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "40 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "78°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946684", + "Spec Code": "SR2K1", + "Ordering Code": "CM8066002645900", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "946684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2698V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "20", + "Total Threads": "40", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "50 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "90°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946679", + "Spec Code": "SR2JW", + "Ordering Code": "CM8066002024000", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "946679": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E5-2699V4", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "22", + "Total Threads": "44", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "55 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 1600/1866/2133/2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "76.8 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "79°C", + "Package Size": "45mm x 52.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946675", + "Spec Code": "SR2JS", + "Ordering Code": "CM8066002022506", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "946675": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4610V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "1.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "25 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064402018800 1.700G 25MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "77.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938908", + "Spec Code": "SR22S", + "Ordering Code": "CM8064402018800", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938908": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4620V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401442401 2.000G 25MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "77.7°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938800", + "Spec Code": "SR22K", + "Ordering Code": "CM8064401442401", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938800": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4627V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "10", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401544203 2.6G 25MB FCLGA>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "86.4°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938904", + "Spec Code": "SR22Q", + "Ordering Code": "CM8064401544203", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938904": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4640V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401442601 1.900G 30MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "77.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938802", + "Spec Code": "SR22L", + "Ordering Code": "CM8064401442601", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938802": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-4648V3", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "30 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "87°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "939840", + "Spec Code": "SR26R", + "Ordering Code": "CM8064402019100", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "939840": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4650V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "30 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401441008 2.100G 30MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "77.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938798", + "Spec Code": "SR22J", + "Ordering Code": "CM8064401441008", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938798": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4655V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "30 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064402018600 2.9G 30MB FCLGA>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "84.4°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938906", + "Spec Code": "SR22R", + "Ordering Code": "CM8064402018600", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938906": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4660V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "35 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064402018700 2.100G 35MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "82.5°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938902", + "Spec Code": "SR22P", + "Ordering Code": "CM8064402018700", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938902": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4667V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "40 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401864200 2.000G 40MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "87.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938898", + "Spec Code": "SR22N", + "Ordering Code": "CM8064401864200", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938898": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-4669V3", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "45 MB", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Description": "64BIT MPU 8064401864100 2.100G 45MB FCL>", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "4", + "TCASE": "87.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Instruction Replay Technology": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938889", + "Spec Code": "SR22M", + "Ordering Code": "CM8064401864100", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938889": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2658AV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "91", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "941001", + "Spec Code": "SR27T", + "Ordering Code": "CM8064402331600", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "941001": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-1428LV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "1", + "TCASE": "86", + "Package Size": "42.5mmx45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938932", + "Spec Code": "SR234", + "Ordering Code": "CM8064301548034", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2408LV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.80 GHz", + "Cache": "10 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "92", + "Package Size": "42.5mmx45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938936", + "Spec Code": "SR236", + "Ordering Code": "CM8064301559301", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938936": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2418LV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "93", + "Package Size": "42.5mmx45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938928", + "Spec Code": "SR232", + "Ordering Code": "CM8064301442740", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938928": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2428LV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "93", + "Package Size": "42.5mmx45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938934", + "Spec Code": "SR235", + "Ordering Code": "CM8064301559000", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938934": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2438LV3", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Processor Base Frequency": "1.80 GHz", + "Cache": "25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "83", + "Package Size": "42.5mmx45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "938930", + "Spec Code": "SR233", + "Ordering Code": "CM8064301547350", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "938930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-1620V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1333/1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.2°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937401", + "Spec Code": "SR20P", + "Ordering Code": "BX80644E51620V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937039": "PCN\n |\n MDDS", + "937401": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-1630V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1333/1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.2°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937036", + "Spec Code": "SR20L", + "Ordering Code": "CM8064401614501", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-1650V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1333/1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.7°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937400", + "Spec Code": "SR20J", + "Ordering Code": "BX80644E51650V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937034": "PCN\n |\n MDDS", + "937400": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-1660V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1333/1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "65.9°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937038", + "Spec Code": "SR20N", + "Ordering Code": "CM8064401909200", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937038": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-1680V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1333/1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.26°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937033", + "Spec Code": "SR20H", + "Ordering Code": "CM8064401547809", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2603V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "6", + "Processor Base Frequency": "1.60 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "72.8°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937399", + "Spec Code": "SR20A", + "Ordering Code": "BX80644E52603V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936805": "PCN\n |\n MDDS", + "937399": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2608LV3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "52 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "88.84°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937581", + "Spec Code": "SR21P", + "Ordering Code": "CM8064402033500", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937581": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2609V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "6", + "Processor Base Frequency": "1.90 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "70.9°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937146", + "Spec Code": "SR1YC", + "Ordering Code": "BX80644E52609V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935887": "PCN\n |\n MDDS", + "937146": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2618LV3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87.025°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936795", + "Spec Code": "SR200", + "Ordering Code": "CM8064401610301", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936795": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2620V3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "72.6°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937398", + "Spec Code": "SR207", + "Ordering Code": "BX80644E52620V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936802": "PCN\n |\n MDDS", + "937398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2623V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "80.2°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936803", + "Spec Code": "SR208", + "Ordering Code": "CM8064401832000", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936803": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2628LV3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87.025°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935860", + "Spec Code": "SR1XZ", + "Ordering Code": "CM8064401547200", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935860": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2630V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "85 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "72.1°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937397", + "Spec Code": "SR206", + "Ordering Code": "BX80644E52630V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936801": "PCN\n |\n MDDS", + "937397": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2630LV3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "60.4°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936804", + "Spec Code": "SR209", + "Ordering Code": "CM8064401832100", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936804": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2637V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "76.6°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936797", + "Spec Code": "SR202", + "Ordering Code": "CM8064401724101", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936797": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2640V3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "90 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "74.3°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937396", + "Spec Code": "SR205", + "Ordering Code": "BX80644E52640V3", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936800": "PCN\n |\n MDDS", + "937396": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2643V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "77.3°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936799", + "Spec Code": "SR204", + "Ordering Code": "CM8064401724501", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936799": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2648LV3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "75 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87.025°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935854", + "Spec Code": "SR1XW", + "Ordering Code": "CM8064401546007", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935854": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2650V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "78.9°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937145", + "Spec Code": "SR1YA", + "Ordering Code": "BX80644E52650V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935883": "PCN\n |\n MDDS", + "937145": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2650LV3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "63.6°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935864", + "Spec Code": "SR1Y1", + "Ordering Code": "CM8064401575702", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935864": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2658V3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "86.95", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935852", + "Spec Code": "SR1XV", + "Ordering Code": "CM8064401545904", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935852": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2660V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "79°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937142", + "Spec Code": "SR1XR", + "Ordering Code": "BX80644E52660V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935841": "PCN\n |\n MDDS", + "937142": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2667V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "77.8°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936798", + "Spec Code": "SR203", + "Ordering Code": "CM8064401724301", + "Shipping Media": "TRAY", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936798": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2670V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "84.5°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937143", + "Spec Code": "SR1XS", + "Ordering Code": "BX80644E52670V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935843": "PCN\n |\n MDDS", + "937143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2680V3", + "Status": "Launched", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "84.5°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937140", + "Spec Code": "SR1XP", + "Ordering Code": "BX80644E52680V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935829": "PCN\n |\n MDDS", + "937140": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2683V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "82.5°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935548", + "Spec Code": "SR1XH", + "Ordering Code": "CM8064401609728", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2687WV3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "160 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "74.7°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937144", + "Spec Code": "SR1Y6", + "Ordering Code": "BX80644E52687V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935875": "PCN\n |\n MDDS", + "937144": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2690V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "89.9°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937139", + "Spec Code": "SR1XN", + "Ordering Code": "BX80644E52690V3", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935825": "PCN\n |\n MDDS", + "937139": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2695V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "120 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "82.6°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936656", + "Spec Code": "SR1XG", + "Ordering Code": "BX80644E52695V3", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935546": "PCN\n |\n MDDS", + "936656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2697V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "35 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "76.7°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936655", + "Spec Code": "SR1XF", + "Ordering Code": "BX80644E52697V3", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935544": "PCN\n |\n MDDS", + "936655": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2698V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "40 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4 x8 x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "87.9°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935542", + "Spec Code": "SR1XE", + "Ordering Code": "CM8064401609800", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935542": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E5-2699V3", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "45 MB Intel® Smart Cache", + "Bus Speed": "9.6 GT/s", + "# of QPI Links": "2", + "TDP": "145 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "2", + "TCASE": "76.4°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935539", + "Spec Code": "SR1XD", + "Ordering Code": "CM8064401739300", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "935539": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4603V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "77°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930113", + "Spec Code": "SR1B6", + "Ordering Code": "CM8063501453800", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930113": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4607V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "77°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930107", + "Spec Code": "SR1B4", + "Ordering Code": "CM8063501377604", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930107": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4610V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "75°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929905", + "Spec Code": "SR19L", + "Ordering Code": "CM8063501521600", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929905": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4620V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "75°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930023", + "Spec Code": "SR1AA", + "Ordering Code": "CM8063501393202", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930023": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-4624LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "92°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929996", + "Spec Code": "SR1A1", + "Ordering Code": "CM8063501293407", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929996": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4627V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "88°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930032", + "Spec Code": "SR1AD", + "Ordering Code": "CM8063501454002", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4640V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "75°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929963", + "Spec Code": "SR19R", + "Ordering Code": "CM8063501285713", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4650V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "75°C", + "Package Size": "52.5 mm x 45 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930041", + "Spec Code": "SR1AG", + "Ordering Code": "CM8063501541700", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930041": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4657LV2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "TCASE": "81°C", + "Package Size": "52.5 mm x 51 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929900", + "Spec Code": "SR19F", + "Ordering Code": "CM8063501285605", + "Shipping Media": "TRAY", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929900": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-1428LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "TCASE": "80°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930122", + "Spec Code": "SR1B9", + "Ordering Code": "CM8063401521400", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930122": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2403V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "1.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930053", + "Spec Code": "SR1AL", + "Ordering Code": "CM8063401286702", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930053": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2407V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930050", + "Spec Code": "SR1AK", + "Ordering Code": "CM8063401286600", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930050": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2418LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "79.1°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930080", + "Spec Code": "SR1AV", + "Ordering Code": "CM8063401294008", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2420V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930047", + "Spec Code": "SR1AJ", + "Ordering Code": "CM8063401286503", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2428LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "89.2°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930005", + "Spec Code": "SR1A4", + "Ordering Code": "CM8063401293902", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930005": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2430V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930044", + "Spec Code": "SR1AH", + "Ordering Code": "CM8063401286400", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930044": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2430LV2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "69°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930101", + "Spec Code": "SR1B2", + "Ordering Code": "CM8063401376704", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930101": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2440V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "80°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929969", + "Spec Code": "SR19T", + "Ordering Code": "CM8063401286303", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929969": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2448LV2", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "90.9°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930002", + "Spec Code": "SR1A3", + "Ordering Code": "CM8063401293802", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2450V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "80°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930020", + "Spec Code": "SR1A9", + "Ordering Code": "CM8063401376400", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930020": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2450LV2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "68°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929975", + "Spec Code": "SR19U", + "Ordering Code": "CM8063401287001", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2470V2", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "80°C", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929966", + "Spec Code": "SR19S", + "Ordering Code": "CM8063401286102", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1620V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930068", + "Spec Code": "SR1AR", + "Ordering Code": "CM8063501292405", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930068": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1650V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930065", + "Spec Code": "SR1AQ", + "Ordering Code": "CM8063501292204", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930065": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1660V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "70°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931355", + "Spec Code": "SR1AP", + "Ordering Code": "BX80635E51660V2", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930062": "PCN\n |\n MDDS", + "931355": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2603V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "71°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930089", + "Spec Code": "SR1AY", + "Ordering Code": "CM8063501375902", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930089": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2609V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "71°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931260", + "Spec Code": "SR1AX", + "Ordering Code": "BX80635E52609V2", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930086": "PCN\n |\n MDDS", + "931260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2618LV2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "93°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930119", + "Spec Code": "SR1B8", + "Ordering Code": "CM8063501521302", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2620V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "71°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931259", + "Spec Code": "SR1AN", + "Ordering Code": "BX80635E52620V2", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930059": "PCN\n |\n MDDS", + "931259": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2628LV2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "92°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930038", + "Spec Code": "SR1AF", + "Ordering Code": "CM8063501522202", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930038": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2630V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "71°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931258", + "Spec Code": "SR1AM", + "Ordering Code": "BX80635E52630V2", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930056": "PCN\n |\n MDDS", + "931258": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2630LV2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "63°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930092", + "Spec Code": "SR1AZ", + "Ordering Code": "CM8063501376200", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930092": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2637V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930116", + "Spec Code": "SR1B7", + "Ordering Code": "CM8063501520800", + "Shipping Media": "TRAY", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930116": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2640V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931251", + "Spec Code": "SR19Z", + "Ordering Code": "BX80635E52640V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929990": "PCN\n |\n MDDS", + "931251": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2643V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "74°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929984", + "Spec Code": "SR19X", + "Ordering Code": "CM8063501287403", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929984": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2648LV2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "92°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929999", + "Spec Code": "SR1A2", + "Ordering Code": "CM8063501293506", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929999": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2650V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931256", + "Spec Code": "SR1A8", + "Ordering Code": "BX80635E52650V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930017": "PCN\n |\n MDDS", + "931256": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2650LV2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "65°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929987", + "Spec Code": "SR19Y", + "Ordering Code": "CM8063501287602", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929987": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2658V2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "87°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929993", + "Spec Code": "SR1A0", + "Ordering Code": "CM8063501293200", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2660V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931257", + "Spec Code": "SR1AB", + "Ordering Code": "BX80635E52660V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930026": "PCN\n |\n MDDS", + "931257": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2667V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "74°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929981", + "Spec Code": "SR19W", + "Ordering Code": "CM8063501287304", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2670V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "82°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931254", + "Spec Code": "SR1A7", + "Ordering Code": "BX80635E52670V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930014": "PCN\n |\n MDDS", + "931254": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2680V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "82°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931253", + "Spec Code": "SR1A6", + "Ordering Code": "BX80635E52680V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930011": "PCN\n |\n MDDS", + "931253": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2687WV2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "72°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931354", + "Spec Code": "SR19V", + "Ordering Code": "BX80635E52687V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929978": "PCN\n |\n MDDS", + "931354": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2690V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "88°C", + "Package Size": "52.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931252", + "Spec Code": "SR1A5", + "Ordering Code": "BX80635E52690V2", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930008": "PCN\n |\n MDDS", + "931252": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2695V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "81°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930755", + "Spec Code": "SR1BA", + "Ordering Code": "BX80635E52695V2", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930123": "PCN\n |\n MDDS", + "930755": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 v2 Family", + "Code Name": "Products formerly Ivy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2697V2", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "768 GB", + "Memory Types": "DDR3 800/1066/1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "Physical Address Extensions": "46-bit", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x4, x8, x16", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "86°C", + "Package Size": "52.5mm x 51mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930754", + "Spec Code": "SR19H", + "Ordering Code": "BX80635E52697V2", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929902": "PCN\n |\n MDDS", + "930754": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-1428L", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.80 GHz", + "Cache": "15 MB L3 Cache", + "Bus Speed": "0 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "1", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919367", + "Spec Code": "SR0M4", + "Ordering Code": "CM8062001144000", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919367": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2403", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920456", + "Spec Code": "SR0LS", + "Ordering Code": "BX80621E52403", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919306": "PCN\n |\n MDDS", + "920456": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2407", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920455", + "Spec Code": "SR0LR", + "Ordering Code": "BX80621E52407", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919303": "PCN\n |\n MDDS", + "920455": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2418L", + "Status": "Launched", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'19", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "50 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "Gen 3.0", + "PCI Express Configurations ‡": "Gen 3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "91°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919371", + "Spec Code": "SR0M5", + "Ordering Code": "CM8062000911406", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919371": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2420", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920426", + "Spec Code": "SR0LN", + "Ordering Code": "BX80621E52420", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919291": "PCN\n |\n MDDS", + "920426": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2428L", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'19", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "Gen 3.0", + "PCI Express Configurations ‡": "Gen 3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "89°C", + "Package Size": "LGA1356", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919364", + "Spec Code": "SR0M3", + "Ordering Code": "CM8062007187509", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2430", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920425", + "Spec Code": "SR0LM", + "Ordering Code": "BX80621E52430", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919288": "PCN\n |\n MDDS", + "920425": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2430L", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919285", + "Spec Code": "SR0LL", + "Ordering Code": "CM8062000862912", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919285": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2440", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920423", + "Spec Code": "SR0LK", + "Ordering Code": "BX80621E52440", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919282": "PCN\n |\n MDDS", + "920423": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2448L", + "Status": "Launched", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'19", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "Gen 3.0", + "PCI Express Configurations ‡": "Gen 3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "91°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919358", + "Spec Code": "SR0M2", + "Ordering Code": "CM8062007187409", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919358": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2450", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920422", + "Spec Code": "SR0LJ", + "Ordering Code": "BX80621E52450", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919279": "PCN\n |\n MDDS", + "920422": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2450L", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "70 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "Package Size": "45mm x 42.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919276", + "Spec Code": "SR0LH", + "Ordering Code": "CM8062007283711", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919276": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EN", + "Vertical Segment": "Server", + "Processor Number": "E5-2470", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "1", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "Sockets Supported": "FCLGA1356", + "Max CPU Configuration": "2", + "TCASE": "78", + "Package Size": "45mm x 42.5 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920421", + "Spec Code": "SR0LG", + "Ordering Code": "BX80621E52470", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919273": "PCN\n |\n MDDS", + "920421": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4603", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.00 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919837", + "Spec Code": "SR0LF", + "Ordering Code": "BX80621E54603", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919266": "PCN\n |\n MDDS", + "919837": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4607", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919830", + "Spec Code": "SR0KU", + "Ordering Code": "BX80621E54607", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919190": "PCN\n |\n MDDS", + "919830": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4610", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919831", + "Spec Code": "SR0KS", + "Ordering Code": "BX80621E54610", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919184": "PCN\n |\n MDDS", + "919831": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4617", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919223", + "Spec Code": "SR0L5", + "Ordering Code": "CM8062101145700", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919223": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4620", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919832", + "Spec Code": "SR0L4", + "Ordering Code": "BX80621E54620", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919220": "PCN\n |\n MDDS", + "919832": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4640", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921535", + "Spec Code": "SR0QT", + "Ordering Code": "BX80621E54640", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920363": "PCN\n |\n MDDS", + "921535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4650", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921537", + "Spec Code": "SR0QR", + "Ordering Code": "BX80621E54650", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920357": "PCN\n |\n MDDS", + "921537": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-4650L", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "4S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "4", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921538", + "Spec Code": "SR0QS", + "Ordering Code": "BX80621E54650L", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920360": "PCN\n |\n MDDS", + "921538": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1620", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "0", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "375 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "64.0 °C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919257", + "Spec Code": "SR0LC", + "Ordering Code": "CM8062101038606", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919257": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1650", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "0", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "64.0°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919205", + "Spec Code": "SR0KZ", + "Ordering Code": "CM8062101102002", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919205": "PCN\n |\n MDDS", + "917970": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-1660", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "64°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919827", + "Spec Code": "SR0KN", + "Ordering Code": "BX80621E51660", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919080": "PCN\n |\n MDDS", + "919827": "PCN\n |\n MDDS", + "917889": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2603", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "70.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919828", + "Spec Code": "SR0LB", + "Ordering Code": "BX80621E52603", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919254": "PCN\n |\n MDDS", + "919828": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2609", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "70.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919829", + "Spec Code": "SR0LA", + "Ordering Code": "BX80621E52609", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919251": "PCN\n |\n MDDS", + "919829": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2620", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "77.4°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919838", + "Spec Code": "SR0KW", + "Ordering Code": "BX80621E52620", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917897": "PCN\n |\n MDDS", + "919196": "PCN\n |\n MDDS", + "919838": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2630", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "77.4°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919839", + "Spec Code": "SR0KV", + "Ordering Code": "BX80621E52630", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917893": "PCN\n |\n MDDS", + "919193": "PCN\n |\n MDDS", + "919839": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2630L", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.50 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "69.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919077", + "Spec Code": "SR0KM", + "Ordering Code": "CM8062107185405", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919077": "PCN\n |\n MDDS", + "917888": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2637", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "5 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "70.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919263", + "Spec Code": "SR0LE", + "Ordering Code": "CM8062101143202", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919263": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2640", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "7.2 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "42.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "73 °C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919840", + "Spec Code": "SR0KR", + "Ordering Code": "BX80621E52640", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917892": "PCN\n |\n MDDS", + "919160": "PCN\n |\n MDDS", + "919840": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2643", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "73°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919242", + "Spec Code": "SR0L7", + "Ordering Code": "CM8062107185605", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919242": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2648L", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'19", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.10 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Gen 3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919339", + "Spec Code": "SR0LX", + "Ordering Code": "CM8062100854905", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2650", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "77.4°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919841", + "Spec Code": "SR0KQ", + "Ordering Code": "BX80621E52650", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919090": "PCN\n |\n MDDS", + "919841": "PCN\n |\n MDDS", + "917891": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2650L", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "70 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "72.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919073", + "Spec Code": "SR0KL", + "Ordering Code": "CM8062107185309", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919073": "PCN\n |\n MDDS", + "917887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Embedded", + "Processor Number": "E5-2658", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'19", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "Supported FSBs": "No", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Gen 3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "88°C", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919345", + "Spec Code": "SR0LZ", + "Ordering Code": "CM8062101042805", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919345": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2660", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "73 °C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919842", + "Spec Code": "SR0KK", + "Ordering Code": "BX80621E52660", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917884": "PCN\n |\n MDDS", + "919070": "PCN\n |\n MDDS", + "919842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2665", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "81.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919843", + "Spec Code": "SR0L1", + "Ordering Code": "BX80621E52665", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919210": "PCN\n |\n MDDS", + "919843": "PCN\n |\n MDDS", + "917901": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2667", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "85.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919083", + "Spec Code": "SR0KP", + "Ordering Code": "CM8062100854802", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919083": "PCN\n |\n MDDS", + "917890": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2670", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "115 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "80.0°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919844", + "Spec Code": "SR0KX", + "Ordering Code": "BX80621E52670", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917898": "PCN\n |\n MDDS", + "919199": "PCN\n |\n MDDS", + "919844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2680", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "85°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919846", + "Spec Code": "SR0KH", + "Ordering Code": "BX80621E52680", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917883": "PCN\n |\n MDDS", + "919064": "PCN\n |\n MDDS", + "919846": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2687W", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "67°C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919847", + "Spec Code": "SR0KG", + "Ordering Code": "BX80621E52687W", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917882": "PCN\n |\n MDDS", + "919061": "PCN\n |\n MDDS", + "919847": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E5 Family", + "Code Name": "Products formerly Sandy Bridge EP", + "Vertical Segment": "Server", + "Processor Number": "E5-2690", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'15", + "Lithography": "32 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "2", + "TDP": "135 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "DDR3 800/1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "2S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "2", + "TCASE": "72.0 °C", + "Package Size": "52.5mm x 45.0 mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Identity Protection Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920504", + "Spec Code": "SR0L0", + "Ordering Code": "BX80621E52690", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919209": "PCN\n |\n MDDS", + "920504": "PCN\n |\n MDDS", + "917900": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1285V6", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "79 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955012", + "Spec Code": "SR373", + "Ordering Code": "CM8067702870937", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "955012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1501LV6", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956300", + "Spec Code": "SR3EZ", + "Ordering Code": "CL8067703400904", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956300": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1501MV6", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "956301", + "Spec Code": "SR3F0", + "Ordering Code": "CL8067703401003", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "956301": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1220V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "72 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954324", + "Spec Code": "SR329", + "Ordering Code": "BX80677E31220V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952790": "PCN\n |\n MDDS", + "954324": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954325", + "Spec Code": "SR32C", + "Ordering Code": "BX80677E31225V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952793": "PCN\n |\n MDDS", + "954325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1230V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "72 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954320", + "Spec Code": "SR328", + "Ordering Code": "BX80677E31230V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952789": "PCN\n |\n MDDS", + "954320": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1240V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "72 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954319", + "Spec Code": "SR327", + "Ordering Code": "BX80677E31240V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952788": "PCN\n |\n MDDS", + "954319": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1245V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954323", + "Spec Code": "SR32B", + "Ordering Code": "BX80677E31245V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952792": "PCN\n |\n MDDS", + "954323": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1270V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "72 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954318", + "Spec Code": "SR326", + "Ordering Code": "BX80677E31270V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952787": "PCN\n |\n MDDS", + "954318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1275V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954321", + "Spec Code": "SR32A", + "Ordering Code": "BX80677E31275V6", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952791": "PCN\n |\n MDDS", + "954321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Server", + "Processor Number": "E3-1280V6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "72 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, DDR3L-1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952786", + "Spec Code": "SR325", + "Ordering Code": "CM8067702870647", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952786": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1505LV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953947", + "Spec Code": "SR34X", + "Ordering Code": "CL8067703022209", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1505MV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952951", + "Spec Code": "SR32K", + "Ordering Code": "CL8067702869709", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952951": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v6 Family", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1535MV6", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952949", + "Spec Code": "SR32H", + "Ordering Code": "CL8067702869614", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952949": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1558LV5", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "48", + "Intel® Quick Sync Video": "Yes", + "Device ID": "0x192D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949904", + "Spec Code": "SR2TU", + "Ordering Code": "JQ8066202811101", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "949904": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1565LV5", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948665", + "Spec Code": "SR2R8", + "Ordering Code": "JQ8066201935626", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948665": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1578LV5", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "700 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Device ID": "0x193D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "949901", + "Spec Code": "SR2TT", + "Ordering Code": "JQ8066202811001", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "949901": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1585V5", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948668", + "Spec Code": "SR2RB", + "Ordering Code": "JQ8066201935710", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948668": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1585LV5", + "Status": "Launched", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L,LPDDR3 1600MHz, DDR4 2133MHz at 1.2V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Execution Units": "72", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193A", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TCASE": ".", + "TJUNCTION": "100", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948666", + "Spec Code": "SR2R9", + "Ordering Code": "JQ8066201935627", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1515MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948619", + "Spec Code": "SR2QT", + "Ordering Code": "JQ8066202193208", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948619": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1545MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948620", + "Spec Code": "SR2QU", + "Ordering Code": "JQ8066202193209", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948620": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1575MV5", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics P580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948621", + "Spec Code": "SR2QV", + "Ordering Code": "JQ8066202193210", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948621": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1220V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947519", + "Spec Code": "SR2LG", + "Ordering Code": "BX80662E31220V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947230": "PCN", + "947519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947521", + "Spec Code": "SR2LJ", + "Ordering Code": "BX80662E31225V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947247": "PCN\n |\n MDDS", + "947521": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1230V5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947517", + "Spec Code": "SR2LE", + "Ordering Code": "BX80662E31230V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947228": "PCN\n |\n MDDS", + "947517": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1235LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947250", + "Spec Code": "SR2LM", + "Ordering Code": "CM8066201935807", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947250": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1240V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947516", + "Spec Code": "SR2LD", + "Ordering Code": "BX80662E31240V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947225": "PCN", + "947516": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1240LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947252", + "Spec Code": "SR2LN", + "Ordering Code": "CM8066201935808", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947252": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1245V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947523", + "Spec Code": "SR2LL", + "Ordering Code": "BX80662E31245V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947249": "PCN", + "947523": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1260LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947234", + "Spec Code": "SR2LH", + "Ordering Code": "CM8066201921903", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947234": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1268LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947254", + "Spec Code": "SR2LQ", + "Ordering Code": "CM8066201937901", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947254": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1270V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947518", + "Spec Code": "SR2LF", + "Ordering Code": "BX80662E31270V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947229": "PCN", + "947518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1275V5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947522", + "Spec Code": "SR2LK", + "Ordering Code": "BX80662E31275V5", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943551": "PCN\n |\n MDDS", + "947248": "PCN\n |\n MDDS", + "947522": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Server", + "Processor Number": "E3-1280V5", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Output": "N/A", + "4K Support": "No", + "Max Resolution (HDMI)‡": "N/A", + "Max Resolution (DP)‡": "N/A", + "Max Resolution (eDP - Integrated Flat Panel)‡": "N/A", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "N/A", + "OpenGL* Support": "N/A", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with both Intel® SPS and Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947224", + "Spec Code": "SR2LC", + "Ordering Code": "CM8066201921607", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947224": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1505LV5", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944067", + "Spec Code": "SR2E0", + "Ordering Code": "CL8066202399804", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944067": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1505MV5", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944366", + "Spec Code": "SR2FN", + "Ordering Code": "CL8066202191415", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v5 Family", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "E3-1535MV5", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics P530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191D", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944365", + "Spec Code": "SR2FM", + "Ordering Code": "CL8066202191412", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944365": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1258LV4", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "700 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944077", + "Spec Code": "SR2E9", + "Ordering Code": "FH8065802420602", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944077": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E3-1265LV4", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600/1866 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Execution Units": "48", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943404", + "Spec Code": "SR2B3", + "Ordering Code": "CM8065802483001", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943404": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1278LV4", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "800 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944075", + "Spec Code": "SR2E7", + "Ordering Code": "FH8065802420303", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944075": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E3-1285V4", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600/1866 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Execution Units": "48", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943660", + "Spec Code": "SR2CX", + "Ordering Code": "CM8065802482701", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v4 Family", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Server", + "Processor Number": "E3-1285LV4", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600/1866 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Execution Units": "48", + "Intel® Quick Sync Video": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943403", + "Spec Code": "SR2B1", + "Ordering Code": "CM8065802482901", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943403": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1226V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934911", + "Spec Code": "SR1R0", + "Ordering Code": "BX80646E31226V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932022": "PCN\n |\n MDDS", + "934911": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1231V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934914", + "Spec Code": "SR1R5", + "Ordering Code": "BX80646E31231V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932027": "PCN\n |\n MDDS", + "934914": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1240LV3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932882", + "Spec Code": "SR1T8", + "Ordering Code": "CM8064601575341", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932882": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1241V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934913", + "Spec Code": "SR1R4", + "Ordering Code": "BX80646E31241V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932026": "PCN\n |\n MDDS", + "934913": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1246V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934910", + "Spec Code": "SR1QZ", + "Ordering Code": "BX80646E31246V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932021": "PCN\n |\n MDDS", + "934910": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1271V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934912", + "Spec Code": "SR1R3", + "Ordering Code": "BX80646E31271V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932025": "PCN\n |\n MDDS", + "934912": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1275LV3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "10", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932879", + "Spec Code": "SR1T7", + "Ordering Code": "CM8064601575224", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932879": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1276V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934909", + "Spec Code": "SR1QW", + "Ordering Code": "BX80646E31276V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932008": "PCN\n |\n MDDS", + "934909": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1281V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "82 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937354", + "Spec Code": "SR21F", + "Ordering Code": "CM8064601575329", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932024": "PCN\n |\n MDDS", + "937354": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1286V3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932009", + "Spec Code": "SR1QX", + "Ordering Code": "CM8064601575203", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932009": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1286LV3", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932020", + "Spec Code": "SR1QY", + "Ordering Code": "CM8064601575204", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932020": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1220LV3", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930199", + "Spec Code": "SR1BT", + "Ordering Code": "CM8064601481914", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928006": "PCN\n |\n MDDS", + "930199": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1220 v3", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928633", + "Spec Code": "SR154", + "Ordering Code": "BX80646E31220V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927996": "PCN\n |\n MDDS", + "928633": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V3", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928629", + "Spec Code": "SR14U", + "Ordering Code": "BX80646E31225V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927974": "PCN\n |\n MDDS", + "928629": "PCN\n |\n MDDS", + "931054": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1230 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928632", + "Spec Code": "SR153", + "Ordering Code": "BX80646E31230V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927994": "PCN\n |\n MDDS", + "928632": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1230Lv3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928004", + "Spec Code": "SR158", + "Ordering Code": "CM8064601467601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1240 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928631", + "Spec Code": "SR152", + "Ordering Code": "BX80646E31240V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927992": "PCN\n |\n MDDS", + "928631": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1245 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928628", + "Spec Code": "SR14T", + "Ordering Code": "BX80646E31245V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927972": "PCN\n |\n MDDS", + "928628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1265Lv3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for 4th Generation Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928007", + "Spec Code": "SR15A", + "Ordering Code": "CM8064601467406", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1268LV3", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "Package Size": "37.5mm x 37.5mm (LGA1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929225", + "Spec Code": "SR17Y", + "Ordering Code": "CM8064601484200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929225": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1270 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928630", + "Spec Code": "SR151", + "Ordering Code": "BX80646E31270V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927990": "PCN\n |\n MDDS", + "928630": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1275 v3", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928627", + "Spec Code": "SR14S", + "Ordering Code": "BX80646E31275V3", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927970": "PCN\n |\n MDDS", + "928627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1280 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "82 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927988", + "Spec Code": "SR150", + "Ordering Code": "CM8064601467001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927988": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1285 v3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927978", + "Spec Code": "SR14W", + "Ordering Code": "CM8064601466703", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v3 Family", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Server", + "Processor Number": "E3-1285Lv3", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "DirectX* Support": "11.2", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928010", + "Spec Code": "SR15B", + "Ordering Code": "CM8064601466804", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927982": "MDDS", + "928010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1105CV2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930888", + "Spec Code": "SR1J1", + "Ordering Code": "CN8063801194002", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930888": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1125CV2", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930887", + "Spec Code": "SR1J0", + "Ordering Code": "CN8063801193902", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1220V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920747", + "Spec Code": "SR0PH", + "Ordering Code": "BX80637E31220V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919974": "PCN\n |\n MDDS", + "920747": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1220LV2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.23 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920941", + "Spec Code": "SR0R6", + "Ordering Code": "CM8063701099001", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920941": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1225V2", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920746", + "Spec Code": "SR0PJ", + "Ordering Code": "BX80637E31225V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919975": "PCN\n |\n MDDS", + "920746": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1230V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920745", + "Spec Code": "SR0P4", + "Ordering Code": "BX80637E31230V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919961": "PCN\n |\n MDDS", + "920745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1240V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920743", + "Spec Code": "SR0P5", + "Ordering Code": "BX80637E31240V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919962": "PCN\n |\n MDDS", + "920743": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1245V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920742", + "Spec Code": "SR0P9", + "Ordering Code": "BX80637E31245V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919966": "PCN\n |\n MDDS", + "920742": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1265LV2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920749", + "Spec Code": "SR0PB", + "Ordering Code": "BX80637E31265L2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919968": "PCN\n |\n MDDS", + "920749": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1270V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920738", + "Spec Code": "SR0P6", + "Ordering Code": "BX80637E31270V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919963": "PCN\n |\n MDDS", + "920738": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1275V2", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920736", + "Spec Code": "SR0PA", + "Ordering Code": "BX80637E31275V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919967": "PCN\n |\n MDDS", + "920736": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1280V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920731", + "Spec Code": "SR0P7", + "Ordering Code": "BX80637E31280V2", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919964": "PCN\n |\n MDDS", + "920731": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 v2 Family", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1290V2", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "87 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.77 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919969", + "Spec Code": "SR0PC", + "Ordering Code": "CM8063701099101", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919969": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1105C", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.00 GHz", + "Cache": "6 MB L3 Cache", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x4 or 2x8 1x4 or 1x8 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919905", + "Spec Code": "SR0NS", + "Ordering Code": "AV8062701048800", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919905": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "E3-1125C", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB L3 Cache", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x4 or 2x8 1x4 or 1x8 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919915", + "Spec Code": "SR0NU", + "Ordering Code": "AV8062701146600", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1290", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "56.7°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910520", + "Spec Code": "SR055", + "Ordering Code": "CM8062301071705", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910520": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1220", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911174", + "Spec Code": "SR00F", + "Ordering Code": "BX80623E31220", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909569": "PCN", + "911174": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1220L", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "20 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "77.5°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911111", + "Spec Code": "SR070", + "Ordering Code": "CM8062307262828", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911111": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1225", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911175", + "Spec Code": "SR00G", + "Ordering Code": "BX80623E31225", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909571": "PCN", + "911175": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1230", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911176", + "Spec Code": "SR00H", + "Ordering Code": "BX80623E31230", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909591": "PCN", + "911176": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1235", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911177", + "Spec Code": "SR00J", + "Ordering Code": "BX80623E31235", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909607": "PCN", + "911177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1240", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911168", + "Spec Code": "SR00K", + "Ordering Code": "BX80623E31240", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909609": "PCN", + "911168": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1245", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911169", + "Spec Code": "SR00L", + "Ordering Code": "BX80623E31245", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909611": "PCN", + "911169": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1260L", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "58.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909645", + "Spec Code": "SR00M", + "Ordering Code": "CM8062301061800", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909645": "PCN" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1270", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "80 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911170", + "Spec Code": "SR00N", + "Ordering Code": "BX80623E31270", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909647": "PCN", + "911170": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1275", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911171", + "Spec Code": "SR00P", + "Ordering Code": "BX80623E31275", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909649": "PCN", + "911171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® Processor E3 Family", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Server", + "Processor Number": "E3-1280", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "Yes", + "Intel® Quick Sync Video": "No", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "73.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911172", + "Spec Code": "SR00R", + "Ordering Code": "BX80623E31280", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909651": "PCN", + "911172": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5603", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909763", + "Spec Code": "SLC2F", + "Ordering Code": "BX80614E5603", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909597": "PCN\n |\n MDDS", + "909763": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5606", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909764", + "Spec Code": "SLC2N", + "Ordering Code": "BX80614E5606", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909213": "PCN\n |\n MDDS", + "909764": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5607", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.26 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909770", + "Spec Code": "SLBZ9", + "Ordering Code": "BX80614E5607", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909009": "PCN\n |\n MDDS", + "909770": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5649", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "TCASE": "76.2°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909766", + "Spec Code": "SLBZ8", + "Ordering Code": "BX80614E5649", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909595": "PCN\n |\n MDDS", + "909766": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Gulftown", + "Vertical Segment": "Server", + "Processor Number": "W3690", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45mm", + "Processing Die Size": "239 mm2", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909573", + "Spec Code": "SLBW2", + "Ordering Code": "AT80613005931AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909573": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5647", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "80.4°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909594", + "Spec Code": "SLBZ7", + "Ordering Code": "AT80614006780AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909594": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5672", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "82.9°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909590", + "Spec Code": "SLBYK", + "Ordering Code": "AT80614005922AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909590": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5675", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "81.3°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909767", + "Spec Code": "SLBYL", + "Ordering Code": "BX80614X5675", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909592": "PCN\n |\n MDDS", + "909767": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5687", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.86 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "80.4°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909871", + "Spec Code": "SLBVY", + "Ordering Code": "AT80614005919AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909871": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5690", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "78.5°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909768", + "Spec Code": "SLBVX", + "Ordering Code": "BX80614X5690", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909140": "PCN\n |\n MDDS", + "909768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "W3670", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907398", + "Spec Code": "SLBVE", + "Ordering Code": "BX80613W3670", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907378": "PCN\n |\n MDDS", + "907398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3480", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "Q4'12", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907883", + "Spec Code": "SLBPT", + "Ordering Code": "BX80605X3480", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907374": "PCN\n |\n MDDS", + "907883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5620", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.66 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.6°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907461", + "Spec Code": "SLBV4", + "Ordering Code": "BX80614E5620", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907407": "PCN\n |\n MDDS", + "907461": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5630", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.6°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907459", + "Spec Code": "SLBVB", + "Ordering Code": "BX80614E5630", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907415": "PCN\n |\n MDDS", + "907459": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5640", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.6°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907460", + "Spec Code": "SLBVC", + "Ordering Code": "BX80614E5640", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907416": "PCN\n |\n MDDS", + "907460": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "E5645", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.67 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76.2°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909765", + "Spec Code": "SLBWZ", + "Ordering Code": "BX80614E5645", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907784": "PCN\n |\n MDDS", + "909765": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Server", + "Processor Number": "L3406", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "30 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "53.9°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907923", + "Spec Code": "SLBT8", + "Ordering Code": "CM80616005010AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907923": "PCN\n |\n MDDS", + "905444": "PCN\n |\n MDDS", + "905773": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "L5609", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "1.86 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "40 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "63.1°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907422", + "Spec Code": "SLBVJ", + "Ordering Code": "AT80614005940AA", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907422": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "L5618", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.26 GHz", + "Processor Base Frequency": "1.87 GHz", + "Cache": "12 MB", + "Bus Speed": "5.86 GT/s", + "TDP": "40 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1366", + "TCASE": "87°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Idle States": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907786", + "Spec Code": "SLBX3", + "Ordering Code": "AT80614005079AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907786": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "L5630", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "40 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "63.1°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907465", + "Spec Code": "SLBVD", + "Ordering Code": "BX80614L5630", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907417": "PCN\n |\n MDDS", + "907465": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "L5638", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Communications", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1366", + "TCASE": "85°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Idle States": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907805", + "Spec Code": "SLBWY", + "Ordering Code": "AT80614003591AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907805": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "L5640", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "69.4°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907462", + "Spec Code": "SLBV8", + "Ordering Code": "BX80614L5640", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907412": "PCN\n |\n MDDS", + "907462": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "W3680", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907399", + "Spec Code": "SLBV2", + "Ordering Code": "BX80613W3680", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907377": "PCN\n |\n MDDS", + "907399": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5650", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "81.3°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907463", + "Spec Code": "SLBV3", + "Ordering Code": "BX80614X5650", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907406": "PCN\n |\n MDDS", + "907463": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5660", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "81.3°C", + "Package Size": "42.5mmX45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907464", + "Spec Code": "SLBV6", + "Ordering Code": "BX80614X5660", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907409": "PCN\n |\n MDDS", + "907464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5667", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "82.9°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907414", + "Spec Code": "SLBVA", + "Ordering Code": "AT80614005154AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907414": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5670", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "81.3°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907466", + "Spec Code": "SLBV7", + "Ordering Code": "BX80614X5670", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907411": "PCN\n |\n MDDS", + "907466": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5677", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "80.4°C", + "Package Size": "42.5mm X 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907413", + "Spec Code": "SLBV9", + "Ordering Code": "AT80614005145AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907413": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Westmere EP", + "Vertical Segment": "Server", + "Processor Number": "X5680", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "288 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "78.5°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907467", + "Spec Code": "SLBV5", + "Ordering Code": "BX80614X5680", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907408": "PCN\n |\n MDDS", + "907467": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5503", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907369", + "Spec Code": "SLBKD", + "Ordering Code": "BX80602E5503", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902497": "PCN\n |\n MDDS", + "907369": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5507", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.26 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "TCASE": "76°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907370", + "Spec Code": "SLBKC", + "Ordering Code": "BX80602E5507", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902496": "PCN\n |\n MDDS", + "907370": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "E6510", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.73 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "12 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Sockets Supported": "FCLGA1567", + "TCASE": "64°C", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905143", + "Spec Code": "SLBRL", + "Ordering Code": "AT80604004896AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "E6540", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Sockets Supported": "FCLGA1567", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905134", + "Spec Code": "SLBRC", + "Ordering Code": "AT80604001800AB", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905134": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "E7520", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "1.87 GHz", + "Processor Base Frequency": "1.87 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "70°C", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905141", + "Spec Code": "SLBRK", + "Ordering Code": "AT80604004887AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905141": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "E7530", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.87 GHz", + "Cache": "12 MB L3 Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "64°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905140", + "Spec Code": "SLBRJ", + "Ordering Code": "AT80604004884AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905140": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "E7540", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "105 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "64°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905138", + "Spec Code": "SLBRG", + "Ordering Code": "AT80604004878AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905138": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "EC3539", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "74.6°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907838", + "Spec Code": "SLBWJ", + "Ordering Code": "AT80612003090AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907838": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "EC5509", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.6°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907837", + "Spec Code": "SLBWM", + "Ordering Code": "AT80612004740AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907837": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "EC5539", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.27 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5.87 GT/s", + "# of QPI Links": "1", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "74.6°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907835", + "Spec Code": "SLBWL", + "Ordering Code": "AT80612003861AB", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907835": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "EC5549", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "5.87 GT/s", + "# of QPI Links": "1", + "TDP": "85 W", + "Embedded Options Available": "Yes", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.6°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907831", + "Spec Code": "SLBWP", + "Ordering Code": "AT80612005712AB", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907831": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "L7545", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "1.87 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "70°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905139", + "Spec Code": "SLBRH", + "Ordering Code": "AT80604004881AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905139": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "L7555", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "1.87 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "70°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905137", + "Spec Code": "SLBRF", + "Ordering Code": "AT80604004875AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905137": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "LC3518", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.73 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "23 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "79.5°C - 94.5°C", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907834", + "Spec Code": "SLBWH", + "Ordering Code": "AT80612002946AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907834": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "LC3528", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.87 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "79.5°C - 94.5°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907833", + "Spec Code": "SLBWG", + "Ordering Code": "AT80612002931AB", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907833": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "LC5518", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "48 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "77.5°C - 92.5°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907832", + "Spec Code": "SLBWF", + "Ordering Code": "AT80612002928AC", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907832": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Jasper Forest", + "Vertical Segment": "Embedded", + "Processor Number": "LC5528", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB L3 Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Max # of Memory Channels": "3", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "70.0°C - 85.0°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907839", + "Spec Code": "SLBWK", + "Ordering Code": "AT80612003858AA", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907839": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3530", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "906904", + "Spec Code": "SLBKR", + "Ordering Code": "BX80601W3530", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902495": "PCN\n |\n MDDS", + "906904": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "X6550", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Sockets Supported": "FCLGA1567", + "TCASE": "69°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905133", + "Spec Code": "SLBRB", + "Ordering Code": "AT80604001797AB", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905133": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "X7542", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "6", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.67 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "5.86 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "FCLGA1567", + "TCASE": "69°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905149", + "Spec Code": "SLBRM", + "Ordering Code": "AT80604005280AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905149": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "X7550", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "18 MB L3 Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Sockets Supported": "FCLGA1567", + "TCASE": "69°C", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905136", + "Spec Code": "SLBRE", + "Ordering Code": "AT80604004872AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905136": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EX", + "Vertical Segment": "Server", + "Processor Number": "X7560", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q4'2012", + "Lithography": "45 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "2.67 GHz", + "Processor Base Frequency": "2.27 GHz", + "Cache": "24 MB L3 Cache", + "Bus Speed": "6.4 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Memory Types": "DDR3 800/978/1066/1333 (Max Speed 1066 MHz)", + "Sockets Supported": "FCLGA1567", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905135", + "Spec Code": "SLBRD", + "Ordering Code": "AT80604004869AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "905135": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3565", + "Status": "Discontinued", + "Launch Date": "Q4'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904693", + "Spec Code": "SLBEV", + "Ordering Code": "BX80601W3565", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900858": "PCN\n |\n MDDS", + "904693": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "L3426", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Expected Discontinuance": "Q4'12", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "58.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904689", + "Spec Code": "SLBN3", + "Ordering Code": "BX80605L3426", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904366": "PCN\n |\n MDDS", + "904689": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3430", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903841", + "Spec Code": "SLBLJ", + "Ordering Code": "BX80605X3430", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903607": "PCN\n |\n MDDS", + "903841": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3440", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Expected Discontinuance": "Q4'12", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903842", + "Spec Code": "SLBLF", + "Ordering Code": "BX80605X3440", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903606": "PCN\n |\n MDDS", + "903842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3450", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903849", + "Spec Code": "SLBLD", + "Ordering Code": "BX80605X3450", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903604": "PCN\n |\n MDDS", + "903849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3460", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Expected Discontinuance": "Q4'12", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903850", + "Spec Code": "SLBJK", + "Ordering Code": "BX80605X3460", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903602": "PCN\n |\n MDDS", + "903850": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Server", + "Processor Number": "X3470", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Expected Discontinuance": "Q4'12", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 4x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903851", + "Spec Code": "SLBJH", + "Ordering Code": "BX80605X3470", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903598": "PCN\n |\n MDDS", + "903851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "L5530", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.66 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "TCASE": "70°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903280", + "Spec Code": "SLBGF", + "Ordering Code": "BX80602L5530", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901504": "PCN\n |\n MDDS", + "903280": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3550", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903322", + "Spec Code": "SLBEY", + "Ordering Code": "BX80601W3550", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900859": "PCN\n |\n MDDS", + "903322": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3580", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903321", + "Spec Code": "SLBET", + "Ordering Code": "BX80601W3580", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900856": "PCN\n |\n MDDS", + "903321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "W5590", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "TCASE": "67°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903279", + "Spec Code": "SLBGE", + "Ordering Code": "BX80602W5590", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901503": "PCN\n |\n MDDS", + "903279": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5502", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901022", + "Spec Code": "SLBEZ", + "Ordering Code": "BX80602E5502", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900400": "PCN\n |\n MDDS", + "901022": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5504", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901032", + "Spec Code": "SLBF9", + "Ordering Code": "BX80602E5504", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900842": "PCN\n |\n MDDS", + "901032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5506", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901031", + "Spec Code": "SLBF8", + "Ordering Code": "BX80602E5506", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900841": "PCN\n |\n MDDS", + "901031": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5520", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "72°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901030", + "Spec Code": "SLBFD", + "Ordering Code": "BX80602E5520", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900840": "PCN\n |\n MDDS", + "901030": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5530", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.66 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901029", + "Spec Code": "SLBF7", + "Ordering Code": "BX80602E5530", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900839": "PCN\n |\n MDDS", + "901029": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "E5540", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "80 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "76°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901028", + "Spec Code": "SLBF6", + "Ordering Code": "BX80602E5540", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900838": "PCN\n |\n MDDS", + "901028": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "L5506", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "19.2 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "70°C", + "Package Size": "42.5mm x 45mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901023", + "Spec Code": "SLBFH", + "Ordering Code": "BX80602L5506", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900833": "PCN\n |\n MDDS", + "901023": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Embedded", + "Processor Number": "L5508", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "38 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "85°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901549", + "Spec Code": "SLBGK", + "Ordering Code": "AT80602002697AC", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901549": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Embedded", + "Processor Number": "L5518", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "85°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901505", + "Spec Code": "SLBFW", + "Ordering Code": "AT80602002265AB", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901505": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "L5520", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.48 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5.86 GT/s", + "# of QPI Links": "2", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "70°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901033", + "Spec Code": "SLBFA", + "Ordering Code": "BX80602L5520", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900843": "PCN\n |\n MDDS", + "901033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3520", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901543", + "Spec Code": "SLBEW", + "Ordering Code": "BX80601W3520", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901543": "PCN\n |\n MDDS", + "900861": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3540", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901542", + "Spec Code": "SLBEX", + "Ordering Code": "BX80601W3540", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901542": "PCN\n |\n MDDS", + "900860": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Server", + "Processor Number": "W3570", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "900857", + "Ordering Code": "AT80601000918AB", + "Shipping Media": "TRAY", + "Stepping": "D0", + "Spec Code": "SLBES", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901541": "PCN\n |\n MDDS", + "900857": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "W5580", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "67°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901024", + "Spec Code": "SLBF2", + "Ordering Code": "BX80602W5580", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900834": "PCN\n |\n MDDS", + "901024": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "X5550", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901027", + "Spec Code": "SLBF5", + "Ordering Code": "BX80602X5550", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900837": "PCN\n |\n MDDS", + "901027": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "X5560", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901026", + "Spec Code": "SLBF4", + "Ordering Code": "BX80602X5560", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900836": "PCN\n |\n MDDS", + "901026": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nehalem EP", + "Vertical Segment": "Server", + "Processor Number": "X5570", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "2", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "144 GB", + "Memory Types": "DDR3 800/1066/1333", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "32 GB/s", + "Physical Address Extensions": "40-bit", + "ECC Memory Supported ‡": "Yes", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "2", + "TCASE": "75°C", + "Package Size": "42.5mm x 45mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "901025", + "Spec Code": "SLBF3", + "Ordering Code": "BX80602X5570", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900835": "PCN\n |\n MDDS", + "901025": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3380", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.16 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902260", + "Spec Code": "SLGPG", + "Ordering Code": "BX80569X3380", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901265": "PCN\n |\n MDDS", + "902260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "L3110", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "TDP": "45 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "78.65°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901636", + "Spec Code": "SLGP9", + "Ordering Code": "BX80570L3110", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901224": "PCN\n |\n MDDS", + "901636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "L3360", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.25°C", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901604", + "Spec Code": "SLGPF", + "Ordering Code": "BX80569L3360", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901264": "PCN\n |\n MDDS", + "901604": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "X5270", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "80 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "61°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898610", + "Spec Code": "SLBAQ", + "Ordering Code": "AT80573KJ1006M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Embedded", + "Processor Number": "L3014", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "30 W", + "Embedded Options Available": "No", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "L5215", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "20 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "TCASE": "75°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "E7420", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "90 W", + "VID Voltage Range": "0.900V-1.450V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "68°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899360", + "Spec Code": "SLG9G", + "Ordering Code": "BX80583E7420", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899006": "PCN\n |\n MDDS", + "899360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "E7430", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "90 W", + "VID Voltage Range": "0.900V-1.450V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "68°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899007", + "Spec Code": "SLG9H", + "Ordering Code": "AD80583QH046003", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899007": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "E7440", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "90 W", + "VID Voltage Range": "0.900V-1.450V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "68°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899361", + "Spec Code": "SLG9J", + "Ordering Code": "BX80583E7440", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899008": "PCN\n |\n MDDS", + "899361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "E7450", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "6", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB L3 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "90 W", + "VID Voltage Range": "0.900V-1.450V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "68°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899362", + "Spec Code": "SLG9K", + "Ordering Code": "BX80582E7450", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899009": "PCN\n |\n MDDS", + "899362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "L7445", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "0.9000V-1.4500V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "65°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899010", + "Spec Code": "SLG9L", + "Ordering Code": "AD80583JH046003", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "L7455", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "6", + "Processor Base Frequency": "2.13 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "65 W", + "VID Voltage Range": "0.9000V-1.4500V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "73°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899011", + "Spec Code": "SLG9M", + "Ordering Code": "AD80582JH046003", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Dunnington", + "Vertical Segment": "Server", + "Processor Number": "X7460", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q3'2011", + "Lithography": "45 nm", + "Total Cores": "6", + "Processor Base Frequency": "2.66 GHz", + "Cache": "16 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "130 W", + "VID Voltage Range": "0.9000V-1.4500V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604", + "TCASE": "64°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "503 mm2", + "# of Processing Die Transistors": "1900 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899363", + "Spec Code": "SLG9P", + "Ordering Code": "BX80582X7460", + "Shipping Media": "BOX", + "Stepping": "A1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899013": "PCN\n |\n MDDS", + "899363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "L5430", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "57°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899489", + "Spec Code": "SLBBQ", + "Ordering Code": "BX80574L5430P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898601": "PCN\n |\n MDDS", + "899488": "PCN", + "899489": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5470", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.33 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "120 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899487", + "Spec Code": "SLBBF", + "Ordering Code": "BX80574X5470P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898589": "PCN\n |\n MDDS", + "899486": "PCN", + "899487": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5492", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "Yes", + "TDP": "150 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898581", + "Spec Code": "SLBBD", + "Ordering Code": "AT80574KL096N", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898581": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "E3120", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.16 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898847", + "Spec Code": "SLB9D", + "Ordering Code": "AT80570KJ0876M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898847": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3330", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-13625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899531", + "Spec Code": "SLB6C", + "Ordering Code": "BX80580X3330", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898383": "PCN\n |\n MDDS", + "899531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3370", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899494", + "Spec Code": "SLB8Z", + "Ordering Code": "BX80569X3370", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898661": "PCN\n |\n MDDS", + "899494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "L5240", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "40 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "56°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898619", + "Spec Code": "SLBAY", + "Ordering Code": "AT80573JJ0806M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898619": "PCN\n |\n MDDS", + "894690": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "E5220", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898613", + "Spec Code": "SLBAT", + "Ordering Code": "AT80573QJ0536M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893467": "PCN\n |\n MDDS", + "898613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Embedded", + "Processor Number": "E5240", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "66°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898614", + "Spec Code": "SLBAW", + "Ordering Code": "AT80573QJ0806M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898614": "PCN\n |\n MDDS", + "893452": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "L5318", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "40 W", + "VID Voltage Range": "0.9000V-1.2500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "PLGA771", + "TCASE": "72.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892535", + "Spec Code": "SLAJE", + "Ordering Code": "HH80563JH0258MT", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "892535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Embedded", + "Processor Number": "L5408", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "40 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898604", + "Spec Code": "SLBBT", + "Ordering Code": "AT80574JH046NT", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893494": "PCN\n |\n MDDS", + "898604": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "L5410", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Processor Base Frequency": "2.33 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "57°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898991", + "Spec Code": "SLBBS", + "Ordering Code": "BX80574L5410A", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893491": "PCN\n |\n MDDS", + "898603": "PCN\n |\n MDDS", + "898989": "PCN", + "898991": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "L5420", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "57°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898990", + "Spec Code": "SLBBR", + "Ordering Code": "BX80574L5420P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "894226": "PCN\n |\n MDDS", + "894833": "PCN", + "894834": "PCN", + "898602": "PCN\n |\n MDDS", + "898988": "PCN", + "898990": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3320", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898379", + "Spec Code": "SLB69", + "Ordering Code": "AT80580KJ0606M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "896620": "PCN\n |\n MDDS", + "897334": "PCN\n |\n MDDS", + "898379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3350", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899495", + "Spec Code": "SLB8Y", + "Ordering Code": "BX80569X3350", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "896487": "PCN\n |\n MDDS", + "897359": "PCN\n |\n MDDS", + "898660": "PCN\n |\n MDDS", + "899495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Server", + "Processor Number": "X3360", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899493", + "Spec Code": "SLB8X", + "Ordering Code": "BX80569X3360", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898659": "PCN\n |\n MDDS", + "899493": "PCN\n |\n MDDS", + "896488": "PCN\n |\n MDDS", + "897358": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "E3110", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899605", + "Spec Code": "SLB9C", + "Ordering Code": "BX80570E3110", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893558": "PCN\n |\n MDDS", + "894931": "MDDS", + "895888": "PCN\n |\n MDDS", + "898848": "PCN\n |\n MDDS", + "899605": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Embedded", + "Processor Number": "L5238", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "71°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898620", + "Spec Code": "SLBAZ", + "Ordering Code": "AT80573JJ0676MT", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893473": "PCN\n |\n MDDS", + "898620": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Server", + "Processor Number": "3065", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "892678", + "Spec Code": "SLAA9", + "Ordering Code": "BX805573065", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890646": "PCN\n |\n MDDS", + "892678": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "E5205", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.950V-1.212V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898616", + "Spec Code": "SLBAU", + "Ordering Code": "AT80573KH0366M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893468": "PCN\n |\n MDDS", + "895327": "PCN\n |\n MDDS", + "895328": "PCN\n |\n MDDS", + "898616": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5405", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898987", + "Spec Code": "SLBBP", + "Ordering Code": "BX80574E5405A", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898600": "PCN\n |\n MDDS", + "898984": "PCN\n |\n MDDS", + "898987": "PCN\n |\n MDDS", + "893492": "PCN\n |\n MDDS", + "894831": "PCN\n |\n MDDS", + "894832": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5410", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.33 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898986", + "Spec Code": "SLBBC", + "Ordering Code": "BX80574E5410A", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893487": "PCN\n |\n MDDS", + "894829": "PCN\n |\n MDDS", + "894830": "PCN\n |\n MDDS", + "898580": "PCN\n |\n MDDS", + "898985": "PCN\n |\n MDDS", + "898986": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5420", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898983", + "Spec Code": "SLBBL", + "Ordering Code": "BX80574E5420P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893486": "PCN\n |\n MDDS", + "894827": "PCN\n |\n MDDS", + "894828": "PCN\n |\n MDDS", + "898596": "PCN\n |\n MDDS", + "898982": "PCN\n |\n MDDS", + "898983": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5430", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898979", + "Spec Code": "SLBBK", + "Ordering Code": "BX80574E5430P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898594": "PCN\n |\n MDDS", + "898978": "PCN\n |\n MDDS", + "898979": "PCN\n |\n MDDS", + "893483": "PCN\n |\n MDDS", + "894825": "PCN\n |\n MDDS", + "894826": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5440", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898977", + "Spec Code": "SLBBJ", + "Ordering Code": "BX80574E5440A", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898592": "PCN\n |\n MDDS", + "898975": "PCN\n |\n MDDS", + "898977": "PCN\n |\n MDDS", + "894824": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5450", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898976", + "Spec Code": "SLBBM", + "Ordering Code": "BX80574E5450P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898599": "PCN\n |\n MDDS", + "898974": "PCN\n |\n MDDS", + "898976": "PCN\n |\n MDDS", + "893481": "PCN\n |\n MDDS", + "894821": "PCN\n |\n MDDS", + "894822": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5462", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898597", + "Spec Code": "SLBBN", + "Ordering Code": "AT80574KL072N", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898597": "PCN\n |\n MDDS", + "893485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "E5472", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "67°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898591", + "Spec Code": "SLBBH", + "Ordering Code": "AT80574KL080N", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893482": "PCN\n |\n MDDS", + "898591": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "X5260", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.33 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "80 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898612", + "Spec Code": "SLBAS", + "Ordering Code": "AT80573KJ0936M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893471": "PCN\n |\n MDDS", + "898612": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Server", + "Processor Number": "X5272", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "No", + "TDP": "80 W", + "VID Voltage Range": "0.8500V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898611", + "Spec Code": "SLBAR", + "Ordering Code": "AT80573KL0966M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893470": "PCN\n |\n MDDS", + "898611": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5450", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "120 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898973", + "Spec Code": "SLBBE", + "Ordering Code": "BX80574X5450P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "894390": "PCN\n |\n MDDS", + "894819": "PCN", + "894820": "PCN", + "898582": "PCN\n |\n MDDS", + "898972": "PCN", + "898973": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5460", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.16 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "120 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898971", + "Spec Code": "SLBBA", + "Ordering Code": "BX80574X5460P", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898578": "PCN\n |\n MDDS", + "898970": "PCN", + "898971": "PCN", + "893444": "PCN\n |\n MDDS", + "894817": "PCN\n |\n MDDS", + "894818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5472", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "Yes", + "TDP": "120 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898579", + "Spec Code": "SLBBB", + "Ordering Code": "AT80574KL080NT", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "894389": "PCN\n |\n MDDS", + "898579": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Harpertown", + "Vertical Segment": "Server", + "Processor Number": "X5482", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Expected Discontinuance": "Q4'2010", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "Yes", + "TDP": "150 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898590", + "Spec Code": "SLBBG", + "Ordering Code": "AT80574KL088NT", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893490": "PCN\n |\n MDDS", + "898590": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "L5335", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "50 W", + "VID Voltage Range": "1.1000V-1.2500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA771", + "TCASE": "60°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "892336", + "Spec Code": "SLAEN", + "Ordering Code": "BX80563L5335P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891117": "PCN\n |\n MDDS", + "892330": "PCN", + "892336": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "X5365", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "150 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891980", + "Spec Code": "SLAED", + "Ordering Code": "BX80563X5365P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891113": "PCN\n |\n MDDS", + "891978": "PCN", + "891980": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Server", + "Processor Number": "X3230", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891341", + "Spec Code": "SLACS", + "Ordering Code": "BX80562X3230", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891047": "PCN\n |\n MDDS", + "891341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7210", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2010", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "64°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "889849", + "Spec Code": "SLA6D", + "Ordering Code": "LF80564QH0568M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7220", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "64°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "889851", + "Spec Code": "SLA6C", + "Ordering Code": "LF80564QH0778M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7310", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604, PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892808", + "Spec Code": "SLA6A", + "Ordering Code": "BX80565E7310", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889850": "PCN\n |\n MDDS", + "892808": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7320", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2010", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604, PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892807", + "Spec Code": "SLA69", + "Ordering Code": "BX80565E7320", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889848": "PCN\n |\n MDDS", + "892807": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7330", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2010", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604, PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892806", + "Spec Code": "SLA77", + "Ordering Code": "BX80565E7330", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889911": "PCN\n |\n MDDS", + "892806": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "E7340", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2010", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604, PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892805", + "Spec Code": "SLA68", + "Ordering Code": "BX80565E7340", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889847": "PCN\n |\n MDDS", + "892805": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "L7345", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q3'2011", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.86 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "889846", + "Spec Code": "SLA6B", + "Ordering Code": "LF80565JH0368M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889846": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Tigerton", + "Vertical Segment": "Server", + "Processor Number": "X7350", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q1'2010", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "130 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA604, PPGA604", + "TCASE": "66°C", + "Package Size": "53.3mm x 53.3mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892802", + "Spec Code": "SLA67", + "Ordering Code": "BX80565X7350", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889844": "PCN\n |\n MDDS", + "892802": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "L5310", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "1.1000V-1.2500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA771", + "TCASE": "60°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891119", + "Spec Code": "SLAEQ", + "Ordering Code": "HH80563JH0258M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891119": "PCN\n |\n MDDS", + "884493": "PCN\n |\n MDDS", + "890666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "L5320", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.86 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "50 W", + "VID Voltage Range": "1.1000V-1.2500V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Sockets Supported": "PLGA771", + "TCASE": "60°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892338", + "Spec Code": "SLAEP", + "Ordering Code": "BX80563L5320P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888423": "PCN\n |\n MDDS", + "889108": "PCN\n |\n MDDS", + "889109": "PCN\n |\n MDDS", + "891120": "PCN\n |\n MDDS", + "892332": "PCN\n |\n MDDS", + "892338": "PCN\n |\n MDDS", + "890664": "PCN\n |\n MDDS", + "890830": "PCN\n |\n MDDS", + "890831": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Server", + "Processor Number": "X3210", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "105 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA775", + "TCASE": "62.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891335", + "Spec Code": "SLACU", + "Ordering Code": "BX80562X3210", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "885495": "PCN\n |\n MDDS", + "886867": "PCN\n |\n MDDS", + "891048": "PCN\n |\n MDDS", + "891335": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Server", + "Processor Number": "X3220", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "105 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA775", + "TCASE": "62.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891336", + "Spec Code": "SLACT", + "Ordering Code": "BX80562X3220", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891050": "PCN\n |\n MDDS", + "891336": "PCN\n |\n MDDS", + "885494": "PCN\n |\n MDDS", + "886869": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "E5310", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA771, PLGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892333", + "Spec Code": "SLAEM", + "Ordering Code": "BX80563E5310A", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890662": "PCN\n |\n MDDS", + "890832": "PCN", + "890833": "PCN\n |\n MDDS", + "891121": "PCN\n |\n MDDS", + "892327": "PCN\n |\n MDDS", + "892333": "PCN", + "886588": "PCN\n |\n MDDS", + "886865": "PCN", + "886866": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "E5320", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "1.86 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA771, PLGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892337", + "Spec Code": "SLAEL", + "Ordering Code": "BX80563E5320P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890665": "PCN\n |\n MDDS", + "890828": "PCN\n |\n MDDS", + "890829": "PCN\n |\n MDDS", + "891118": "PCN\n |\n MDDS", + "892331": "PCN\n |\n MDDS", + "892337": "PCN\n |\n MDDS", + "884514": "PCN\n |\n MDDS", + "886365": "PCN\n |\n MDDS", + "886366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "E5335", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771, PLGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892335", + "Spec Code": "SLAEK", + "Ordering Code": "BX80563E5335P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "887230": "PCN", + "887232": "PCN", + "890663": "PCN\n |\n MDDS", + "890826": "PCN", + "890827": "PCN", + "891116": "PCN\n |\n MDDS", + "892329": "PCN", + "892335": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "E5345", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.33 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "80 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA771, PLGA771", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892334", + "Spec Code": "SLAEJ", + "Ordering Code": "BX80563E5345P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "887229": "PCN\n |\n MDDS", + "887231": "PCN\n |\n MDDS", + "887286": "PCN\n |\n MDDS", + "891115": "PCN\n |\n MDDS", + "892328": "PCN\n |\n MDDS", + "892334": "PCN\n |\n MDDS", + "890660": "PCN\n |\n MDDS", + "890852": "PCN\n |\n MDDS", + "890853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Woodcrest", + "Vertical Segment": "Server", + "Processor Number": "5128", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "40 W", + "VID Voltage Range": "B2=1.0V-1.5V, G0=.85V-1.5V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "58°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891704", + "Spec Code": "SLAG6", + "Ordering Code": "HH80556JH0364M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891704": "PCN\n |\n MDDS", + "887535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Woodcrest", + "Vertical Segment": "Server", + "Processor Number": "5138", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "Yes", + "TDP": "35 W", + "VID Voltage Range": "B2=1.0V-1.5V, G0=.85V-1.5V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "70.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891562", + "Spec Code": "SLAG3", + "Ordering Code": "HH80556JH0464M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891562": "PCN\n |\n MDDS", + "884347": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Clovertown", + "Vertical Segment": "Server", + "Processor Number": "X5355", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Expected Discontinuance": "Q1'2009", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "120 W", + "VID Voltage Range": "1.0000V-1.5000V", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA771, PLGA771", + "TCASE": "70°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892344", + "Spec Code": "SLAEG", + "Ordering Code": "BX80563X5355P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "887227": "PCN", + "887228": "PCN", + "887287": "PCN\n |\n MDDS", + "890661": "PCN\n |\n MDDS", + "890824": "PCN", + "890825": "PCN", + "891114": "PCN\n |\n MDDS", + "892325": "PCN", + "892344": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "31 W", + "VID Voltage Range": "1.1125-1.275V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883111", + "Spec Code": "SL9HS", + "Ordering Code": "LF80539JF0282M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "879414": "PCN\n |\n MDDS", + "883109": "PCN\n |\n MDDS", + "883111": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.16 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "31 W", + "VID Voltage Range": "1.1125-1.275V", + "Embedded Options Available": "No", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "15 W", + "VID Voltage Range": "1.0V-1.2125V", + "Embedded Options Available": "Yes", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Woodcrest", + "Vertical Segment": "Server", + "Processor Number": "5130", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "B2=1.00V-1.50V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Woodcrest", + "Vertical Segment": "Server", + "Processor Number": "5140", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "B2=1.0V-1.5V, G0=.85V-1.5V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Sockets Supported": "LGA771", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892169", + "Spec Code": "SLAGB", + "Ordering Code": "BX805565140P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884457": "PCN\n |\n MDDS", + "884529": "PCN", + "884533": "PCN", + "890628": "PCN\n |\n MDDS", + "890800": "PCN", + "890801": "PCN", + "891730": "PCN\n |\n MDDS", + "892167": "PCN\n |\n MDDS", + "892169": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Woodcrest", + "Vertical Segment": "Server", + "Processor Number": "5148", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "40 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.150V-1.250V", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "LGA771", + "TCASE": "58°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892146", + "Spec Code": "SLAG4", + "Ordering Code": "BX805565148P", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891675": "PCN\n |\n MDDS", + "892145": "PCN\n |\n MDDS", + "892146": "PCN\n |\n MDDS", + "884344": "PCN\n |\n MDDS", + "884507": "PCN\n |\n MDDS", + "890618": "PCN\n |\n MDDS", + "890798": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Sossaman", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "Yes", + "TDP": "31 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.1125V-1.25V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478", + "TCASE": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883108", + "Spec Code": "SL9HN", + "Ordering Code": "LF80539KF0412M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "883108": "PCN\n |\n MDDS", + "876095": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nocona", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "3.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "103 W", + "VID Voltage Range": "1.287V-1.400V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA604", + "TCASE": "72°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "872548", + "Spec Code": "SL8KQ", + "Ordering Code": "NE80546KG0881M", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "872548": "PCN\n |\n MDDS", + "862918": "PCN\n |\n MDDS", + "865704": "PCN", + "865706": "PCN", + "865709": "PCN", + "859146": "PCN\n |\n MDDS", + "861139": "PCN", + "861140": "PCN", + "861141": "PCN", + "861077": "PCN\n |\n MDDS", + "861119": "PCN", + "861120": "PCN", + "861121": "PCN", + "864782": "PCN\n |\n MDDS", + "865837": "PCN", + "865838": "PCN", + "865839": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Nocona", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q2'04", + "Lithography": "90 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "Yes", + "TDP": "55 W", + "VID Voltage Range": "1.1125V-1.2000V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA604", + "TCASE": "86°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "112 mm2", + "# of Processing Die Transistors": "125 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "873425", + "Spec Code": "SL8RW", + "Ordering Code": "NE80546EG0721M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "873425": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Prestonia", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q4'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.80 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "74 W", + "VID Voltage Range": "1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "C1+D1=75°C; M0=72°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "854976", + "Spec Code": "SL6VN", + "Ordering Code": "BX80532KE2800DU", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8473301180", + "852307": "PCN\n |\n MDDS", + "854973": "PCN", + "854976": "PCN", + "852975": "PCN\n |\n MDDS", + "853090": "PCN", + "853092": "PCN", + "851267": "PCN\n |\n MDDS", + "851271": "PCN", + "851275": "PCN", + "853882": "PCN\n |\n MDDS", + "854961": "PCN", + "854963": "PCN", + "848397": "PCN\n |\n MDDS", + "851285": "PCN", + "851292": "PCN", + "854168": "PCN\n |\n MDDS", + "854409": "PCN", + "854410": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Prestonia", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "Yes", + "TDP": "40 W", + "VID Voltage Range": "1.170V-1.265V", + "Embedded Options Available": "No", + "TCASE": "81°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Prestonia", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q4'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.40 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "65 W", + "VID Voltage Range": "1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "C1+D1=74°C; M0=72°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "874543", + "Spec Code": "SL8TJ", + "Ordering Code": "NE80532EE056512", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8473301180", + "874543": "PCN\n |\n MDDS", + "854163": "PCN\n |\n MDDS", + "854405": "PCN", + "854406": "PCN", + "851265": "PCN\n |\n MDDS", + "851269": "PCN", + "851273": "PCN", + "853880": "PCN\n |\n MDDS", + "854957": "PCN", + "854958": "PCN", + "852305": "PCN\n |\n MDDS", + "854968": "PCN", + "854969": "PCN", + "852973": "PCN\n |\n MDDS", + "853072": "PCN", + "853086": "PCN", + "854517": "PCN\n |\n MDDS", + "848396": "PCN\n |\n MDDS", + "851280": "PCN", + "851290": "PCN" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Prestonia", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q3'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.60 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "400 MHz", + "FSB Parity": "Yes", + "TDP": "30 W", + "VID Voltage Range": "1.187V-1.274V", + "Embedded Options Available": "No", + "TCASE": "81°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No" + }, + { + "Product Collection": "Legacy Intel® Xeon® Processors", + "Code Name": "Products formerly Prestonia", + "Vertical Segment": "Server", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "130 nm", + "Total Cores": "1", + "Processor Base Frequency": "2.00 GHz", + "Cache": "512 KB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "Yes", + "TDP": "58 W", + "VID Voltage Range": "1.353V-1.461V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA604", + "TCASE": "70°C", + "Package Size": "42.5mm x 42.5mm", + "Processing Die Size": "131 mm2", + "# of Processing Die Transistors": "55 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "No", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "No", + "MM#": "854966", + "Spec Code": "SL6VK", + "Ordering Code": "BX80532KE2000DU", + "Shipping Media": "BOX", + "Stepping": "DA", + "ECCN": "3A991.A.2", + "CCATS": "NA", + "US HTS": "8473301180", + "854162": "PCN\n |\n MDDS", + "854403": "PCN", + "854404": "PCN", + "852972": "PCN\n |\n MDDS", + "853068": "PCN", + "853069": "PCN", + "852304": "PCN\n |\n MDDS", + "850817": "PCN\n |\n MDDS", + "851279": "PCN", + "851288": "PCN", + "851264": "PCN\n |\n MDDS", + "851268": "PCN", + "851272": "PCN", + "853879": "PCN\n |\n MDDS", + "854955": "PCN", + "854956": "PCN" + }, + { + "Product Collection": "Stratix® V E FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "840000", + "Adaptive Logic Modules (ALM)": "317000", + "Adaptive Logic Module (ALM) Registers": "1268000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "61.67 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "973802", + "Spec Code": "SRBNX", + "Ordering Code": "5SEE9H40I4N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "969758": "PCN", + "970658": "PCN", + "99A1HP": "PCN", + "969757": "PCN", + "970657": "PCN", + "99A1HR": "PCN", + "970656": "PCN", + "99A1HT": "PCN", + "970655": "PCN", + "99A1HV": "PCN", + "99A1HW": "PCN", + "968416": "PCN", + "99A1HK": "PCN", + "968414": "PCN", + "99A1HL": "PCN", + "968415": "PCN", + "99A1HM": "PCN", + "969759": "PCN", + "99A1HN": "PCN", + "965748": "PCN", + "965747": "PCN", + "965746": "PCN", + "968269": "PCN", + "968268": "PCN", + "99A1LH": "PCN", + "966152": "PCN", + "99A1J2": "PCN", + "99A1J3": "PCN", + "99A1J4": "PCN", + "969141": "PCN", + "99A1J5": "PCN", + "969138": "PCN", + "973802": "PCN", + "973801": "PCN", + "99A1HX": "PCN", + "99A1HZ": "PCN", + "99A1J0": "PCN", + "99A1J1": "PCN" + }, + { + "Product Collection": "Stratix® V E FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "952000", + "Adaptive Logic Modules (ALM)": "359200", + "Adaptive Logic Module (ALM) Registers": "1436800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "62.96 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "973804", + "Spec Code": "SRBNZ", + "Ordering Code": "5SEEBH40C4N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99A1DK": "PCN", + "968272": "PCN", + "968271": "PCN", + "99A1JV": "PCN", + "968419": "PCN", + "969763": "PCN", + "969762": "PCN", + "970662": "PCN", + "969761": "PCN", + "970661": "PCN", + "969760": "PCN", + "970660": "PCN", + "966154": "PCN", + "968270": "PCN", + "965751": "PCN", + "965750": "PCN", + "965749": "PCN", + "99A1JL": "PCN", + "99A1JM": "PCN", + "99A1JN": "PCN", + "99A1JP": "PCN", + "99A1JR": "PCN", + "99A1JT": "PCN", + "99A1J9": "PCN", + "99A1JA": "PCN", + "969145": "PCN", + "99A1JC": "PCN", + "969144": "PCN", + "99A1JD": "PCN", + "966153": "PCN", + "969143": "PCN", + "99A1JF": "PCN", + "969142": "PCN", + "99A1JH": "PCN", + "99A1JK": "PCN", + "969764": "PCN", + "970663": "PCN", + "99A1J6": "PCN", + "99A1J7": "PCN", + "99A1J8": "PCN", + "973804": "PCN", + "973803": "PCN" + }, + { + "Product Collection": "Stratix® V GS FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "236000", + "Adaptive Logic Modules (ALM)": "89000", + "Adaptive Logic Module (ALM) Registers": "356000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "20", + "Maximum Embedded Memory": "15.72 Mb", + "Digital Signal Processing (DSP) Blocks": "600", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "432", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F780, F1152", + "Additional Information": "View now", + "MM#": "973829", + "Spec Code": "SRBPQ", + "Ordering Code": "5SGSMD3H3F35I3L", + "Stepping": "A1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542390001", + "968495": "PCN", + "999XJJ": "PCN", + "999XJH": "PCN", + "999XJG": "PCN", + "999XHX": "PCN", + "968490": "PCN", + "999XJF": "PCN", + "968489": "PCN", + "999XJD": "PCN", + "968488": "PCN", + "999XJV": "PCN", + "999XJT": "PCN", + "968498": "PCN", + "999XJR": "PCN", + "968485": "PCN", + "968496": "PCN", + "968469": "PCN", + "968468": "PCN", + "999XHW": "PCN", + "999XHV": "PCN", + "999XHT": "PCN", + "999XHR": "PCN", + "999XHN": "PCN", + "999XHL": "PCN", + "969572": "PCN", + "999XH6": "PCN", + "999XH5": "PCN", + "969570": "PCN", + "999XH4": "PCN", + "999XH3": "PCN", + "969568": "PCN", + "969567": "PCN", + "969566": "PCN", + "968467": "PCN", + "969578": "PCN", + "968464": "PCN", + "969575": "PCN", + "968463": "PCN", + "969574": "PCN", + "973829": "PCN", + "973828": "PCN", + "969565": "PCN", + "966173": "PCN", + "965771": "PCN", + "965770": "PCN", + "965769": "PCN", + "965768": "PCN", + "973823": "PCN", + "965765": "PCN", + "966176": "PCN", + "973821": "PCN", + "966174": "PCN", + "999XL1": "PCN", + "970680": "PCN", + "999XL0": "PCN", + "970679": "PCN", + "999XKZ": "PCN", + "970678": "PCN", + "969789": "PCN", + "970677": "PCN", + "970675": "PCN", + "969787": "PCN", + "999XKN": "PCN", + "969784": "PCN", + "970684": "PCN", + "999XKM": "PCN", + "999XL4": "PCN", + "970683": "PCN", + "999XKL": "PCN", + "999XL3": "PCN", + "970682": "PCN", + "999XKK": "PCN", + "999XL2": "PCN", + "968504": "PCN", + "999XK0": "PCN", + "999XJZ": "PCN", + "999XJX": "PCN", + "999XJW": "PCN", + "999XK6": "PCN", + "999XK5": "PCN", + "999XK4": "PCN", + "999XK3": "PCN", + "999XK1": "PCN" + }, + { + "Product Collection": "Stratix® V GS FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "360000", + "Adaptive Logic Modules (ALM)": "135840", + "Adaptive Logic Module (ALM) Registers": "543360", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "23.15 Mb", + "Digital Signal Processing (DSP) Blocks": "1044", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "348", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F780, F1152, F1517", + "Additional Information": "View now", + "MM#": "973835", + "Spec Code": "SRBPW", + "Ordering Code": "5SGSMD4K1F40I2N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "969581": "PCN", + "969592": "PCN", + "969596": "PCN", + "969595": "PCN", + "969594": "PCN", + "969579": "PCN", + "969591": "PCN", + "969590": "PCN", + "969588": "PCN", + "969587": "PCN", + "969585": "PCN", + "969584": "PCN", + "999XML": "PCN", + "965774": "PCN", + "966185": "PCN", + "966183": "PCN", + "966182": "PCN", + "966181": "PCN", + "966179": "PCN", + "965776": "PCN", + "966187": "PCN", + "966186": "PCN", + "999XPF": "PCN", + "999XPC": "PCN", + "968483": "PCN", + "999XJ5": "PCN", + "999XJL": "PCN", + "999XJ4": "PCN", + "999XJK": "PCN", + "999XJ3": "PCN", + "999XJ2": "PCN", + "968480": "PCN", + "968479": "PCN", + "999XJ1": "PCN", + "999XJ0": "PCN", + "999XJC": "PCN", + "999XJA": "PCN", + "999XJ9": "PCN", + "999XJ7": "PCN", + "999XJP": "PCN", + "999XJ6": "PCN", + "999XJN": "PCN", + "968475": "PCN", + "968473": "PCN", + "968472": "PCN", + "968471": "PCN", + "965795": "PCN", + "965792": "PCN", + "965790": "PCN", + "965783": "PCN", + "973832": "PCN", + "966193": "PCN", + "966192": "PCN", + "965780": "PCN", + "966191": "PCN", + "965779": "PCN", + "965778": "PCN", + "966188": "PCN", + "965788": "PCN", + "965787": "PCN", + "965786": "PCN", + "965785": "PCN", + "973835": "PCN", + "973834": "PCN", + "965784": "PCN", + "973833": "PCN", + "999XLX": "PCN", + "999XLW": "PCN", + "999XLV": "PCN", + "999XMC": "PCN", + "999XLT": "PCN", + "999XM9": "PCN", + "999XLR": "PCN", + "999XM8": "PCN", + "999XLP": "PCN", + "999XM6": "PCN", + "999XM5": "PCN", + "999XLN": "PCN", + "999XM4": "PCN", + "999XM3": "PCN", + "999XM2": "PCN", + "999XMK": "PCN", + "999XM0": "PCN", + "999XMJ": "PCN", + "999XMH": "PCN", + "969802": "PCN", + "969801": "PCN", + "999XLA": "PCN", + "969800": "PCN", + "999XL9": "PCN", + "969799": "PCN", + "999XL8": "PCN", + "970698": "PCN", + "999XL6": "PCN", + "999XLM": "PCN", + "968518": "PCN", + "999XKJ": "PCN", + "969792": "PCN", + "999XKH": "PCN", + "969791": "PCN", + "970691": "PCN", + "999XKF": "PCN", + "968515": "PCN", + "969790": "PCN", + "999XKD": "PCN", + "999XKX": "PCN", + "970689": "PCN", + "999XKC": "PCN", + "999XKW": "PCN", + "970688": "PCN", + "999XKT": "PCN", + "999XKA": "PCN", + "968512": "PCN", + "999XK9": "PCN", + "999XKR": "PCN", + "970686": "PCN", + "999XKP": "PCN", + "999XL5": "PCN", + "969795": "PCN", + "970695": "PCN", + "968511": "PCN", + "999XK8": "PCN", + "999XK7": "PCN", + "968508": "PCN", + "968507": "PCN" + }, + { + "Product Collection": "Stratix® V GS FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "457000", + "Adaptive Logic Modules (ALM)": "172600", + "Adaptive Logic Module (ALM) Registers": "690400", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "44.27 Mb", + "Digital Signal Processing (DSP) Blocks": "1590", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "348", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "974709", + "Spec Code": "SRC30", + "Ordering Code": "5SGSMD5K3F40M4", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "969606": "PCN", + "969605": "PCN", + "969604": "PCN", + "969602": "PCN", + "969608": "PCN", + "999Z1L": "PCN", + "999Z1K": "PCN", + "999Z1H": "PCN", + "969600": "PCN", + "969599": "PCN", + "969598": "PCN", + "999Z1N": "PCN", + "999Z1M": "PCN", + "999XN9": "PCN", + "999XN8": "PCN", + "999XN6": "PCN", + "999Z1C": "PCN", + "999Z1A": "PCN", + "999Z19": "PCN", + "999Z18": "PCN", + "999XMT": "PCN", + "999XMR": "PCN", + "999XMP": "PCN", + "999XMN": "PCN", + "999XMM": "PCN", + "999XT4": "PCN", + "999XT3": "PCN", + "999XT5": "PCN", + "999XT6": "PCN", + "999XPH": "PCN", + "999XP4": "PCN", + "999XP3": "PCN", + "999XP2": "PCN", + "999XP0": "PCN", + "999XNZ": "PCN", + "999XPG": "PCN", + "968494": "PCN", + "968492": "PCN", + "974709": "PCN", + "974708": "PCN", + "965797": "PCN", + "965796": "PCN", + "973850": "PCN", + "966203": "PCN", + "965803": "PCN", + "965802": "PCN", + "965800": "PCN", + "965798": "PCN", + "973845": "PCN", + "973842": "PCN", + "973840": "PCN", + "966200": "PCN", + "973838": "PCN", + "966197": "PCN", + "968770": "PCN", + "966196": "PCN", + "968769": "PCN", + "973846": "PCN", + "969816": "PCN", + "999XMG": "PCN", + "999XMD": "PCN", + "969812": "PCN", + "969823": "PCN", + "970711": "PCN", + "970710": "PCN", + "969821": "PCN", + "969820": "PCN", + "999XLZ": "PCN", + "970702": "PCN", + "999XLC": "PCN", + "970701": "PCN", + "970700": "PCN", + "970709": "PCN", + "969808": "PCN", + "970708": "PCN", + "999XLK": "PCN", + "969807": "PCN", + "999XLJ": "PCN", + "999XLH": "PCN", + "999XLG": "PCN", + "969804": "PCN", + "970704": "PCN", + "999XLF": "PCN", + "970703": "PCN", + "999XLD": "PCN", + "968530": "PCN", + "968528": "PCN", + "968527": "PCN", + "968526": "PCN", + "968525": "PCN", + "968523": "PCN", + "968521": "PCN", + "968520": "PCN", + "968519": "PCN", + "968531": "PCN", + "968502": "PCN", + "99A5TR": "PCN", + "966269": "PCN" + }, + { + "Product Collection": "Stratix® V GS FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "583000", + "Adaptive Logic Modules (ALM)": "220000", + "Adaptive Logic Module (ALM) Registers": "880000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "51.71 Mb", + "Digital Signal Processing (DSP) Blocks": "1775", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "974710", + "Spec Code": "SRC31", + "Ordering Code": "5SGSMD6N2F45C2L", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99A2ZG": "PCN", + "99A2ZH": "PCN", + "99A2ZK": "PCN", + "969613": "PCN", + "969611": "PCN", + "969179": "PCN", + "969610": "PCN", + "99A2Z9": "PCN", + "99A2XJ": "PCN", + "99A2Z2": "PCN", + "99A2XN": "PCN", + "99A2XP": "PCN", + "99A2Z5": "PCN", + "99A2Z7": "PCN", + "99A2X8": "PCN", + "99A2XA": "PCN", + "99A2XF": "PCN", + "99A2XX": "PCN", + "99A2XZ": "PCN", + "99A2X1": "PCN", + "99A2X3": "PCN", + "99A2X5": "PCN", + "99A2X7": "PCN", + "969148": "PCN", + "99A2WG": "PCN", + "969147": "PCN", + "969146": "PCN", + "99A2WM": "PCN", + "99A2W7": "PCN", + "99A2WP": "PCN", + "99A2WR": "PCN", + "99A2WT": "PCN", + "99A2WV": "PCN", + "99A2WX": "PCN", + "99A2W0": "PCN", + "99A2W3": "PCN", + "99A2WJ": "PCN", + "968422": "PCN", + "965759": "PCN", + "968275": "PCN", + "965758": "PCN", + "965757": "PCN", + "968421": "PCN", + "968418": "PCN", + "966159": "PCN", + "968981": "PCN", + "973809": "PCN", + "966158": "PCN", + "966157": "PCN", + "973807": "PCN", + "973806": "PCN", + "966155": "PCN", + "973805": "PCN", + "965755": "PCN", + "965754": "PCN", + "966163": "PCN", + "966162": "PCN", + "966161": "PCN", + "99A300": "PCN", + "99A302": "PCN", + "99A2ZL": "PCN", + "99A2ZM": "PCN", + "99A2ZP": "PCN", + "99A2ZR": "PCN", + "99A2ZV": "PCN", + "974710": "PCN", + "965808": "PCN", + "973853": "PCN", + "965807": "PCN", + "973852": "PCN", + "965806": "PCN", + "973851": "PCN", + "968780": "PCN", + "973858": "PCN", + "968452": "PCN", + "968778": "PCN", + "973857": "PCN", + "973856": "PCN", + "968420": "PCN", + "968773": "PCN", + "969828": "PCN", + "970716": "PCN", + "99A2VK": "PCN", + "970715": "PCN", + "970714": "PCN", + "99A2VM": "PCN", + "969825": "PCN", + "969824": "PCN", + "99A2VP": "PCN", + "99A2VV": "PCN", + "99A2VW": "PCN", + "99A2V5": "PCN", + "970719": "PCN", + "969829": "PCN", + "970717": "PCN", + "99A2V7": "PCN", + "99A2TT": "PCN", + "99A2V8": "PCN", + "968536": "PCN", + "99A2TW": "PCN", + "99A2VA": "PCN", + "99A2TX": "PCN", + "99A2VF": "PCN", + "99A2V0": "PCN", + "99A2VH": "PCN", + "99A2TJ": "PCN", + "99A2TK": "PCN", + "99A2TL": "PCN", + "99A2TN": "PCN", + "99A2TC": "PCN", + "99A2TD": "PCN", + "99A2TF": "PCN", + "99A2TG": "PCN", + "99A2RV": "PCN", + "99A2T8": "PCN", + "99A2RW": "PCN", + "99A2RX": "PCN", + "968534": "PCN", + "968533": "PCN", + "968532": "PCN", + "969767": "PCN", + "970667": "PCN", + "969766": "PCN", + "970666": "PCN", + "969765": "PCN", + "99A2T1": "PCN", + "99A2T5": "PCN", + "99A2RR": "PCN", + "99A2T6": "PCN", + "966322": "PCN", + "969770": "PCN", + "970670": "PCN", + "969769": "PCN", + "970669": "PCN", + "969768": "PCN", + "970668": "PCN" + }, + { + "Product Collection": "Stratix® V GS FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "695000", + "Adaptive Logic Modules (ALM)": "262400", + "Adaptive Logic Module (ALM) Registers": "1049600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "58.01 Mb", + "Digital Signal Processing (DSP) Blocks": "1963", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "973861", + "Spec Code": "SRBQM", + "Ordering Code": "5SGSMD8N3F45C4N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "969618": "PCN", + "99A2ZA": "PCN", + "99A2ZC": "PCN", + "99A2ZD": "PCN", + "99A2ZF": "PCN", + "99A2XW": "PCN", + "99A2Z8": "PCN", + "99A2Z0": "PCN", + "99A2XK": "PCN", + "99A2Z1": "PCN", + "99A2XL": "PCN", + "99A2XM": "PCN", + "99A2Z3": "PCN", + "99A2Z4": "PCN", + "99A2XT": "PCN", + "99A2XV": "PCN", + "99A2X9": "PCN", + "99A2XD": "PCN", + "99A6ZZ": "PCN", + "99A2XG": "PCN", + "99A2XH": "PCN", + "99A2X2": "PCN", + "99A2X4": "PCN", + "99A2X6": "PCN", + "99A2WH": "PCN", + "99A2WZ": "PCN", + "99A2W5": "PCN", + "99A2WN": "PCN", + "969835": "PCN", + "99A2W8": "PCN", + "969834": "PCN", + "99A2W9": "PCN", + "969833": "PCN", + "99A2WA": "PCN", + "969832": "PCN", + "99A2WC": "PCN", + "99A2WD": "PCN", + "99A2WW": "PCN", + "969557": "PCN", + "99A2WF": "PCN", + "99A2VX": "PCN", + "99A2VZ": "PCN", + "969562": "PCN", + "99A2W1": "PCN", + "99A2W4": "PCN", + "99A2WL": "PCN", + "968278": "PCN", + "973818": "PCN", + "965761": "PCN", + "966172": "PCN", + "968989": "PCN", + "966170": "PCN", + "973815": "PCN", + "966169": "PCN", + "968985": "PCN", + "966167": "PCN", + "968283": "PCN", + "968982": "PCN", + "968280": "PCN", + "973820": "PCN", + "965763": "PCN", + "968991": "PCN", + "973819": "PCN", + "966166": "PCN", + "968282": "PCN", + "968983": "PCN", + "99A7C1": "PCN", + "966165": "PCN", + "968281": "PCN", + "966164": "PCN", + "973814": "PCN", + "973813": "PCN", + "973812": "PCN", + "973811": "PCN", + "973810": "PCN", + "99AVDV": "PCN", + "99A2ZW": "PCN", + "99A2ZX": "PCN", + "99A301": "PCN", + "969616": "PCN", + "969615": "PCN", + "99A2ZN": "PCN", + "99A2ZT": "PCN", + "968457": "PCN", + "965809": "PCN", + "968460": "PCN", + "968459": "PCN", + "968458": "PCN", + "968456": "PCN", + "973861": "PCN", + "973860": "PCN", + "968454": "PCN", + "973859": "PCN", + "968453": "PCN", + "968461": "PCN", + "99A487": "PCN", + "99A2VL": "PCN", + "99A2VN": "PCN", + "970724": "PCN", + "970723": "PCN", + "99A2VR": "PCN", + "970721": "PCN", + "99A2V3": "PCN", + "99A2VJ": "PCN", + "99A2V4": "PCN", + "969554": "PCN", + "970720": "PCN", + "969831": "PCN", + "968539": "PCN", + "99A2TR": "PCN", + "968537": "PCN", + "99A2TV": "PCN", + "99A2V9": "PCN", + "99A2VC": "PCN", + "99A2TZ": "PCN", + "99A2VG": "PCN", + "99A2V2": "PCN", + "968545": "PCN", + "968544": "PCN", + "99A2TM": "PCN", + "968542": "PCN", + "968541": "PCN", + "99A2TP": "PCN", + "99A2V6": "PCN", + "966325": "PCN", + "969781": "PCN", + "966324": "PCN", + "969780": "PCN", + "99A2T9": "PCN", + "969779": "PCN", + "99A2TA": "PCN", + "969778": "PCN", + "969777": "PCN", + "969776": "PCN", + "969335": "PCN", + "99A2TH": "PCN", + "99A2RT": "PCN", + "99A2T7": "PCN", + "966330": "PCN", + "966329": "PCN", + "966328": "PCN", + "966327": "PCN", + "966326": "PCN", + "969782": "PCN", + "99A2RZ": "PCN", + "99A2T0": "PCN", + "99A2T2": "PCN", + "99A2RM": "PCN", + "99A2T3": "PCN", + "99A2RN": "PCN", + "99A2T4": "PCN", + "99A2RP": "PCN", + "969774": "PCN", + "970674": "PCN", + "966323": "PCN", + "969773": "PCN", + "970673": "PCN", + "969772": "PCN", + "970672": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "340000", + "Adaptive Logic Modules (ALM)": "128300", + "Adaptive Logic Module (ALM) Registers": "513200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "22.92 Mb", + "Digital Signal Processing (DSP) Blocks": "256", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "348", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F780, F1152, F1517", + "Additional Information": "View now", + "MM#": "973998", + "Spec Code": "SRBUH", + "Ordering Code": "5SGXMA3K3F40I3N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999XNW": "PCN", + "999XNV": "PCN", + "999XNT": "PCN", + "999XNR": "PCN", + "999XNP": "PCN", + "999XNN": "PCN", + "999XNL": "PCN", + "999XNK": "PCN", + "999XNX": "PCN", + "999XNJ": "PCN", + "966068": "PCN", + "999XNC": "PCN", + "966079": "PCN", + "999XNA": "PCN", + "966077": "PCN", + "969848": "PCN", + "969847": "PCN", + "969846": "PCN", + "999XN5": "PCN", + "999XN4": "PCN", + "966074": "PCN", + "966072": "PCN", + "966084": "PCN", + "999XNH": "PCN", + "999XNG": "PCN", + "966070": "PCN", + "999XNF": "PCN", + "966081": "PCN", + "999XND": "PCN", + "970732": "PCN", + "970731": "PCN", + "969844": "PCN", + "999XN3": "PCN", + "999XN2": "PCN", + "969842": "PCN", + "999XN1": "PCN", + "969841": "PCN", + "999XN0": "PCN", + "969840": "PCN", + "999XMZ": "PCN", + "969839": "PCN", + "999XMX": "PCN", + "969838": "PCN", + "999XMW": "PCN", + "968995": "PCN", + "969008": "PCN", + "966500": "PCN", + "999XRH": "PCN", + "966510": "PCN", + "999XRG": "PCN", + "966509": "PCN", + "999XRF": "PCN", + "999XRD": "PCN", + "966507": "PCN", + "999XRC": "PCN", + "966494": "PCN", + "999XRA": "PCN", + "999XR9": "PCN", + "999XRR": "PCN", + "999XRP": "PCN", + "966504": "PCN", + "966502": "PCN", + "999XRL": "PCN", + "999XRJ": "PCN", + "968655": "PCN", + "968654": "PCN", + "999XPL": "PCN", + "999XPK": "PCN", + "968652": "PCN", + "999XPJ": "PCN", + "968651": "PCN", + "966493": "PCN", + "966491": "PCN", + "999XPZ": "PCN", + "968650": "PCN", + "999XPX": "PCN", + "969741": "PCN", + "969740": "PCN", + "969732": "PCN", + "969731": "PCN", + "969739": "PCN", + "969737": "PCN", + "969736": "PCN", + "969734": "PCN", + "969733": "PCN", + "972267": "PCN", + "972266": "PCN", + "971543": "PCN", + "971542": "PCN", + "972263": "PCN", + "972254": "PCN", + "971538": "PCN", + "972253": "PCN", + "971536": "PCN", + "999Z5P": "PCN", + "999Z5N": "PCN", + "971534": "PCN", + "999Z5M": "PCN", + "971533": "PCN", + "999Z5L": "PCN", + "971541": "PCN", + "972260": "PCN", + "972258": "PCN", + "972257": "PCN", + "968553": "PCN", + "970728": "PCN", + "999ZC6": "PCN", + "968552": "PCN", + "968551": "PCN", + "970726": "PCN", + "968549": "PCN", + "968548": "PCN", + "999ZCC": "PCN", + "999ZCA": "PCN", + "968556": "PCN", + "968555": "PCN", + "970730": "PCN", + "999ZC8": "PCN", + "968554": "PCN", + "999ZC7": "PCN", + "966342": "PCN", + "999ZAT": "PCN", + "966340": "PCN", + "999ZAR": "PCN", + "999ZA7": "PCN", + "999ZAP": "PCN", + "966336": "PCN", + "999ZA6": "PCN", + "999ZAN": "PCN", + "966335": "PCN", + "999ZAM": "PCN", + "999ZAL": "PCN", + "966333": "PCN", + "999ZAK": "PCN", + "999ZAJ": "PCN", + "999ZAG": "PCN", + "966332": "PCN", + "970506": "PCN", + "970518": "PCN", + "969164": "PCN", + "969162": "PCN", + "969160": "PCN", + "969172": "PCN", + "969169": "PCN", + "970511": "PCN", + "969167": "PCN", + "969168": "PCN", + "969180": "PCN", + "970509": "PCN", + "970521": "PCN", + "969165": "PCN", + "970508": "PCN", + "969166": "PCN", + "969178": "PCN", + "970507": "PCN", + "970519": "PCN", + "999Z1G": "PCN", + "999Z1F": "PCN", + "999Z1D": "PCN", + "973998": "PCN", + "973991": "PCN", + "973987": "PCN", + "999ZNK": "PCN", + "999ZN9": "PCN", + "973986": "PCN", + "999ZN0": "PCN", + "999ZN1": "PCN", + "973984": "PCN", + "999ZN3": "PCN", + "973981": "PCN", + "999ZN4": "PCN", + "999ZN5": "PCN", + "973980": "PCN", + "999ZN6": "PCN", + "973979": "PCN", + "999ZN7": "PCN", + "999ZN8": "PCN", + "973985": "PCN", + "999Z4N": "PCN", + "971532": "PCN", + "999Z5K": "PCN", + "971531": "PCN", + "999Z5J": "PCN", + "999Z5G": "PCN", + "999Z5F": "PCN", + "999Z49": "PCN", + "999Z4V": "PCN", + "999Z48": "PCN", + "999Z4T": "PCN", + "999Z4P": "PCN", + "999Z47": "PCN", + "999Z46": "PCN", + "999Z45": "PCN", + "999Z44": "PCN", + "999Z43": "PCN", + "999Z4M": "PCN", + "999Z52": "PCN", + "999Z50": "PCN", + "999Z4X": "PCN", + "999Z4C": "PCN", + "999Z4W": "PCN", + "999Z3P": "PCN", + "999Z42": "PCN", + "999Z41": "PCN", + "999Z40": "PCN", + "999Z3W": "PCN", + "999Z3V": "PCN", + "999Z3T": "PCN", + "999Z3R": "PCN", + "969176": "PCN", + "999Z3N": "PCN", + "999Z3M": "PCN", + "999Z35": "PCN", + "999Z3L": "PCN", + "999Z33": "PCN", + "999Z3K": "PCN", + "999Z32": "PCN", + "999Z3J": "PCN", + "999Z31": "PCN", + "999Z30": "PCN", + "999XX0": "PCN", + "999XWZ": "PCN", + "999XWX": "PCN", + "999XWW": "PCN", + "999XWV": "PCN", + "999XWT": "PCN", + "973868": "PCN", + "965816": "PCN", + "973866": "PCN", + "965814": "PCN", + "965813": "PCN", + "965812": "PCN", + "973874": "PCN", + "999XX6": "PCN", + "999XX5": "PCN", + "999XX4": "PCN", + "973873": "PCN", + "999XX3": "PCN", + "973872": "PCN", + "999XX1": "PCN", + "965819": "PCN", + "973870": "PCN", + "973869": "PCN", + "999XVG": "PCN", + "999XVF": "PCN", + "969003": "PCN", + "969004": "PCN", + "969002": "PCN", + "968999": "PCN", + "969000": "PCN", + "969012": "PCN", + "968997": "PCN", + "969009": "PCN", + "968998": "PCN", + "969006": "PCN", + "999ZLM": "PCN", + "999ZLN": "PCN", + "999ZLP": "PCN", + "999ZLR": "PCN", + "999ZLT": "PCN", + "999ZLV": "PCN", + "999ZLX": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "420000", + "Adaptive Logic Modules (ALM)": "158500", + "Adaptive Logic Module (ALM) Registers": "634000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "41.84 Mb", + "Digital Signal Processing (DSP) Blocks": "256", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "696", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "348", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "36", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1152, F1517", + "Additional Information": "View now", + "MM#": "974060", + "Spec Code": "SRC60", + "Ordering Code": "5SGXMA4K2F40I3N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "966089": "PCN", + "966088": "PCN", + "999ZFF": "PCN", + "999ZFD": "PCN", + "999ZFC": "PCN", + "966096": "PCN", + "966094": "PCN", + "966093": "PCN", + "999ZF9": "PCN", + "966091": "PCN", + "966090": "PCN", + "969865": "PCN", + "969849": "PCN", + "969863": "PCN", + "999ZDJ": "PCN", + "999ZDH": "PCN", + "969861": "PCN", + "999ZDF": "PCN", + "999ZDD": "PCN", + "969859": "PCN", + "970745": "PCN", + "999ZDC": "PCN", + "969858": "PCN", + "999ZFA": "PCN", + "969857": "PCN", + "969856": "PCN", + "969855": "PCN", + "969854": "PCN", + "970737": "PCN", + "999ZD8": "PCN", + "970736": "PCN", + "999ZD7": "PCN", + "970735": "PCN", + "999ZD6": "PCN", + "970734": "PCN", + "999ZD5": "PCN", + "970733": "PCN", + "999ZD4": "PCN", + "999ZD2": "PCN", + "999ZCH": "PCN", + "999ZD1": "PCN", + "999ZD0": "PCN", + "970743": "PCN", + "970741": "PCN", + "970740": "PCN", + "999ZCZ": "PCN", + "970739": "PCN", + "999ZDA": "PCN", + "970738": "PCN", + "999ZD9": "PCN", + "966520": "PCN", + "966519": "PCN", + "999XT2": "PCN", + "966518": "PCN", + "999XT0": "PCN", + "999XRZ": "PCN", + "966516": "PCN", + "999XRX": "PCN", + "966515": "PCN", + "999XRW": "PCN", + "999XRV": "PCN", + "999XTL": "PCN", + "999XTK": "PCN", + "966523": "PCN", + "966522": "PCN", + "966512": "PCN", + "966511": "PCN", + "999XRT": "PCN", + "999XPR": "PCN", + "999XR7": "PCN", + "999XPP": "PCN", + "999XR5": "PCN", + "999XPN": "PCN", + "999XR4": "PCN", + "999XPM": "PCN", + "999XR3": "PCN", + "968665": "PCN", + "999XR2": "PCN", + "999XR1": "PCN", + "999XR0": "PCN", + "999XR8": "PCN", + "968661": "PCN", + "999XPW": "PCN", + "999XPT": "PCN", + "999XP7": "PCN", + "999XP6": "PCN", + "999XP5": "PCN", + "999XPA": "PCN", + "999XP9": "PCN", + "999XP8": "PCN", + "969746": "PCN", + "969745": "PCN", + "969744": "PCN", + "969743": "PCN", + "969742": "PCN", + "969747": "PCN", + "971560": "PCN", + "971557": "PCN", + "971548": "PCN", + "971545": "PCN", + "972277": "PCN", + "972276": "PCN", + "971554": "PCN", + "971553": "PCN", + "972273": "PCN", + "971550": "PCN", + "972271": "PCN", + "972270": "PCN", + "999Z5R": "PCN", + "968565": "PCN", + "968563": "PCN", + "968562": "PCN", + "968561": "PCN", + "968560": "PCN", + "999ZCG": "PCN", + "999ZCF": "PCN", + "968559": "PCN", + "999ZCD": "PCN", + "968558": "PCN", + "968567": "PCN", + "966353": "PCN", + "966350": "PCN", + "966349": "PCN", + "966351": "PCN", + "966347": "PCN", + "966345": "PCN", + "966346": "PCN", + "966344": "PCN", + "999ZP6": "PCN", + "999ZP8": "PCN", + "970523": "PCN", + "999ZNX": "PCN", + "999ZNZ": "PCN", + "999ZP0": "PCN", + "999ZP1": "PCN", + "999ZP2": "PCN", + "999ZP3": "PCN", + "999ZP4": "PCN", + "999ZP5": "PCN", + "999ZNM": "PCN", + "999ZNN": "PCN", + "999ZNP": "PCN", + "999ZNR": "PCN", + "999ZNT": "PCN", + "999ZNW": "PCN", + "999ZNL": "PCN", + "974056": "PCN", + "974055": "PCN", + "974054": "PCN", + "974051": "PCN", + "974050": "PCN", + "999Z58": "PCN", + "999Z57": "PCN", + "999Z5D": "PCN", + "999ZV9": "PCN", + "999Z5C": "PCN", + "999Z59": "PCN", + "999Z4L": "PCN", + "999Z56": "PCN", + "999Z4J": "PCN", + "999Z55": "PCN", + "999Z4H": "PCN", + "999Z53": "PCN", + "999Z4G": "PCN", + "999Z4F": "PCN", + "999Z4D": "PCN", + "969198": "PCN", + "970537": "PCN", + "969193": "PCN", + "970536": "PCN", + "970535": "PCN", + "969186": "PCN", + "969194": "PCN", + "970534": "PCN", + "969190": "PCN", + "970531": "PCN", + "969187": "PCN", + "970529": "PCN", + "969185": "PCN", + "970528": "PCN", + "965829": "PCN", + "973886": "PCN", + "999XXC": "PCN", + "965828": "PCN", + "973885": "PCN", + "999XXA": "PCN", + "973884": "PCN", + "999XX9": "PCN", + "965826": "PCN", + "999XX8": "PCN", + "965825": "PCN", + "999XX7": "PCN", + "999XXG": "PCN", + "999XXF": "PCN", + "973879": "PCN", + "973878": "PCN", + "973876": "PCN", + "973875": "PCN", + "965824": "PCN", + "965822": "PCN", + "973881": "PCN", + "969023": "PCN", + "969024": "PCN", + "999XVW": "PCN", + "969021": "PCN", + "969022": "PCN", + "969019": "PCN", + "969020": "PCN", + "969017": "PCN", + "999XTX": "PCN", + "969016": "PCN", + "969013": "PCN", + "999XTW": "PCN", + "999XTV": "PCN", + "969011": "PCN", + "999XTT": "PCN", + "999XTP": "PCN", + "999XTN": "PCN", + "999XTM": "PCN", + "969018": "PCN", + "969015": "PCN", + "999XV4": "PCN", + "999XV3": "PCN", + "999XV2": "PCN", + "999XV1": "PCN", + "999XV0": "PCN", + "999XTZ": "PCN", + "974060": "PCN", + "999XZ2": "PCN", + "999XZ1": "PCN", + "999XZ0": "PCN", + "999XXZ": "PCN", + "999XXX": "PCN", + "999XXW": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "490000", + "Adaptive Logic Modules (ALM)": "185000", + "Adaptive Logic Module (ALM) Registers": "740000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "50.65 Mb", + "Digital Signal Processing (DSP) Blocks": "256", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1152, F1517, F1932", + "Additional Information": "View now", + "MM#": "974082", + "Spec Code": "SRC6N", + "Ordering Code": "5SGXMA5N3F40I3LN", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "966103": "PCN", + "966115": "PCN", + "966102": "PCN", + "966114": "PCN", + "966101": "PCN", + "966113": "PCN", + "966100": "PCN", + "966110": "PCN", + "969884": "PCN", + "969883": "PCN", + "999ZG7": "PCN", + "966109": "PCN", + "999ZG6": "PCN", + "999ZG5": "PCN", + "999ZG4": "PCN", + "966106": "PCN", + "999ZG2": "PCN", + "966117": "PCN", + "966116": "PCN", + "999ZFL": "PCN", + "969874": "PCN", + "970771": "PCN", + "999ZFK": "PCN", + "969872": "PCN", + "970770": "PCN", + "999ZFJ": "PCN", + "969871": "PCN", + "999ZFH": "PCN", + "969870": "PCN", + "969869": "PCN", + "970767": "PCN", + "969868": "PCN", + "969881": "PCN", + "969879": "PCN", + "969877": "PCN", + "999ZFN": "PCN", + "970762": "PCN", + "968586": "PCN", + "970761": "PCN", + "968585": "PCN", + "970748": "PCN", + "970760": "PCN", + "968584": "PCN", + "970747": "PCN", + "968583": "PCN", + "970746": "PCN", + "970758": "PCN", + "968582": "PCN", + "969867": "PCN", + "969866": "PCN", + "968574": "PCN", + "968573": "PCN", + "968572": "PCN", + "968570": "PCN", + "968581": "PCN", + "968580": "PCN", + "968579": "PCN", + "968578": "PCN", + "968577": "PCN", + "968576": "PCN", + "999XTJ": "PCN", + "999XTH": "PCN", + "999XTG": "PCN", + "999XTF": "PCN", + "968688": "PCN", + "999XTD": "PCN", + "999XTA": "PCN", + "999XT9": "PCN", + "966527": "PCN", + "966526": "PCN", + "966524": "PCN", + "968677": "PCN", + "968675": "PCN", + "968674": "PCN", + "968673": "PCN", + "968672": "PCN", + "999XT8": "PCN", + "999XT7": "PCN", + "968682": "PCN", + "999XRN": "PCN", + "968681": "PCN", + "999XRM": "PCN", + "968680": "PCN", + "968668": "PCN", + "999ZGC": "PCN", + "999ZGA": "PCN", + "999ZG9": "PCN", + "999ZG8": "PCN", + "971578": "PCN", + "971577": "PCN", + "972298": "PCN", + "999Z8M": "PCN", + "999Z8L": "PCN", + "999Z8K": "PCN", + "999Z8J": "PCN", + "969749": "PCN", + "999Z8G": "PCN", + "999Z7F": "PCN", + "999Z7Z": "PCN", + "971562": "PCN", + "972289": "PCN", + "999Z7D": "PCN", + "999Z7X": "PCN", + "971561": "PCN", + "972288": "PCN", + "999Z7C": "PCN", + "999Z7W": "PCN", + "971572": "PCN", + "999Z79": "PCN", + "999Z7V": "PCN", + "972286": "PCN", + "999Z7T": "PCN", + "999Z78": "PCN", + "999Z77": "PCN", + "999Z76": "PCN", + "971576": "PCN", + "972297": "PCN", + "972296": "PCN", + "999Z7N": "PCN", + "972295": "PCN", + "999Z7M": "PCN", + "999Z7L": "PCN", + "999Z7K": "PCN", + "999Z7J": "PCN", + "972292": "PCN", + "999Z7H": "PCN", + "999Z81": "PCN", + "999Z7G": "PCN", + "999Z80": "PCN", + "972281": "PCN", + "999Z75": "PCN", + "971565": "PCN", + "972282": "PCN", + "999Z5V": "PCN", + "999Z6G": "PCN", + "999Z5T": "PCN", + "999Z6D": "PCN", + "999Z6C": "PCN", + "999Z6P": "PCN", + "999Z6N": "PCN", + "999Z6M": "PCN", + "999Z6L": "PCN", + "999Z6K": "PCN", + "999Z5W": "PCN", + "999Z6J": "PCN", + "966362": "PCN", + "966363": "PCN", + "966360": "PCN", + "966355": "PCN", + "966352": "PCN", + "966358": "PCN", + "966359": "PCN", + "966356": "PCN", + "966357": "PCN", + "966354": "PCN", + "965998": "PCN", + "965997": "PCN", + "965995": "PCN", + "965994": "PCN", + "965993": "PCN", + "965992": "PCN", + "999Z9W": "PCN", + "965999": "PCN", + "999Z8V": "PCN", + "999Z8T": "PCN", + "999Z8P": "PCN", + "999Z8N": "PCN", + "999ZPP": "PCN", + "999ZPR": "PCN", + "999ZPT": "PCN", + "999ZPV": "PCN", + "999ZPW": "PCN", + "999ZPX": "PCN", + "999ZPZ": "PCN", + "999ZPN": "PCN", + "999ZPC": "PCN", + "999ZPD": "PCN", + "999ZPF": "PCN", + "999ZPG": "PCN", + "999ZPH": "PCN", + "999ZPJ": "PCN", + "999ZPK": "PCN", + "999ZPM": "PCN", + "999ZP9": "PCN", + "999ZPA": "PCN", + "974075": "PCN", + "974074": "PCN", + "974072": "PCN", + "969910": "PCN", + "974082": "PCN", + "974079": "PCN", + "974078": "PCN", + "974069": "PCN", + "974067": "PCN", + "974066": "PCN", + "974065": "PCN", + "974064": "PCN", + "974063": "PCN", + "969901": "PCN", + "974070": "PCN", + "969900": "PCN", + "969898": "PCN", + "969211": "PCN", + "970550": "PCN", + "969210": "PCN", + "969209": "PCN", + "970540": "PCN", + "970551": "PCN", + "969206": "PCN", + "970549": "PCN", + "969207": "PCN", + "969203": "PCN", + "969201": "PCN", + "969202": "PCN", + "969212": "PCN", + "969199": "PCN", + "969214": "PCN", + "999ZR8": "PCN", + "999ZR9": "PCN", + "999ZRA": "PCN", + "999ZRC": "PCN", + "999ZR0": "PCN", + "999ZR2": "PCN", + "999ZR3": "PCN", + "970025": "PCN", + "999ZR4": "PCN", + "999ZR5": "PCN", + "999ZR6": "PCN", + "999ZR7": "PCN", + "965832": "PCN", + "973889": "PCN", + "965831": "PCN", + "970379": "PCN", + "973888": "PCN", + "965830": "PCN", + "973887": "PCN", + "999ZJD": "PCN", + "999ZJF": "PCN", + "999ZJG": "PCN", + "965838": "PCN", + "970375": "PCN", + "999ZJH": "PCN", + "965837": "PCN", + "999XWR": "PCN", + "999ZJJ": "PCN", + "973896": "PCN", + "999XXJ": "PCN", + "999ZHR": "PCN", + "999ZJ8": "PCN", + "973895": "PCN", + "999XXH": "PCN", + "999ZHT": "PCN", + "999ZJ9": "PCN", + "973894": "PCN", + "999ZHV": "PCN", + "999ZJA": "PCN", + "973893": "PCN", + "999ZJC": "PCN", + "965834": "PCN", + "973890": "PCN", + "969041": "PCN", + "999XWF": "PCN", + "969038": "PCN", + "999XWD": "PCN", + "999ZHH": "PCN", + "969035": "PCN", + "999XWC": "PCN", + "999ZHJ": "PCN", + "969037": "PCN", + "999XWA": "PCN", + "999ZHK": "PCN", + "999XW9": "PCN", + "999ZHM": "PCN", + "969034": "PCN", + "999XW3": "PCN", + "999ZHN": "PCN", + "969031": "PCN", + "999XW1": "PCN", + "999ZHP": "PCN", + "965836": "PCN", + "999XWP": "PCN", + "999XWN": "PCN", + "999XWM": "PCN", + "999XWK": "PCN", + "999XWJ": "PCN", + "999XWH": "PCN", + "999XWG": "PCN", + "999XVD": "PCN", + "999XVC": "PCN", + "999XVV": "PCN", + "999XVA": "PCN", + "999XVT": "PCN", + "999ZH2": "PCN", + "999XV9": "PCN", + "999XVR": "PCN", + "999XV8": "PCN", + "999XVP": "PCN", + "999XV7": "PCN", + "999XVN": "PCN", + "969032": "PCN", + "999XW0": "PCN", + "999ZGW": "PCN", + "969029": "PCN", + "999XVZ": "PCN", + "999ZGX": "PCN", + "969030": "PCN", + "999XVX": "PCN", + "999ZGZ": "PCN", + "969039": "PCN", + "999ZH0": "PCN", + "999ZH1": "PCN", + "969028": "PCN", + "969025": "PCN", + "969026": "PCN", + "966535": "PCN", + "966533": "PCN", + "966545": "PCN", + "966532": "PCN", + "966544": "PCN", + "99A488": "PCN", + "966531": "PCN", + "966543": "PCN", + "99A489": "PCN", + "966530": "PCN", + "966542": "PCN", + "966529": "PCN", + "999ZGR": "PCN", + "999ZGT": "PCN", + "999XV6": "PCN", + "999XVM": "PCN", + "999XVL": "PCN", + "999XVK": "PCN", + "999XVH": "PCN", + "966538": "PCN", + "966536": "PCN", + "999XZP": "PCN", + "999XZN": "PCN", + "999XZM": "PCN", + "999XZT": "PCN", + "999XZR": "PCN", + "999XZK": "PCN", + "999XZJ": "PCN", + "999XZH": "PCN", + "999XZG": "PCN", + "999XZF": "PCN", + "999XZD": "PCN", + "999XZC": "PCN", + "999XZA": "PCN", + "999XZ9": "PCN", + "999XZ8": "PCN", + "999XZ6": "PCN", + "999XZ5": "PCN", + "999XZ4": "PCN", + "973903": "PCN", + "999XXV": "PCN", + "999XXR": "PCN", + "973901": "PCN", + "999XXP": "PCN", + "973900": "PCN", + "973910": "PCN", + "999XXN": "PCN", + "973898": "PCN", + "973911": "PCN", + "999XXM": "PCN", + "973897": "PCN", + "973909": "PCN", + "999XXL": "PCN", + "973908": "PCN", + "999XXK": "PCN", + "999XZ3": "PCN", + "999ZJL": "PCN", + "999ZJM": "PCN", + "965860": "PCN", + "973907": "PCN", + "999ZJN": "PCN", + "973906": "PCN", + "999ZJP": "PCN", + "965855": "PCN", + "973905": "PCN", + "973904": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "622000", + "Adaptive Logic Modules (ALM)": "234720", + "Adaptive Logic Module (ALM) Registers": "938880", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "57.16 Mb", + "Digital Signal Processing (DSP) Blocks": "256", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1152, F1517, F1932", + "Additional Information": "View now", + "MM#": "974108", + "Spec Code": "SRC7E", + "Ordering Code": "5SGXMA7N3F45C2", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "966451": "PCN", + "966449": "PCN", + "966448": "PCN", + "966447": "PCN", + "966458": "PCN", + "966457": "PCN", + "966456": "PCN", + "966454": "PCN", + "966452": "PCN", + "966446": "PCN", + "966445": "PCN", + "968978": "PCN", + "968976": "PCN", + "970255": "PCN", + "966462": "PCN", + "966461": "PCN", + "966460": "PCN", + "966459": "PCN", + "970134": "PCN", + "971582": "PCN", + "970133": "PCN", + "970132": "PCN", + "971590": "PCN", + "971589": "PCN", + "971587": "PCN", + "971599": "PCN", + "971598": "PCN", + "971585": "PCN", + "970113": "PCN", + "970111": "PCN", + "970123": "PCN", + "970122": "PCN", + "970121": "PCN", + "970108": "PCN", + "970120": "PCN", + "970119": "PCN", + "970118": "PCN", + "970117": "PCN", + "970114": "PCN", + "968779": "PCN", + "968777": "PCN", + "966364": "PCN", + "966365": "PCN", + "971344": "PCN", + "971628": "PCN", + "971645": "PCN", + "971643": "PCN", + "971631": "PCN", + "971596": "PCN", + "971595": "PCN", + "971594": "PCN", + "971606": "PCN", + "971593": "PCN", + "971591": "PCN", + "999Z20": "PCN", + "999Z1X": "PCN", + "999Z1W": "PCN", + "999Z2K": "PCN", + "999Z2J": "PCN", + "999Z2H": "PCN", + "999Z2G": "PCN", + "999Z21": "PCN", + "999Z1V": "PCN", + "999Z1T": "PCN", + "999Z1R": "PCN", + "999Z23": "PCN", + "999Z22": "PCN", + "99A703": "PCN", + "999Z0M": "PCN", + "999Z0L": "PCN", + "999Z0K": "PCN", + "999Z0J": "PCN", + "999Z07": "PCN", + "999Z06": "PCN", + "999Z05": "PCN", + "999Z04": "PCN", + "999Z03": "PCN", + "999Z02": "PCN", + "999Z00": "PCN", + "999Z0H": "PCN", + "999Z10": "PCN", + "999ZM9": "PCN", + "999Z0G": "PCN", + "999Z0Z": "PCN", + "999Z0F": "PCN", + "999Z0X": "PCN", + "999Z0D": "PCN", + "999Z0W": "PCN", + "999Z0A": "PCN", + "999Z0V": "PCN", + "999Z09": "PCN", + "999Z0T": "PCN", + "999Z08": "PCN", + "999Z0P": "PCN", + "999Z0N": "PCN", + "969235": "PCN", + "969228": "PCN", + "969237": "PCN", + "969234": "PCN", + "999ZV4": "PCN", + "999ZV5": "PCN", + "999ZV6": "PCN", + "999ZV7": "PCN", + "999ZV8": "PCN", + "969225": "PCN", + "969226": "PCN", + "969224": "PCN", + "999ZV2": "PCN", + "969220": "PCN", + "999ZV3": "PCN", + "999ZT3": "PCN", + "999ZT4": "PCN", + "999ZT5": "PCN", + "999ZT7": "PCN", + "999ZT8": "PCN", + "999ZT9": "PCN", + "999ZRK": "PCN", + "999ZT1": "PCN", + "999ZT2": "PCN", + "999ZRP": "PCN", + "999ZRR": "PCN", + "999ZRV": "PCN", + "999ZRW": "PCN", + "999ZRF": "PCN", + "999ZRX": "PCN", + "999ZRG": "PCN", + "999ZRZ": "PCN", + "999ZRH": "PCN", + "999ZT0": "PCN", + "999ZRJ": "PCN", + "999ZRL": "PCN", + "999ZRM": "PCN", + "999ZRN": "PCN", + "969057": "PCN", + "969054": "PCN", + "969052": "PCN", + "99A53A": "PCN", + "999ZHW": "PCN", + "999ZHX": "PCN", + "969079": "PCN", + "999ZHZ": "PCN", + "969061": "PCN", + "999ZHG": "PCN", + "966570": "PCN", + "999ZJ0": "PCN", + "969050": "PCN", + "999ZJ1": "PCN", + "969046": "PCN", + "999ZJ3": "PCN", + "969047": "PCN", + "999ZJ4": "PCN", + "966566": "PCN", + "999ZJ6": "PCN", + "966565": "PCN", + "999ZJ7": "PCN", + "999ZH6": "PCN", + "969053": "PCN", + "999ZH8": "PCN", + "969049": "PCN", + "999ZH9": "PCN", + "999ZHA": "PCN", + "999ZHC": "PCN", + "999ZHD": "PCN", + "999ZHF": "PCN", + "966556": "PCN", + "966555": "PCN", + "966553": "PCN", + "966551": "PCN", + "999ZH3": "PCN", + "999ZH4": "PCN", + "999ZH5": "PCN", + "966564": "PCN", + "969045": "PCN", + "969042": "PCN", + "969040": "PCN", + "966558": "PCN", + "966557": "PCN", + "966548": "PCN", + "999ZM1": "PCN", + "999ZM2": "PCN", + "999ZM3": "PCN", + "999ZM4": "PCN", + "999ZM5": "PCN", + "999ZM6": "PCN", + "999ZM7": "PCN", + "999XZZ": "PCN", + "999ZLF": "PCN", + "999ZLZ": "PCN", + "999XZX": "PCN", + "999ZLH": "PCN", + "999ZM0": "PCN", + "999XZW": "PCN", + "999ZLJ": "PCN", + "999XZV": "PCN", + "999ZL7": "PCN", + "970823": "PCN", + "999ZL8": "PCN", + "970822": "PCN", + "999ZL9": "PCN", + "970821": "PCN", + "999ZLA": "PCN", + "999ZLC": "PCN", + "999ZLD": "PCN", + "970811": "PCN", + "970810": "PCN", + "970809": "PCN", + "970806": "PCN", + "970818": "PCN", + "970817": "PCN", + "970816": "PCN", + "970815": "PCN", + "970814": "PCN", + "970813": "PCN", + "999ZJV": "PCN", + "999ZJW": "PCN", + "999ZJX": "PCN", + "999ZJZ": "PCN", + "999ZK0": "PCN", + "999ZKG": "PCN", + "999ZKH": "PCN", + "999ZKJ": "PCN", + "970804": "PCN", + "970802": "PCN", + "999ZJR": "PCN", + "999ZJT": "PCN", + "970787": "PCN", + "999ZG0": "PCN", + "970786": "PCN", + "999ZFZ": "PCN", + "970785": "PCN", + "999ZFX": "PCN", + "969886": "PCN", + "970784": "PCN", + "999ZFW": "PCN", + "970783": "PCN", + "999ZFV": "PCN", + "999ZFT": "PCN", + "970780": "PCN", + "999ZFR": "PCN", + "970779": "PCN", + "999ZFP": "PCN", + "966118": "PCN", + "969891": "PCN", + "970789": "PCN", + "970788": "PCN", + "968609": "PCN", + "968607": "PCN", + "968606": "PCN", + "968605": "PCN", + "968604": "PCN", + "999ZDX": "PCN", + "970778": "PCN", + "970775": "PCN", + "970774": "PCN", + "970773": "PCN", + "968588": "PCN", + "999ZDL": "PCN", + "968587": "PCN", + "968599": "PCN", + "999ZDK": "PCN", + "968598": "PCN", + "968596": "PCN", + "999ZDV": "PCN", + "999ZDT": "PCN", + "968593": "PCN", + "999ZDR": "PCN", + "968592": "PCN", + "999ZDP": "PCN", + "968591": "PCN", + "968603": "PCN", + "999ZDN": "PCN", + "968590": "PCN", + "968589": "PCN", + "968601": "PCN", + "999ZDM": "PCN", + "999ZCK": "PCN", + "999ZCJ": "PCN", + "968695": "PCN", + "966138": "PCN", + "966123": "PCN", + "966121": "PCN", + "966120": "PCN", + "966129": "PCN", + "999Z8A": "PCN", + "972315": "PCN", + "999Z89": "PCN", + "972302": "PCN", + "972314": "PCN", + "999Z87": "PCN", + "972301": "PCN", + "999Z86": "PCN", + "972300": "PCN", + "972312": "PCN", + "999Z8F": "PCN", + "972305": "PCN", + "972317": "PCN", + "999Z8D": "PCN", + "999Z84": "PCN", + "999Z83": "PCN", + "999Z82": "PCN", + "999Z6V": "PCN", + "999Z6T": "PCN", + "999Z6R": "PCN", + "999Z74": "PCN", + "999Z73": "PCN", + "999Z72": "PCN", + "999Z70": "PCN", + "999Z6Z": "PCN", + "999Z6X": "PCN", + "999Z69": "PCN", + "999Z68": "PCN", + "999Z67": "PCN", + "999Z66": "PCN", + "999Z65": "PCN", + "999Z64": "PCN", + "999Z63": "PCN", + "999Z5Z": "PCN", + "966033": "PCN", + "966032": "PCN", + "999ZC5": "PCN", + "966031": "PCN", + "999ZC4": "PCN", + "999ZC3": "PCN", + "966030": "PCN", + "999ZC2": "PCN", + "966029": "PCN", + "999ZC1": "PCN", + "966028": "PCN", + "966027": "PCN", + "966036": "PCN", + "966035": "PCN", + "966034": "PCN", + "966019": "PCN", + "999ZAC": "PCN", + "999ZAV": "PCN", + "966018": "PCN", + "999ZAA": "PCN", + "999ZA8": "PCN", + "966007": "PCN", + "966023": "PCN", + "966022": "PCN", + "999ZC0": "PCN", + "999ZAF": "PCN", + "999ZAZ": "PCN", + "966020": "PCN", + "999ZAD": "PCN", + "999ZAW": "PCN", + "966010": "PCN", + "969338": "PCN", + "966009": "PCN", + "969337": "PCN", + "969333": "PCN", + "966006": "PCN", + "966005": "PCN", + "966017": "PCN", + "966016": "PCN", + "969346": "PCN", + "966015": "PCN", + "966002": "PCN", + "966014": "PCN", + "969344": "PCN", + "966001": "PCN", + "966013": "PCN", + "966000": "PCN", + "969340": "PCN", + "966011": "PCN", + "969342": "PCN", + "972325": "PCN", + "999Z90": "PCN", + "972324": "PCN", + "999Z8Z": "PCN", + "972323": "PCN", + "999Z8W": "PCN", + "972332": "PCN", + "972331": "PCN", + "972330": "PCN", + "999Z97": "PCN", + "999Z96": "PCN", + "972328": "PCN", + "999Z94": "PCN", + "999Z93": "PCN", + "999Z92": "PCN", + "972326": "PCN", + "999Z91": "PCN", + "974108": "PCN", + "974106": "PCN", + "974092": "PCN", + "974102": "PCN", + "974088": "PCN", + "974100": "PCN", + "974087": "PCN", + "974085": "PCN", + "974097": "PCN", + "974096": "PCN", + "974095": "PCN", + "970023": "PCN", + "966208": "PCN", + "966213": "PCN", + "966211": "PCN", + "966209": "PCN", + "966212": "PCN", + "971085": "PCN", + "971101": "PCN", + "973936": "PCN", + "971075": "PCN", + "973937": "PCN", + "971074": "PCN", + "971073": "PCN", + "973934": "PCN", + "973932": "PCN", + "971071": "PCN", + "973930": "PCN", + "971084": "PCN", + "971083": "PCN", + "971081": "PCN", + "971080": "PCN", + "971092": "PCN", + "971079": "PCN", + "971078": "PCN", + "971090": "PCN", + "973939": "PCN", + "973940": "PCN", + "973923": "PCN", + "973925": "PCN", + "973921": "PCN", + "973920": "PCN", + "973918": "PCN", + "971063": "PCN", + "973919": "PCN", + "971067": "PCN", + "973927": "PCN", + "971066": "PCN", + "973928": "PCN", + "973926": "PCN", + "973914": "PCN", + "973912": "PCN", + "973913": "PCN", + "971061": "PCN", + "971060": "PCN", + "971058": "PCN", + "971056": "PCN", + "971055": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "840000", + "Adaptive Logic Modules (ALM)": "317000", + "Adaptive Logic Module (ALM) Registers": "1268000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "61.67 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "974115", + "Spec Code": "SRC7M", + "Ordering Code": "5SGXMA9K3H40I3N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99A1R7": "PCN", + "974111": "PCN", + "99A1PX": "PCN", + "99A1RC": "PCN", + "99A1PZ": "PCN", + "99A1RD": "PCN", + "99A1R0": "PCN", + "99A1R1": "PCN", + "99A1R3": "PCN", + "974115": "PCN", + "99A1R4": "PCN", + "974114": "PCN", + "99A1R5": "PCN", + "99A1R6": "PCN", + "99A1PL": "PCN", + "99A1PN": "PCN", + "99A1PP": "PCN", + "99A1PR": "PCN", + "99A1PT": "PCN", + "99A1R8": "PCN", + "99A1PV": "PCN", + "99A1R9": "PCN", + "99A1PW": "PCN", + "99A1RA": "PCN", + "99A1PC": "PCN", + "99A1PD": "PCN", + "968614": "PCN", + "99A1PF": "PCN", + "99A1PG": "PCN", + "968612": "PCN", + "99A1PH": "PCN", + "99A1PJ": "PCN", + "968611": "PCN", + "99A1PK": "PCN", + "99A1PA": "PCN", + "99A1P4": "PCN", + "99A1P5": "PCN", + "99A1P6": "PCN", + "99A1P7": "PCN", + "99A1P9": "PCN", + "971355": "PCN", + "971350": "PCN", + "971358": "PCN", + "969243": "PCN", + "969244": "PCN", + "969240": "PCN", + "969238": "PCN", + "966465": "PCN", + "966464": "PCN", + "966463": "PCN", + "966466": "PCN", + "970135": "PCN", + "99A1K5": "PCN", + "99A1K6": "PCN", + "99A1K7": "PCN", + "969065": "PCN", + "969064": "PCN", + "969063": "PCN", + "99A1JW": "PCN", + "969062": "PCN", + "99A1JX": "PCN", + "970139": "PCN", + "99A1JZ": "PCN", + "970138": "PCN", + "99A1K1": "PCN", + "970137": "PCN", + "99A1K2": "PCN", + "99A1K3": "PCN", + "966579": "PCN", + "966577": "PCN", + "966218": "PCN", + "966216": "PCN", + "966576": "PCN", + "969242": "PCN", + "971649": "PCN", + "971097": "PCN", + "971647": "PCN", + "971361": "PCN", + "966040": "PCN", + "966039": "PCN", + "966038": "PCN", + "973947": "PCN", + "971630": "PCN", + "973945": "PCN", + "973946": "PCN", + "971627": "PCN", + "973943": "PCN", + "971626": "PCN", + "973944": "PCN", + "973942": "PCN", + "972339": "PCN", + "99A1L2": "PCN", + "969349": "PCN", + "972338": "PCN", + "99A1L3": "PCN", + "969350": "PCN", + "972337": "PCN", + "99A1L4": "PCN", + "969347": "PCN", + "99A1L6": "PCN", + "969348": "PCN", + "972335": "PCN", + "972334": "PCN", + "973941": "PCN", + "99A1L7": "PCN", + "99A1KT": "PCN", + "99A1KV": "PCN", + "970827": "PCN", + "99A1KW": "PCN", + "970826": "PCN", + "99A1KX": "PCN", + "970825": "PCN", + "971632": "PCN", + "99A1KZ": "PCN", + "970824": "PCN", + "99A1L0": "PCN", + "972340": "PCN", + "99A1L1": "PCN", + "99A1KH": "PCN", + "99A1KJ": "PCN", + "99A1KK": "PCN", + "99A1KL": "PCN", + "99A1KM": "PCN", + "969067": "PCN", + "99A1KN": "PCN", + "969066": "PCN", + "99A1KP": "PCN", + "99A1K8": "PCN", + "971608": "PCN", + "99A1K9": "PCN", + "971607": "PCN", + "99A1KA": "PCN", + "99A1KD": "PCN", + "99A1KF": "PCN", + "99A1KG": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "952000", + "Adaptive Logic Modules (ALM)": "359200", + "Adaptive Logic Module (ALM) Registers": "1436800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "62.96 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "840", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "420", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1932", + "Additional Information": "View now", + "MM#": "974123", + "Spec Code": "SRC7V", + "Ordering Code": "5SGXMABN3F45I3N", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "968623": "PCN", + "968621": "PCN", + "968620": "PCN", + "968619": "PCN", + "968618": "PCN", + "968617": "PCN", + "99A1RM": "PCN", + "99A1RN": "PCN", + "974119": "PCN", + "974118": "PCN", + "974117": "PCN", + "99A1RG": "PCN", + "99A1RH": "PCN", + "99A1RJ": "PCN", + "968626": "PCN", + "99A1RK": "PCN", + "968625": "PCN", + "99A1RL": "PCN", + "968616": "PCN", + "968615": "PCN", + "969245": "PCN", + "99A1TT": "PCN", + "969249": "PCN", + "969247": "PCN", + "969246": "PCN", + "971459": "PCN", + "99A1TK": "PCN", + "971458": "PCN", + "99A1TM": "PCN", + "99A1TN": "PCN", + "971456": "PCN", + "99A1TP": "PCN", + "99A1TR": "PCN", + "99A1T9": "PCN", + "99A1TA": "PCN", + "99A1TC": "PCN", + "99A1TD": "PCN", + "99A1TF": "PCN", + "99A1TG": "PCN", + "99A1TH": "PCN", + "99A1TJ": "PCN", + "99A1T1": "PCN", + "99A1T2": "PCN", + "99A1T3": "PCN", + "99A1T4": "PCN", + "974123": "PCN", + "966472": "PCN", + "974122": "PCN", + "99A1T5": "PCN", + "966471": "PCN", + "974121": "PCN", + "99A1T6": "PCN", + "974120": "PCN", + "99A1T8": "PCN", + "99A1RP": "PCN", + "99A1RR": "PCN", + "99A1RT": "PCN", + "966470": "PCN", + "99A1RW": "PCN", + "966469": "PCN", + "99A1RX": "PCN", + "99A1RZ": "PCN", + "99A1T0": "PCN", + "966586": "PCN", + "970142": "PCN", + "970141": "PCN", + "970140": "PCN", + "969074": "PCN", + "969073": "PCN", + "972038": "PCN", + "966581": "PCN", + "966580": "PCN", + "966223": "PCN", + "966222": "PCN", + "966585": "PCN", + "966220": "PCN", + "966219": "PCN", + "966045": "PCN", + "99A1MG": "PCN", + "966044": "PCN", + "99A1MH": "PCN", + "966043": "PCN", + "971651": "PCN", + "99A1MJ": "PCN", + "966042": "PCN", + "973954": "PCN", + "973955": "PCN", + "973951": "PCN", + "966041": "PCN", + "99A1M5": "PCN", + "99A1ML": "PCN", + "99A1M6": "PCN", + "99A1MM": "PCN", + "99A1M7": "PCN", + "99A1MN": "PCN", + "99A1M8": "PCN", + "99A1MR": "PCN", + "99A1M9": "PCN", + "99A1MC": "PCN", + "966047": "PCN", + "971654": "PCN", + "99A1MD": "PCN", + "99A1MF": "PCN", + "973949": "PCN", + "99A1LX": "PCN", + "973950": "PCN", + "99A1M0": "PCN", + "99A1M1": "PCN", + "969355": "PCN", + "99A1M2": "PCN", + "971640": "PCN", + "99A1M3": "PCN", + "99A1M4": "PCN", + "99A1MK": "PCN", + "99A1LL": "PCN", + "99A1LN": "PCN", + "99A1LP": "PCN", + "99A1LR": "PCN", + "971641": "PCN", + "99A1LT": "PCN", + "99A1LV": "PCN", + "973952": "PCN", + "99A1LW": "PCN", + "969353": "PCN", + "99A1LK": "PCN", + "972345": "PCN", + "972344": "PCN", + "99A1L8": "PCN", + "970828": "PCN", + "99A1L9": "PCN", + "99A1LA": "PCN", + "969357": "PCN", + "972343": "PCN", + "99A1LC": "PCN", + "99A1LD": "PCN", + "969352": "PCN", + "972341": "PCN", + "99A1LF": "PCN", + "969351": "PCN", + "99A1LG": "PCN", + "969070": "PCN", + "970146": "PCN", + "970145": "PCN", + "969068": "PCN", + "972035": "PCN", + "970144": "PCN", + "970143": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "490000", + "Adaptive Logic Modules (ALM)": "185000", + "Adaptive Logic Module (ALM) Registers": "740000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "46.65 Mb", + "Digital Signal Processing (DSP) Blocks": "399", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "600", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "300", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "66", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1760", + "Additional Information": "View now", + "MM#": "974130", + "Spec Code": "SRC82", + "Ordering Code": "5SGXMB5R3F40C3N", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "968633": "PCN", + "968632": "PCN", + "968631": "PCN", + "968630": "PCN", + "968629": "PCN", + "968628": "PCN", + "999Z2M": "PCN", + "974130": "PCN", + "999Z2L": "PCN", + "974129": "PCN", + "974128": "PCN", + "968627": "PCN", + "999ZG1": "PCN", + "999ZF1": "PCN", + "999Z28": "PCN", + "999Z27": "PCN", + "999Z25": "PCN", + "999Z24": "PCN", + "999Z12": "PCN", + "999Z11": "PCN", + "970491": "PCN", + "970490": "PCN", + "970489": "PCN", + "970488": "PCN", + "970487": "PCN", + "999Z16": "PCN", + "970486": "PCN", + "970485": "PCN", + "970484": "PCN", + "999ZCR": "PCN", + "999ZMH": "PCN", + "999ZCP": "PCN", + "999ZMJ": "PCN", + "999ZCM": "PCN", + "999ZMK": "PCN", + "999ZCL": "PCN", + "999ZMN": "PCN", + "999ZMA": "PCN", + "999ZMC": "PCN", + "999ZMD": "PCN", + "999ZMF": "PCN", + "999ZCT": "PCN", + "972234": "PCN", + "971511": "PCN", + "972243": "PCN", + "971510": "PCN", + "972242": "PCN", + "971509": "PCN", + "971508": "PCN", + "971507": "PCN", + "969254": "PCN", + "969251": "PCN", + "972239": "PCN", + "971462": "PCN", + "971461": "PCN", + "971460": "PCN", + "971506": "PCN", + "999ZTC": "PCN", + "999ZTF": "PCN", + "999ZTG": "PCN", + "972224": "PCN", + "999ZTH": "PCN", + "999ZTA": "PCN", + "971464": "PCN", + "971463": "PCN", + "966477": "PCN", + "999ZGJ": "PCN", + "966476": "PCN", + "974126": "PCN", + "999ZGH": "PCN", + "966475": "PCN", + "974125": "PCN", + "999ZGG": "PCN", + "966474": "PCN", + "974124": "PCN", + "999ZGD": "PCN", + "966473": "PCN", + "966590": "PCN", + "966589": "PCN", + "966588": "PCN", + "966587": "PCN", + "969077": "PCN", + "969076": "PCN", + "972042": "PCN", + "966228": "PCN", + "966227": "PCN", + "966226": "PCN", + "966225": "PCN", + "966224": "PCN", + "969256": "PCN", + "969253": "PCN", + "999ZGM": "PCN", + "999ZGN": "PCN", + "973960": "PCN", + "973958": "PCN", + "973956": "PCN", + "973957": "PCN", + "966050": "PCN", + "971657": "PCN", + "966049": "PCN", + "966048": "PCN", + "973959": "PCN", + "969359": "PCN", + "969358": "PCN", + "969356": "PCN", + "970831": "PCN", + "969362": "PCN", + "972349": "PCN", + "972348": "PCN", + "972347": "PCN", + "999Z9L": "PCN", + "999ZKX": "PCN", + "999ZK5": "PCN", + "999ZK6": "PCN", + "999ZK7": "PCN", + "999ZK8": "PCN", + "972352": "PCN", + "999Z9C": "PCN", + "999ZKA": "PCN", + "969082": "PCN", + "999Z99": "PCN", + "969084": "PCN", + "999Z98": "PCN", + "969080": "PCN", + "969081": "PCN", + "999ZK2": "PCN", + "969078": "PCN", + "969086": "PCN", + "969087": "PCN", + "969083": "PCN", + "999Z9K": "PCN", + "999Z9J": "PCN", + "999Z9H": "PCN", + "999Z9G": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "597000", + "Adaptive Logic Modules (ALM)": "225400", + "Adaptive Logic Module (ALM) Registers": "901600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "58.88 Mb", + "Digital Signal Processing (DSP) Blocks": "399", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "600", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "300", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "66", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1517, F1760", + "Additional Information": "View now", + "MM#": "974135", + "Spec Code": "SRC87", + "Ordering Code": "5SGXMB6R2F43C3N", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "968634": "PCN", + "999Z2A": "PCN", + "974131": "PCN", + "968637": "PCN", + "999Z2F": "PCN", + "968636": "PCN", + "999Z2D": "PCN", + "999ZF5": "PCN", + "999ZF4": "PCN", + "999ZFG": "PCN", + "970492": "PCN", + "970497": "PCN", + "970496": "PCN", + "970495": "PCN", + "970493": "PCN", + "999ZF6": "PCN", + "999ZNA": "PCN", + "999ZNC": "PCN", + "999ZND": "PCN", + "999ZNG": "PCN", + "999ZNH": "PCN", + "999ZMW": "PCN", + "999ZMX": "PCN", + "966054": "PCN", + "966053": "PCN", + "966052": "PCN", + "971664": "PCN", + "971663": "PCN", + "999ZMP": "PCN", + "971662": "PCN", + "973968": "PCN", + "999ZMR": "PCN", + "971661": "PCN", + "973966": "PCN", + "966056": "PCN", + "966055": "PCN", + "999ZMZ": "PCN", + "971513": "PCN", + "972246": "PCN", + "971512": "PCN", + "972244": "PCN", + "971520": "PCN", + "971519": "PCN", + "971518": "PCN", + "971517": "PCN", + "971516": "PCN", + "972249": "PCN", + "971515": "PCN", + "972248": "PCN", + "971514": "PCN", + "999ZTM": "PCN", + "999ZTN": "PCN", + "999ZTP": "PCN", + "999ZTW": "PCN", + "999ZTX": "PCN", + "999ZV0": "PCN", + "999ZTL": "PCN", + "966483": "PCN", + "966482": "PCN", + "966481": "PCN", + "999Z39": "PCN", + "999Z38": "PCN", + "999Z3C": "PCN", + "968643": "PCN", + "968642": "PCN", + "999Z2W": "PCN", + "968641": "PCN", + "968640": "PCN", + "974135": "PCN", + "968639": "PCN", + "974134": "PCN", + "968638": "PCN", + "974133": "PCN", + "999Z37": "PCN", + "999Z36": "PCN", + "999Z3F": "PCN", + "966478": "PCN", + "968645": "PCN", + "999Z3D": "PCN", + "966592": "PCN", + "966595": "PCN", + "966594": "PCN", + "966593": "PCN", + "966233": "PCN", + "966232": "PCN", + "966231": "PCN", + "971524": "PCN", + "971522": "PCN", + "971521": "PCN", + "969260": "PCN", + "969258": "PCN", + "969257": "PCN", + "969259": "PCN", + "969255": "PCN", + "971660": "PCN", + "973965": "PCN", + "971659": "PCN", + "971658": "PCN", + "973963": "PCN", + "973964": "PCN", + "973961": "PCN", + "999ZLL": "PCN", + "999ZL6": "PCN", + "972358": "PCN", + "970833": "PCN", + "972355": "PCN", + "999ZA5": "PCN", + "970832": "PCN", + "972354": "PCN", + "999ZKZ": "PCN", + "969366": "PCN", + "969364": "PCN", + "969363": "PCN", + "999ZL1": "PCN", + "969365": "PCN", + "970834": "PCN", + "999ZL3": "PCN", + "999ZL5": "PCN", + "969096": "PCN", + "999Z9T": "PCN", + "969092": "PCN", + "999Z9R": "PCN", + "969091": "PCN", + "999ZKP": "PCN", + "969089": "PCN", + "969088": "PCN", + "969090": "PCN", + "999ZA2": "PCN", + "999ZKK": "PCN", + "999ZA1": "PCN", + "999ZKL": "PCN", + "999ZA0": "PCN", + "999ZKM": "PCN", + "999Z9Z": "PCN", + "969095": "PCN", + "972353": "PCN", + "969094": "PCN", + "999Z9V": "PCN", + "999ZKD": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "840000", + "Adaptive Logic Modules (ALM)": "317000", + "Adaptive Logic Module (ALM) Registers": "1268000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "61.67 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "600", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "300", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "66", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "974138", + "Spec Code": "SRC8A", + "Ordering Code": "5SGXMB9R3H43I3N", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "970502": "PCN", + "970501": "PCN", + "966598": "PCN", + "966597": "PCN", + "972573": "PCN", + "972572": "PCN", + "972571": "PCN", + "969150": "PCN", + "966235": "PCN", + "970500": "PCN", + "99A237": "PCN", + "966234": "PCN", + "969262": "PCN", + "971528": "PCN", + "99A1VD": "PCN", + "971527": "PCN", + "99A1N9": "PCN", + "99A1VG": "PCN", + "971526": "PCN", + "973970": "PCN", + "99A1NA": "PCN", + "973971": "PCN", + "99A1NC": "PCN", + "973969": "PCN", + "99A1ND": "PCN", + "973967": "PCN", + "966061": "PCN", + "969261": "PCN", + "99A1N0": "PCN", + "99A1V5": "PCN", + "966060": "PCN", + "972570": "PCN", + "99A1N1": "PCN", + "969263": "PCN", + "99A1N2": "PCN", + "99A1V7": "PCN", + "966059": "PCN", + "99A1N3": "PCN", + "99A1V8": "PCN", + "966058": "PCN", + "99A1N5": "PCN", + "99A1N6": "PCN", + "99A1V9": "PCN", + "99A1N7": "PCN", + "99A1VA": "PCN", + "99A1N8": "PCN", + "99A1VC": "PCN", + "99A1MZ": "PCN", + "99A1V0": "PCN", + "99A1V2": "PCN", + "99A1V3": "PCN", + "99A1V4": "PCN", + "99A1TV": "PCN", + "99A1TW": "PCN", + "972251": "PCN", + "99A1TX": "PCN", + "972250": "PCN", + "99A1MT": "PCN", + "99A1TZ": "PCN", + "99A1MV": "PCN", + "99A1MW": "PCN", + "99A1MX": "PCN", + "970836": "PCN", + "970835": "PCN", + "966486": "PCN", + "971665": "PCN", + "974137": "PCN", + "974138": "PCN", + "968646": "PCN" + }, + { + "Product Collection": "Stratix® V GX FPGA", + "Status": "Launched", + "Launch Date": "2010", + "Lithography": "28 nm", + "Logic Elements (LE)": "952000", + "Adaptive Logic Modules (ALM)": "359200", + "Adaptive Logic Module (ALM) Registers": "1436800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "32", + "Maximum Embedded Memory": "62.96 Mb", + "Digital Signal Processing (DSP) Blocks": "352", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP)", + "Hard Memory Controllers": "No", + "External Memory Interfaces (EMIF)": "DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "600", + "I/O Standards Support": "3.0 V LVTTL, 1.2 V to 3.0 V LVCMOS, SSTL, HSTL, HSUL, Differential SSTL, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL, BLVDS", + "Maximum LVDS Pairs": "300", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "66", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "14.1 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "974140", + "Spec Code": "SRC8C", + "Ordering Code": "5SGXMBBR2H43I2LN", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "970503": "PCN", + "972576": "PCN", + "972575": "PCN", + "969154": "PCN", + "969155": "PCN", + "969152": "PCN", + "972579": "PCN", + "969153": "PCN", + "972577": "PCN", + "99A1NV": "PCN", + "99A1NX": "PCN", + "966066": "PCN", + "966065": "PCN", + "966064": "PCN", + "966063": "PCN", + "966062": "PCN", + "99A1NJ": "PCN", + "99A1P1": "PCN", + "99A1VN": "PCN", + "99A1W4": "PCN", + "99A1NK": "PCN", + "99A1P2": "PCN", + "99A1VP": "PCN", + "99A1W5": "PCN", + "99A1NL": "PCN", + "99A1P3": "PCN", + "99A1VR": "PCN", + "99A1NM": "PCN", + "99A1VT": "PCN", + "99A1W6": "PCN", + "99A1NN": "PCN", + "99A1VW": "PCN", + "99A1NP": "PCN", + "99A1VX": "PCN", + "99A1NR": "PCN", + "99A1NT": "PCN", + "973972": "PCN", + "99A1VZ": "PCN", + "972252": "PCN", + "99A1VH": "PCN", + "99A1W0": "PCN", + "99A1VJ": "PCN", + "99A1W1": "PCN", + "99A1NF": "PCN", + "99A1VK": "PCN", + "99A1W2": "PCN", + "99A1NZ": "PCN", + "99A1VL": "PCN", + "99A1NH": "PCN", + "99A1P0": "PCN", + "99A1VM": "PCN", + "99A1W3": "PCN", + "973974": "PCN", + "969371": "PCN", + "969372": "PCN", + "969370": "PCN", + "969368": "PCN", + "969367": "PCN", + "973977": "PCN", + "971530": "PCN", + "971529": "PCN", + "99A1HF": "PCN", + "969369": "PCN", + "970839": "PCN", + "970838": "PCN", + "966488": "PCN", + "966487": "PCN", + "974140": "PCN", + "974139": "PCN", + "968649": "PCN", + "968648": "PCN", + "968647": "PCN" + }, + { + "Product Collection": "Intel® FPGA Hardware Development Tools", + "Status": "Launched", + "Launch Date": "2017", + "Latest Version": "22.2", + "Latest Release Date": "June, 2022", + "Supported Devices": "Intel Agilex Series, Stratix 10, Arria 10, Cyclone 10 GX, Cyclone V devices", + "Licensing": "Free with purchase of Intel® Quartus® Prime Software", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Red Hat* Enterprise Linux* 7,CentOS* 7.5 ,SUSE* SLE 12", + "Description": "This tool takes in untimed C++ as input and generates production-quality register transfer level (RTL) code that is optimized for Intel® FPGAs. It accelerates verification time over RTL by raising the abstraction level for FPGA hardware design.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Hardware Development Tools", + "Status": "Launched", + "Launch Date": "2017", + "Latest Version": "21.1", + "Latest Release Date": "November, 2021", + "Supported Devices": "Arria 10, MAX 10, Stratix V, Arria V, Cyclone V devices", + "Licensing": "Free with purchase of Intel® Quartus® Prime Software", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Red Hat* Enterprise Linux* 7,CentOS* 7.5 ,SUSE* SLE 12", + "Description": "This tool takes in untimed C++ as input and generates production-quality register transfer level (RTL) code that is optimized for Intel® FPGAs. This tool accelerates verification time over RTL by raising the abstraction level for FPGA hardware design.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Hardware Development Tools", + "Status": "Launched", + "Launch Date": "2015", + "Latest Version": "21.1", + "Latest Release Date": "November, 2021", + "Supported Devices": "Cyclone 10 LP, MAX 10, Cyclone V, MAX V, Cyclone IV, Arria II, MAX II devices", + "Licensing": "Free, Need License", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Windows Server* 2019 Enterprise,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,CentOS* 7.5 ,CentOS* 8.0,SUSE* SLE 12,SUSE* SLE 15,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS,Ubuntu* 20 LTS", + "Description": "The Intel® Quartus® Prime Lite Edition software provides an ideal entry point to high-volume device families and is available as a free download with no license file required.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Hardware Development Tools", + "Status": "Launched", + "Launch Date": "2015", + "Latest Version": "22.2", + "Latest Release Date": "June, 2022", + "Supported Devices": "Intel Agilex Series, Stratix 10, Arria 10, Cyclone 10 GX devices", + "Licensing": "Single ordering part number and price", + "Included Items": "Intel® Quartus® Prime Pro Edition, Questa*-Intel® FPGA Edition, Intel® High Level Synthesis Compiler", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Windows Server* 2019 Enterprise,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,CentOS* 7.5 ,CentOS* 8.0,SUSE* SLE 12,SUSE* SLE 15,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS,Ubuntu* 20 LTS", + "Description": "The Intel® Quartus® Prime Pro Edition Software is optimized to support the advanced features in next-generation FPGAs and SoCs with the Intel® Agilex™, Intel® Stratix® 10, Intel® Arria® 10, and Intel® Cyclone® 10 GX device families.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Hardware Development Tools", + "Status": "Launched", + "Launch Date": "2015", + "Latest Version": "21.1", + "Latest Release Date": "November, 2021", + "Supported Devices": "Arria 10, Cyclone 10 LP, Stratix V, Arria V, Cyclone V, Stratix IV, Cyclone IV, Arria II, MAX Series devices", + "Licensing": "Single ordering part number will give you both Standard edition and Pro edition", + "Included Items": "Intel® Quartus® Prime Standard Edition, Questa*-Intel® FPGA Edition, Intel® High Level Synthesis Compiler", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Windows Server* 2019 Enterprise,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,CentOS* 7.5 ,CentOS* 8.0,SUSE* SLE 12,SUSE* SLE 15,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS,Ubuntu* 20 LTS", + "Description": "The Intel® Quartus® Prime Standard Edition Software includes extensive support for earlier device families in addition to the Intel® Cyclone® 10 LP device family.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Simulation Tools", + "Status": "Launched", + "Launch Date": "2014", + "Latest Version": "22.2", + "Latest Release Date": "June, 2022", + "Supported Devices": "Stratix 10, Arria 10, Cyclone 10 GX devices", + "Licensing": "Paid, Need License", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Windows Server* 2019 Enterprise,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,CentOS* 7.5 ,CentOS* 8.0,SUSE* SLE 12,SUSE* SLE 15,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS,Ubuntu* 20 LTS", + "Description": "DSP Builder for Intel® FPGAs is a digital signal processing (DSP) design tool that enables Hardware Description Language (HDL) generation of DSP algorithms directly from the MathWorks Simulink* environment onto Intel® FPGAs.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Simulation Tools", + "Status": "Launched", + "Launch Date": "2014", + "Latest Version": "21.1", + "Latest Release Date": "November, 2021", + "Supported Devices": "Arria 10, Max 10, Cyclone 10 LP, Stratix V, Cyclone V devices", + "Licensing": "Paid, Need License", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Windows Server* 2019 Enterprise,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,CentOS* 7.5 ,CentOS* 8.0,SUSE* SLE 12,SUSE* SLE 15,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS,Ubuntu* 20 LTS", + "Description": "DSP Builder for Intel® FPGAs is a digital signal processing (DSP) design tool that enables Hardware Description Language (HDL) generation of DSP algorithms directly from the MathWorks Simulink* environment onto Intel® FPGAs.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Simulation Tools", + "Status": "Launched", + "Launch Date": "2021", + "Latest Version": "22.2", + "Latest Release Date": "June, 2022", + "Supported Devices": "All Devices", + "Licensing": "Paid, Need License", + "Supported Operating Systems": "Windows* 10,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,SUSE* SLE 12", + "Description": "Questa*-Intel® FPGA Edition targets Intel® FPGAs devices for Verilog, VHDL, System C and Verilog / VHDL Mixed language simulation.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Simulation Tools", + "Status": "Launched", + "Launch Date": "2021", + "Latest Version": "22.1", + "Latest Release Date": "April, 2022", + "Supported Devices": "All Devices", + "Licensing": "Free, Need License", + "Supported Operating Systems": "Windows* 10,Red Hat* Enterprise Linux* 7,Red Hat* Enterprise Linux* 8,SUSE* SLE 12", + "Description": "Questa*-Intel® FPGA Starter Edition targets Intel® FPGAs devices for Verilog, VHDL, System C and Verilog / VHDL Mixed language simulation. Questa*-Intel® FPGA Starter Edition is 40% (on average) the performance of Questa*-Intel® FPGA Edition", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® FPGA Software Development Tools", + "Status": "Launched", + "Launch Date": "2015", + "Latest Version": "22.2", + "Latest Release Date": "June, 2022", + "Supported Devices": "Stratix 10, Arria 10 devices", + "Licensing": "Free, No License", + "Supported Operating Systems": "Windows* 10,Windows Server* 2012 Enterprise,Windows Server* 2016 Enterprise,Red Hat* Enterprise Linux* 7,CentOS* 7.5 ,SUSE* SLE 12,Ubuntu* 16.04 LTS,Ubuntu* 18.04 LTS", + "Description": "Intel® FPGA SDK for OpenCL™ software technology enables you to fully leverage the unique capabilities of FPGAs to deliver acceleration performance with power efficiency and low latency.", + "Product Brief": "View now", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "573480", + "Adaptive Logic Modules (ALM)": "194000", + "Adaptive Logic Module (ALM) Registers": "777600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "18", + "Maximum Embedded Memory": "62 Mb", + "Digital Signal Processing (DSP) Blocks": "1640", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "576", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "288", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99AX13", + "Spec Code": "SRLK3", + "Ordering Code": "AGFB006R24C3I3E", + "Stepping": "A0", + "US HTS": "8542390001" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "764640", + "Adaptive Logic Modules (ALM)": "259200", + "Adaptive Logic Module (ALM) Registers": "1036800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "18", + "Maximum Embedded Memory": "82 Mb", + "Digital Signal Processing (DSP) Blocks": "2296", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "576", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "288", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99AWTR", + "Spec Code": "SRLJ8", + "Ordering Code": "AGFB008R24C3I3E", + "Stepping": "A0", + "US HTS": "Varies By Product", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "99AWT1": "PCN", + "99AWT6": "PCN", + "99AWRM": "PCN", + "99AWRP": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2208075", + "Adaptive Logic Modules (ALM)": "748500", + "Adaptive Logic Module (ALM) Registers": "2994000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "235 Mb", + "Digital Signal Processing (DSP) Blocks": "6250", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "744", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "372", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99AX5C", + "Spec Code": "SRLMA", + "Ordering Code": "AGFB022R24C3E4X", + "Stepping": "A4", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AX5C": "PCN", + "99AX59": "PCN", + "99AX4W": "PCN", + "99AX5A": "PCN", + "99AX4X": "PCN", + "99AX4Z": "PCN", + "99AX50": "PCN", + "99AX4C": "PCN", + "99AX51": "PCN", + "99AX4D": "PCN", + "99AX52": "PCN", + "99AX4G": "PCN", + "99AX53": "PCN", + "99AX4H": "PCN", + "99AX55": "PCN", + "99AX4L": "PCN", + "99AX56": "PCN", + "99AX4M": "PCN", + "99AX57": "PCN", + "99AX58": "PCN", + "99AX44": "PCN", + "99AX45": "PCN", + "99AX46": "PCN", + "99AX47": "PCN", + "99AX48": "PCN", + "99AX49": "PCN", + "99AX4A": "PCN", + "99AX43": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2208075", + "Adaptive Logic Modules (ALM)": "748500", + "Adaptive Logic Module (ALM) Registers": "2994000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "235 Mb", + "Digital Signal Processing (DSP) Blocks": "6250", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "720", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "360", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "64", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "48", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R3184C", + "Additional Information": "View now", + "MM#": "99AW47", + "Spec Code": "SRLFJ", + "Ordering Code": "AGFB022R31C3E4X", + "Stepping": "A4", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AW1M": "PCN", + "99AW1P": "PCN", + "99AW1R": "PCN", + "99AW0N": "PCN", + "99AW1T": "PCN", + "99AW0P": "PCN", + "99AW1V": "PCN", + "99AW0R": "PCN", + "99AW1W": "PCN", + "99AW0T": "PCN", + "99AW1X": "PCN", + "99AW0V": "PCN", + "99AW26": "PCN", + "99AW10": "PCN", + "99AVZA": "PCN", + "99AW47": "PCN", + "99AW2A": "PCN", + "99AW2H": "PCN", + "99AW2X": "PCN", + "99AW33": "PCN", + "99AW34": "PCN", + "99AW35": "PCN", + "99AW36": "PCN", + "99AW3F": "PCN", + "99AW0W": "PCN", + "99AW28": "PCN", + "99AW0X": "PCN", + "99AW0Z": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2692760", + "Adaptive Logic Modules (ALM)": "912800", + "Adaptive Logic Module (ALM) Registers": "3651200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "287 Mb", + "Digital Signal Processing (DSP) Blocks": "8528", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "720", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "360", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "64", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "48", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R3184C", + "Additional Information": "View now", + "MM#": "99AX3A", + "Spec Code": "SRLKZ", + "Ordering Code": "AGFB027R31C3E4X", + "Stepping": "A5", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AX36": "PCN", + "99AX37": "PCN", + "99AX38": "PCN", + "99AX39": "PCN", + "99AX3A": "PCN", + "99AX2Z": "PCN", + "99AX30": "PCN", + "99AX31": "PCN", + "99AX32": "PCN", + "99AX33": "PCN", + "99AX34": "PCN", + "99AX35": "PCN", + "99AX2N": "PCN", + "99AX2P": "PCN", + "99AX2R": "PCN", + "99AX2T": "PCN", + "99AX2V": "PCN", + "99AX2W": "PCN", + "99AX2X": "PCN", + "99AX2G": "PCN", + "99AX2H": "PCN", + "99AX2J": "PCN", + "99AX2L": "PCN", + "99AX2M": "PCN", + "99AX2A": "PCN", + "99AX2C": "PCN", + "99AX2D": "PCN", + "99AX2F": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "1178525", + "Adaptive Logic Modules (ALM)": "399500", + "Adaptive Logic Module (ALM) Registers": "1598000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "163 Mb", + "Digital Signal Processing (DSP) Blocks": "3743", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "744", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "372", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99C244", + "Spec Code": "SRM6X", + "Ordering Code": "AGFA012R24C2E4F", + "Stepping": "B2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AZ37": "PCN", + "99AZ3C": "PCN", + "99AZ3D": "PCN", + "99AZ3H": "PCN", + "99C244": "PCN", + "99AZ35": "PCN", + "99AZ36": "PCN", + "99AZ2Z": "PCN", + "99AZ30": "PCN", + "99C242": "PCN", + "99AZ76": "PCN", + "99AZ7C": "PCN", + "99AZ7L": "PCN", + "99AZ7M": "PCN", + "99AZ6P": "PCN", + "99AZ6T": "PCN", + "99AZ6V": "PCN", + "99AZ6X": "PCN", + "99AZ6Z": "PCN", + "99AZ55": "PCN", + "99AZ61": "PCN", + "99AZ64": "PCN", + "99AZ5L": "PCN", + "99AZ67": "PCN", + "99AZ5M": "PCN", + "99AZ5N": "PCN", + "99AZ42": "PCN", + "99AZ5W": "PCN", + "99AZ5X": "PCN", + "99AZ53": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "1437240", + "Adaptive Logic Modules (ALM)": "487200", + "Adaptive Logic Module (ALM) Registers": "1948800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "190 Mb", + "Digital Signal Processing (DSP) Blocks": "4510", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "744", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "372", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99C243", + "Spec Code": "SRM6W", + "Ordering Code": "AGFB014R24C2E4F", + "Stepping": "B2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "Varies By Product", + "99AZ3J": "PCN", + "99AZ3K": "PCN", + "99AZ3L": "PCN", + "99AZ7P": "PCN", + "99AZ7R": "PCN", + "99AZ7T": "PCN", + "99C23X": "PCN", + "99C243": "PCN", + "99AZ74": "PCN", + "99AZ75": "PCN", + "99AZ7N": "PCN", + "99AZ72": "PCN", + "99AZ73": "PCN", + "99AZ69": "PCN", + "99AZ6A": "PCN", + "99AZ6M": "PCN", + "99AZ57": "PCN", + "99AZ5H": "PCN", + "99AZ65": "PCN", + "99AZ5K": "PCN", + "99AZ66": "PCN", + "99AZ68": "PCN", + "99AZ5P": "PCN", + "99AZ3M": "PCN", + "99AZ4N": "PCN", + "99AZ50": "PCN", + "99AZ51": "PCN", + "99AZ52": "PCN", + "99AZ5Z": "PCN", + "99AZ60": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "1918975", + "Adaptive Logic Modules (ALM)": "650500", + "Adaptive Logic Module (ALM) Registers": "2602000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "15", + "Maximum Embedded Memory": "204 Mb", + "Digital Signal Processing (DSP) Blocks": "1354", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "2", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "240", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2581A", + "Additional Information": "View now", + "MM#": "99ATW6", + "Spec Code": "SRLAN", + "Ordering Code": "AGFD019R25A1E1V", + "Stepping": "A0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99ATW4": "PCN", + "99ATTK": "PCN", + "99ATW6": "PCN", + "99ATVX": "PCN", + "99ATT8": "PCN", + "99ATW2": "PCN", + "99ATTA": "PCN", + "99ATRK": "PCN", + "99ATT2": "PCN", + "99ATRP": "PCN", + "99ATT6": "PCN", + "99ATVV": "PCN", + "99ATVJ": "PCN", + "99ATRW": "PCN", + "99ATRG": "PCN", + "99ATVP": "PCN", + "99ATRZ": "PCN", + "99ATT0": "PCN", + "99ATR3": "PCN", + "99ATR5": "PCN", + "99ATR7": "PCN", + "99ATVD": "PCN", + "99ATR9": "PCN", + "99ATCZ": "PCN", + "99ATD0": "PCN", + "99ATD1": "PCN", + "99ATDR": "PCN", + "99ATV8": "PCN", + "99ATD3": "PCN", + "99ATVA": "PCN", + "99ATTZ": "PCN", + "99ATV2": "PCN", + "99ATV3": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2308080", + "Adaptive Logic Modules (ALM)": "782400", + "Adaptive Logic Module (ALM) Registers": "3129600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "15", + "Maximum Embedded Memory": "246 Mb", + "Digital Signal Processing (DSP) Blocks": "1640", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "2", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "480", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "240", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2581A", + "Additional Information": "View now", + "MM#": "99C2KN", + "Spec Code": "SRM8E", + "Ordering Code": "AGFD023R25A2E2VFP", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99ATW5": "PCN", + "99ATTP": "PCN", + "99ATTR": "PCN", + "99ATTT": "PCN", + "99ATW8": "PCN", + "99ATVW": "PCN", + "99ATT9": "PCN", + "99ATRL": "PCN", + "99ATRM": "PCN", + "99ATT7": "PCN", + "99ATVR": "PCN", + "99ATRT": "PCN", + "99ATVT": "PCN", + "99ATRV": "PCN", + "99ATRA": "PCN", + "99ATRD": "PCN", + "99ATRJ": "PCN", + "99ATR6": "PCN", + "99C2KN": "PCN", + "99ATVH": "PCN", + "99ATZ1": "PCN", + "99ATV5": "PCN", + "99ATV6": "PCN", + "99ATDP": "PCN", + "99ATV7": "PCN", + "99ATFL": "PCN", + "99ATFM": "PCN", + "99ATVC": "PCN", + "99ATXZ": "PCN", + "99ATTX": "PCN", + "99ATDC": "PCN", + "99ATDD": "PCN", + "99ATV4": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Logic Elements (LE)": "2208075", + "Adaptive Logic Modules (ALM)": "748500", + "Adaptive Logic Module (ALM) Registers": "2994000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "235 Mb", + "Digital Signal Processing (DSP) Blocks": "6250", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "624", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2581A", + "Additional Information": "View now", + "MM#": "99ANKJ", + "Spec Code": "SRL5L", + "Ordering Code": "AGFB022R25A2I3E", + "Stepping": "A2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AJTT": "PCN", + "99AJTZ": "PCN", + "99AJV0": "PCN", + "99ANK8": "PCN", + "99AJV1": "PCN", + "99AJV4": "PCN", + "99ANKD": "PCN", + "99ANK4": "PCN", + "99ANK5": "PCN", + "99AJRX": "PCN", + "99AJTD": "PCN", + "99AJTG": "PCN", + "99AJTJ": "PCN", + "99AJTK": "PCN", + "99AJRR": "PCN", + "99AJRT": "PCN", + "99AJRV": "PCN", + "99AJRW": "PCN", + "99ANK2": "PCN", + "99ANK3": "PCN", + "99AJRM": "PCN", + "99AJRN": "PCN", + "99ANKF": "PCN", + "99ANKG": "PCN", + "99ANKH": "PCN", + "99ANKJ": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2692760", + "Adaptive Logic Modules (ALM)": "912800", + "Adaptive Logic Module (ALM) Registers": "3651200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "287 Mb", + "Digital Signal Processing (DSP) Blocks": "8528", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "744", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "372", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "32 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "58 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2340A", + "Additional Information": "View now", + "MM#": "99AX6D", + "Spec Code": "SRLN4", + "Ordering Code": "AGFB027R24C3E3V", + "Stepping": "A4", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AX65": "PCN", + "99AX66": "PCN", + "99AX67": "PCN", + "99AX69": "PCN", + "99AX6A": "PCN", + "99AX5Z": "PCN", + "99AX6C": "PCN", + "99AX60": "PCN", + "99AX6D": "PCN", + "99AX61": "PCN", + "99AX62": "PCN", + "99AX63": "PCN", + "99AX64": "PCN", + "99AX5L": "PCN", + "99AX5M": "PCN", + "99AX5N": "PCN", + "99AX5P": "PCN", + "99AX5R": "PCN", + "99AX5V": "PCN", + "99AX68": "PCN", + "99AX5D": "PCN", + "99AX5F": "PCN", + "99AX5G": "PCN", + "99AX5H": "PCN", + "99AX5J": "PCN", + "99AX5K": "PCN", + "99AX4V": "PCN", + "99AX4T": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "1437240", + "Adaptive Logic Modules (ALM)": "487200", + "Adaptive Logic Module (ALM) Registers": "1948800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "190 Mb", + "Digital Signal Processing (DSP) Blocks": "4510", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "768", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "384", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "16", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "8", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2486A", + "Additional Information": "View now", + "MM#": "99AKLX", + "Spec Code": "SRL0F", + "Ordering Code": "AGFB014R24B2I3E", + "Stepping": "B2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AH11": "PCN\n |\n MDDS", + "99AH24": "PCN\n |\n MDDS", + "99AH27": "PCN\n |\n MDDS", + "99AKLN": "PCN\n |\n MDDS", + "99AKLP": "PCN", + "99AKLR": "PCN\n |\n MDDS", + "99AKLX": "PCN", + "99AH5G": "PCN\n |\n MDDS", + "99AH5J": "PCN\n |\n MDDS", + "99AKLM": "PCN", + "99AH5A": "PCN\n |\n MDDS", + "99AKLK": "PCN", + "99AH5F": "PCN\n |\n MDDS", + "99AH3H": "PCN\n |\n MDDS", + "99AH3J": "PCN\n |\n MDDS", + "99AH3K": "PCN\n |\n MDDS", + "99AH3L": "PCN\n |\n MDDS", + "99AH50": "PCN\n |\n MDDS", + "99AH51": "PCN\n |\n MDDS", + "99AH52": "PCN", + "99AH38": "PCN\n |\n MDDS", + "99AH3A": "PCN\n |\n MDDS", + "99AH3C": "PCN\n |\n MDDS", + "99AH3D": "PCN\n |\n MDDS", + "99AH3F": "PCN\n |\n MDDS", + "99AH3G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "1178525", + "Adaptive Logic Modules (ALM)": "399500", + "Adaptive Logic Module (ALM) Registers": "1598000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "163 Mb", + "Digital Signal Processing (DSP) Blocks": "3743", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "768", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "384", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "16", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "8", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2486A", + "Additional Information": "View now", + "MM#": "99AKLL", + "Spec Code": "SRL0A", + "Ordering Code": "AGFB012R24B2E4F", + "Stepping": "B2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99AH2C": "PCN", + "99AH2F": "PCN", + "99AH2J": "PCN", + "99AH2P": "PCN", + "99AH33": "PCN", + "99AH35": "PCN", + "99AH36": "PCN", + "99AH2A": "PCN", + "99AH0L": "PCN", + "99AH1F": "PCN", + "99AH25": "PCN", + "99AKLL": "PCN", + "99AH3V": "PCN", + "99AKLJ": "PCN", + "99AH4K": "PCN", + "99AH4W": "PCN", + "99AH4X": "PCN", + "99AH4Z": "PCN", + "99AH3M": "PCN", + "99AH3N": "PCN", + "99AH3P": "PCN", + "99AH3T": "PCN", + "99AH37": "PCN", + "99AH3W": "PCN", + "99AH3X": "PCN", + "99AH4J": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ F-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2692760", + "Adaptive Logic Modules (ALM)": "912800", + "Adaptive Logic Module (ALM) Registers": "3651200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "287 Mb", + "Digital Signal Processing (DSP) Blocks": "8528", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "624", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2581A", + "Additional Information": "View now", + "MM#": "99ANKK", + "Spec Code": "SRL5M", + "Ordering Code": "AGFB027R25A2I3E", + "Stepping": "A2", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99ANK6": "PCN", + "99ANK7": "PCN", + "99ANK9": "PCN", + "99ANKA": "PCN", + "99ANKC": "PCN", + "99A90D": "PCN\n |\n MDDS", + "99A905": "PCN\n |\n MDDS", + "99A906": "PCN\n |\n MDDS", + "99A907": "PCN\n |\n MDDS", + "99A908": "PCN\n |\n MDDS", + "99A909": "PCN\n |\n MDDS", + "99A90A": "PCN\n |\n MDDS", + "99A90C": "PCN\n |\n MDDS", + "99AKV0": "PCN\n |\n MDDS", + "99AKV1": "PCN\n |\n MDDS", + "99A903": "PCN\n |\n MDDS", + "99A904": "PCN\n |\n MDDS", + "99A8ZW": "PCN\n |\n MDDS", + "99A8ZX": "PCN\n |\n MDDS", + "99A8ZZ": "PCN\n |\n MDDS", + "99A900": "PCN\n |\n MDDS", + "99A901": "PCN\n |\n MDDS", + "99A902": "PCN\n |\n MDDS", + "99AK4W": "PCN\n |\n MDDS", + "99AK4X": "PCN\n |\n MDDS", + "99ANKK": "PCN" + }, + {}, + { + "Product Collection": "Intel® Agilex™ I-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2208075", + "Adaptive Logic Modules (ALM)": "748500", + "Adaptive Logic Module (ALM) Registers": "2994000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "235 Mb", + "Digital Signal Processing (DSP) Blocks": "6250", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "720", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "360", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "58 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "48", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "116 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R3184B", + "Additional Information": "View now", + "MM#": "99AX42", + "Spec Code": "SRLLD", + "Ordering Code": "AGIB022R31B2I3E", + "Stepping": "A5", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "99AX3P": "PCN", + "99AX3R": "PCN", + "99AX3X": "PCN", + "99AX3C": "PCN", + "99AX3D": "PCN", + "99AX3F": "PCN", + "99AX3G": "PCN", + "99AX3H": "PCN", + "99AX3J": "PCN", + "99AX3K": "PCN", + "99AX3Z": "PCN", + "99AX40": "PCN", + "99AX41": "PCN", + "99AX42": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ I-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "10 nm", + "Logic Elements (LE)": "4047400", + "Adaptive Logic Modules (ALM)": "1372000", + "Adaptive Logic Module (ALM) Registers": "5488000", + "Fabric and I/O Phase-Locked Loops (PLLs)": "18", + "Maximum Embedded Memory": "485 Mb", + "Digital Signal Processing (DSP) Blocks": "12792", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "4", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "576", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "288", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "120", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "58 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "96", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "116 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R3948A", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® Agilex™ I-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2692760", + "Adaptive Logic Modules (ALM)": "912800", + "Adaptive Logic Module (ALM) Registers": "3651200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "287 Mb", + "Digital Signal Processing (DSP) Blocks": "8528", + "Digital Signal Processing (DSP) Format": "Fixed Point (hard IP), Floating Point (hard IP), Multiply, Multiply and Accumulate, Variable Precision", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "720", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "360", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "58 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "48", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "116 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen4, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R3184B", + "Additional Information": "View now", + "MM#": "99C45Z", + "Spec Code": "SRMAM", + "Ordering Code": "AGIB027R31B1E1VAA", + "Stepping": "A5", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "99AW0K": "PCN", + "99AW0L": "PCN", + "99AW0M": "PCN", + "99C45Z": "PCN", + "99AW0C": "PCN", + "99AW0D": "PCN", + "99AW0F": "PCN", + "99AW0G": "PCN", + "99AW0H": "PCN", + "99AW0J": "PCN", + "99AVZH": "PCN", + "99AVZX": "PCN", + "99AW08": "PCN", + "99AW09": "PCN", + "99AW0A": "PCN" + }, + { + "Product Collection": "Intel® Agilex™ I-Series FPGAs and SoC FPGAs", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "10 nm", + "Logic Elements (LE)": "2692760", + "Adaptive Logic Modules (ALM)": "912800", + "Adaptive Logic Module (ALM) Registers": "3651200", + "Fabric and I/O Phase-Locked Loops (PLLs)": "28", + "Maximum Embedded Memory": "287 Mb", + "Digital Signal Processing (DSP) Blocks": "8528", + "Digital Signal Processing (DSP) Format": "Multiply, Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64 bit Arm* Cortex*-A53", + "Hard Crypto Blocks": "0", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, QDR IV", + "Maximum User I/O Count†": "720", + "I/O Standards Support": "1.2 V LVCMOS, 1.8 V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, True Differential Signaling", + "Maximum LVDS Pairs": "360", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "16", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "58 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "116 Gbps", + "Transceiver Protocol Hard IP": "CXL, PCIe Gen4, PCIe Gen5, 10/25/50/100/200/400G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "R2957A", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® Agilex™ Development Kits", + "Status": "Launched", + "Launch Date": "Q2'20", + "Featured FPGA": "Intel® Agilex® F-Series FPGA", + "Logic Elements (LE)": "1437240", + "On-chip Memory": "139 Mb", + "DSP Blocks": "4510", + "FPGA Package": "R24", + "Board Type": "PCIe", + "Interfaces": "PCIe, QSFPDD, USB, USB, JTAG", + "Expansion": "DIMM", + "Memory": "DDR4", + "Special Feature": "HPS, Boot Flash", + "Versions": "Production", + "Description": "Delivers a complete design environment that includes all the hardware and software within a PCI Express * (PCIe*) form factor.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Agilex™ Development Kits", + "Status": "Launched", + "Launch Date": "Q2'20", + "Featured FPGA": "Intel® Agilex® F-Series FPGA", + "Logic Elements (LE)": "1437240", + "On-chip Memory": "139 Mb", + "DSP Blocks": "4510", + "FPGA Package": "R24", + "Board Type": "Signal Integrity", + "Interfaces": "PCIe, QSFP-28, QSFP-DD, SMA, GPIO, ENET, USB, JTAG", + "Expansion": "HPS IO48, SODIMM", + "Memory": "DDR4", + "Special Feature": "HPS, Boot Flash", + "Versions": "Production", + "Description": "Offers a complete design environment that includes hardware and software for developing Intel Agilex F-Series FPGA designs. This kit is recommended for developing custom Arm* processor-based SoC designs and evaluating transceiver performance.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2019", + "Featured FPGA": "Intel® Stratix® 10 DX FPGA", + "Logic Elements (LE)": "2753000", + "On-chip Memory": "229 Mb", + "DSP Blocks": "5760", + "FPGA Package": "F2597", + "Board Type": "PCIe", + "Interfaces": "PCIe, UPI, JTAG, USB", + "Expansion": "DIMM, SlimSAS", + "Memory": "DDR4, DDR-T", + "Versions": "Production", + "Description": "Delivers a design environment that includes all the hardware and software within a PCIe* form factor. It enables you to develop and test your PCIe designs with Intel Stratix 10 DX FPGAs, which feature transceiver technology for PCIe Gen4 support.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Stratix® 10 GX FPGA", + "Logic Elements (LE)": "2753000", + "On-chip Memory": "229 Mb", + "DSP Blocks": "5760", + "FPGA Package": "F2397", + "Board Type": "PCIe", + "Interfaces": "PCIe EP, JTAG, USB", + "Expansion": "FMC, HiLo", + "Memory": "DDR4", + "Versions": "Production L-Tile and Production H-Tile", + "Description": "Delivers a complete design environment that includes all hardware and software you need to start taking advantage of the performance and capabilities available in Intel Stratix 10 GX FPGAs for your design needs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Stratix® 10 GX FPGA", + "Logic Elements (LE)": "2753000", + "On-chip Memory": "229 Mb", + "DSP Blocks": "5760", + "FPGA Package": "F2397", + "Board Type": "Signal Integrity", + "Interfaces": "FMC+, CFP4, SFP+, SGMII, MXP, SMA, JTAG, USB", + "Expansion": "FMC+", + "Memory": "DDR4", + "Special Feature": "LCD", + "Versions": "Production L-Tile and Production H-Tile", + "Description": "Delivers a design environment that includes all the hardware and software within a PCIe* form factor. It enables you to develop and test your PCIe designs with Intel® Stratix® 10 DX FPGAs, which feature transceiver technology for PCIe Gen4 support.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2017", + "Featured FPGA": "Intel® Stratix® 10 MX FPGA", + "Logic Elements (LE)": "2073000", + "On-chip Memory": "134 Mb", + "DSP Blocks": "3960", + "FPGA Package": "F2597", + "Board Type": "PCIe", + "Interfaces": "PCIe, QSFP, JTAG, USB", + "Expansion": "DIMM, HiLo", + "Memory": "DDR4, DDR-T, QDRIV, HBM2", + "Versions": "Production", + "Description": "Includes all the hardware and software you need to start taking advantage of the performance and capabilities available in Intel Stratix 10 MX FPGAs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Stratix® 10 SX SoC FPGA", + "Logic Elements (LE)": "2753000", + "On-chip Memory": "229 Mb", + "DSP Blocks": "5760", + "FPGA Package": "F2397", + "Board Type": "SoC", + "Interfaces": "PCIe, ZQSFP, HDMI, SDI, MXP, SFP+, SGMII PHY, JTAG, USB", + "Expansion": "FMC+, HiLo, HPS IO48, SODIMM", + "Memory": "DDR4", + "Special Feature": "Boot Flash, HPS", + "Versions": "Production L-Tile and Production H-Tile", + "Description": "Offers a quick and simple approach for developing custom Arm* Development Studio for Intel® SoC FPGA processor-based SoC designs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2018", + "Featured FPGA": "Intel® Stratix® 10 TX FPGA", + "Logic Elements (LE)": "2753000", + "On-chip Memory": "229 Mb", + "DSP Blocks": "5760", + "FPGA Package": "F2912", + "Board Type": "Signal Integrity", + "Interfaces": "SGMII, SMA, MXP, QSFP-DD, MXP, JTAG, USB, Ethernet", + "Expansion": "FMC+", + "Memory": "DDR4", + "Versions": "Production", + "Description": "Offers a complete design environment that includes both hardware and software for developing Intel Stratix 10 TX FPGA designs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2010", + "Featured FPGA": "Intel® Stratix® V GS FPGA", + "Logic Elements (LE)": "457000", + "On-chip Memory": "39 Mb", + "DSP Blocks": "1590", + "FPGA Package": "F1517", + "Board Type": "PCIe", + "Interfaces": "PCIe, SDI, QSFP, SGMII, SMA, USB, JTAG", + "Expansion": "HSMC", + "Memory": "DDR3, QDRII+, RLDRAM II", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Provides a complete design environment that includes all the hardware and software you need to begin developing DSP-intensive FPGA designs immediately.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Stratix® Development Kits", + "Status": "Launched", + "Launch Date": "2010", + "Featured FPGA": "Intel® Stratix® V GX FPGA", + "Logic Elements (LE)": "622000", + "On-chip Memory": "57.65 Mb", + "DSP Blocks": "256", + "FPGA Package": "F1517", + "Board Type": "PCIe", + "Interfaces": "PCIe, SDI, QSFP, SGMII, SMA, USB, JTAG", + "Expansion": "HSMC", + "Memory": "DDR3, QDRII+, RLDRAMII", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Provides a complete design environment that includes all the hardware and software you need to begin developing FPGA designs immediately.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Arria® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Arria® 10 GX FPGA", + "Logic Elements (LE)": "1150000", + "On-chip Memory": "53 Mb", + "DSP Blocks": "1518", + "FPGA Package": "F1932", + "Board Type": "PCIe", + "Interfaces": "PCIe, SDI, QSFP, SFP+, USB", + "Expansion": "FMC", + "Memory": "DDR4, DDR3, RLDRAM3", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Delivers a complete design environment that includes all hardware and software you need to start taking advantage of the performance and capabilities available in Intel Arria 10 GX FPGAs for your design needs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Arria® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Arria® 10 GX FPGA", + "Logic Elements (LE)": "1150000", + "On-chip Memory": "53 Mb", + "DSP Blocks": "1518", + "FPGA Package": "F1932", + "Board Type": "Signal Integrity", + "Interfaces": "CFP2, QSFP+, SFP+, USB, JTAG, SMA", + "Memory": "DDR4", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Enables you thoroughly evaluate the signal integrity of Intel Arria 10 GX transceivers.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Arria® Development Kits", + "Status": "Launched", + "Launch Date": "2013", + "Featured FPGA": "Intel® Arria® 10 SX SoC FPGA", + "Logic Elements (LE)": "660000", + "On-chip Memory": "42 Mb", + "DSP Blocks": "1687", + "FPGA Package": "F1517", + "Board Type": "SoC", + "Interfaces": "USB, SDI, SPI, USB, OTG, PCIe, JTAG", + "Expansion": "FMC", + "Memory": "DDR4", + "Special Feature": "Boot Flash, HPS", + "Versions": "Production", + "Description": "Offers a quick and simple approach for developing custom Arm* Development Studio for Intel® SoC FPGA processor-based SoC designs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2009", + "Featured FPGA": "Cyclone® IV GX FPGA", + "Logic Elements (LE)": "150000", + "On-chip Memory": "6.48 Mb", + "DSP Blocks": "360", + "FPGA Package": "F484, F672, F896", + "Board Type": "PCIe", + "Interfaces": "USB-Blaster, PCIe, PHY, HSMC, SMA", + "Memory": "SSRAM, sync flash, DDR2 SDRAM", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "A complete design environment that includes both the hardware and software you need to develop Cyclone IV GX FPGA designs.", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2011", + "Featured FPGA": "Cyclone® V E FPGA", + "Logic Elements (LE)": "149500", + "On-chip Memory": "7.7 Mb", + "DSP Blocks": "156", + "FPGA Package": "M484, U484, F484, F672, F896", + "Board Type": "General Purpose", + "Interfaces": "USB, PHY, MAX V CPLD", + "Expansion": "JTAG", + "Memory": "DDR3,DDR2, LPDDR2, SSRAM, EEPROM", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Offers a comprehensive general purpose development platform for many markets and applications, including Industrial Networking, Military, and Medical applications.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2011", + "Featured FPGA": "Cyclone® V GT FPGA", + "Logic Elements (LE)": "301000", + "On-chip Memory": "13.92 Mb", + "DSP Blocks": "342", + "FPGA Package": "U484, F484, F672, F896, F1152", + "Board Type": "PCIe", + "Interfaces": "CDI, LVDS, USB", + "Memory": "DDR3, DDR3 sync flash", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "This can be used to prototype Cyclone V GT FPGA or Cyclone V GX FPGA applications. It offers a quick and simple way to develop low-cost and low-power FPGA system-level designs and achieve rapid results.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2012", + "Featured FPGA": "Cyclone® V SX SoC FPGA", + "Logic Elements (LE)": "110000", + "On-chip Memory": "5.44 Mb", + "DSP Blocks": "112", + "FPGA Package": "U672, F896", + "Board Type": "General Purpose", + "Interfaces": "SMA, PCIe, HSMC, SDI, USB", + "Memory": "DDR3,SPI", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "Offers a quick and simple approach to develop custom ARM* processor-based SoC designs accompanied by Intel's low-power, low-cost Cyclone V FPGA fabric.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2017", + "Featured FPGA": "Intel® Cyclone® 10 GX FPGA", + "Logic Elements (LE)": "220000", + "On-chip Memory": "11.46 Mb", + "DSP Blocks": "192", + "FPGA Package": "F780", + "Board Type": "PCIe", + "Interfaces": "PCIe, LVDS, USB, SFP+", + "Expansion": "FMC", + "Memory": "SDRAM, DDR3", + "Versions": "Production", + "Description": "The Intel Cyclone 10 GX FPGA Development Kit is an ideal starting point for applications, such as embedded vision, factory automation, or video connectivity evaluation or concept proving.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Cyclone® Development Kits", + "Status": "Launched", + "Launch Date": "2017", + "Featured FPGA": "Intel® Cyclone® 10 LP FPGA", + "Logic Elements (LE)": "24624", + "On-chip Memory": "594 Kb", + "DSP Blocks": "66", + "FPGA Package": "U256", + "Board Type": "General Purpose", + "Interfaces": "RGMII, MDC/MDIO, RJ45", + "Expansion": "Arduino UNO R3, PMOD", + "Memory": "HyperRAM", + "Versions": "Production", + "Description": "Provides an easy-to-use platform for evaluating Intel Cyclone 10 LP FPGA technology.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® MAX® Development Kits", + "Status": "Launched", + "Launch Date": "2014", + "Featured FPGA": "Intel® MAX® 10 FPGA 10M08", + "Logic Elements (LE)": "8000", + "On-chip Memory": "378 Kb", + "FPGA Package": "M153, U169, U324, E144", + "Board Type": "General Purpose", + "Interfaces": "Arduino UNO R3, JTAG, USB", + "Expansion": "Arduino UNO R3", + "Memory": "SRAM", + "Versions": "Production", + "Description": "An entry-level board for the evaluation of the Intel® MAX 10 FPGA technology.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® MAX® Development Kits", + "Status": "Launched", + "Launch Date": "2014", + "Featured FPGA": "Intel® MAX® 10 FPGA", + "Logic Elements (LE)": "50000", + "On-chip Memory": "1.6 Mb", + "FPGA Package": "E144", + "Board Type": "General Purpose", + "Interfaces": "GbE, USB, HMDI, GUI, SMA, JTAG, Ethernet", + "Expansion": "HSMC, PMOD", + "Memory": "QSPI", + "Versions": "Production", + "Description": "Provides a full featured design platform built around a 50K logic elements Intel MAX 10 FPGA, optimized for system level integration with on-die analog-to-digital converter (ADC), dual-configuration flash, and DDR3 memory interface support.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® MAX® Development Kits", + "Status": "Launched", + "Launch Date": "2014", + "Featured FPGA": "MAX® II CPLD", + "Logic Elements (LE)": "1270", + "On-chip Memory": "8 Kb", + "FPGA Package": "FBGA", + "Board Type": "PCIe", + "Interfaces": "SPI, MAC, USB, JTAG, PHY", + "Memory": "SRAM", + "Special Feature": "LCD", + "Versions": "Production", + "Description": "This is a prototyping and evaluation platform that provides designers with an easy way to assess the features of the MAX II device and to begin building custom solutions with the MAX II device.", + "Additional Information": "View now" + }, + { + "Product Collection": "Intel® MAX® Development Kits", + "Status": "Launched", + "Launch Date": "2010", + "Featured FPGA": "MAX® V CPLD", + "Logic Elements (LE)": "570", + "On-chip Memory": "8 Kb", + "FPGA Package": "T100, T144, M100, F256", + "Board Type": "General Purpose", + "Interfaces": "JTAG, USB", + "Expansion": "GPIO, Motor Control Header", + "Memory": "EEPROM", + "Versions": "Production", + "Description": "Provides a comprehensive, low-cost hardware platform to quickly begin developing low-cost, low-power CPLD designs.", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Cables and Adapters", + "Status": "Launched", + "Launch Date": "Q2'16", + "Host Interface": "USB 2.0", + "Active Serial": "Yes", + "Active Parallel": "Yes", + "JTAG": "Yes", + "Max JTAG Clock Speed": "24MHz", + "ROHS Compliant": "Yes", + "External Power Supply Required": "No", + "TTL Voltage Support": "5", + "LVTTL/LVCMOS Voltage Support": "3.3", + "Single-Ended Voltage Support": "1.5 - 3.3", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Cables and Adapters", + "Status": "Launched", + "Launch Date": "Q3'11", + "Host Interface": "USB", + "Active Serial": "Yes", + "Active Parallel": "Yes", + "JTAG": "Yes", + "Max JTAG Clock Speed": "6MHz", + "ROHS Compliant": "Yes", + "External Power Supply Required": "No", + "TTL Voltage Support": "5", + "LVTTL/LVCMOS Voltage Support": "3.3", + "Single-Ended Voltage Support": "1.8 - 3.3", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Cables and Adapters", + "Status": "Launched", + "Launch Date": "Q4'17", + "Host Interface": "Ethernet", + "Active Serial": "Yes", + "Active Parallel": "Yes", + "JTAG": "Yes", + "Max JTAG Clock Speed": "20MHz", + "ROHS Compliant": "Yes", + "External Power Supply Required": "Yes", + "LVTTL/LVCMOS Voltage Support": "3.3", + "Single-Ended Voltage Support": "1.2 - 3.3", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Cables and Adapters", + "Status": "Launched", + "Launch Date": "Q1'01", + "Host Interface": "Parallel Port", + "Active Serial": "Yes", + "Active Parallel": "Yes", + "JTAG": "Yes", + "Max JTAG Clock Speed": "6MHz", + "ROHS Compliant": "No", + "External Power Supply Required": "No", + "TTL Voltage Support": "5", + "LVTTL/LVCMOS Voltage Support": "3.3", + "Single-Ended Voltage Support": "1.5 - 3.3", + "Additional Information": "View now", + "User Guide": "View now" + }, + { + "Product Collection": "Intel® Ethernet Connection XL827 Series", + "Code Name": "Products formerly Parkvale", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "TDP": "2.6 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "See PCN 118541 for EOL timelines. The Intel XL827-AM device is a fully integrated single chip Ethernet transceiver that supports 10 GbE full-duplex transmission, over a variety of media including optics, passive copper cables and backplanes.", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10GbE", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, SGMII, XLAUI, KR2, CR2, CR4, CAUI, CPRI", + "Package Size": "14mm x 14mm" + }, + { + "Product Collection": "Intel® Ethernet Connection C827 Series", + "Code Name": "Products formerly Parkvale", + "Status": "Launched", + "Launch Date": "Q4'17", + "Expected Discontinuance": "1H'29", + "TDP": "2.6 W", + "Operating Temperature Range": "-40°C to 105°C", + "Operating Temperature (Maximum)": "105 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "The Intel C827-IM device is a fully integrated single chip Ethernet transceiver that supports 25 GbE full-duplex transmission, over a variety of media including optics, passive copper cables and backplanes.", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "25GbE", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, SGMII, XLAUI, KR2, CR2, CR4, CAUI, CPRI", + "Package Size": "14mm x 14mm", + "MM#": "954454", + "Spec Code": "SLM2S", + "Ordering Code": "EZC827IM", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "954454": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection C827 Series", + "Code Name": "Products formerly Parkvale", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "1H'29", + "TDP": "2.6 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "The Intel C827-AM device is a fully integrated single chip Ethernet transceiver that supports 25GbE full-duplex transmission, over a variety of media including optics, passive copper cables and backplanes.", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "25GbE", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, SGMII, XLAUI, KR2, CR2, CR4, CAUI, CPRI", + "Package Size": "14mm x 14mm", + "MM#": "954453", + "Spec Code": "SLM2R", + "Ordering Code": "EZC827AM", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "954453": "PCN", + "954452": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Network Connection I347 Series", + "Status": "Launched", + "Launch Date": "Q4'11", + "Expected Discontinuance": "PCN#118015 LOD Oct 31, 2021", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Quad Port PHY for use with Cave Creek", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE", + "System Interface Type": "SGMII", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "15mm x 15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "iWARP/RDMA": "No", + "MM#": "918169", + "Spec Code": "SLJGK", + "Ordering Code": "PCI347AT4", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "918169": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I350 Series", + "Code Name": "Products formerly Powerville", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "TDP": "2.8 W", + "Operating Temperature Range": "-10°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Description": "See PCN 118546 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T, SGMII, SERDES", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Intel® VT-c", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes" + }, + { + "Product Collection": "Intel® Ethernet Controller I350 Series", + "Code Name": "Products formerly Powerville", + "Status": "Launched", + "Launch Date": "Q2'11", + "Expected Discontinuance": "1H'29", + "TDP": "2.8 W", + "Operating Temperature Range": "-10°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T, SGMII, SERDES", + "Package Size": "17mm x 17mm", + "On-chip QoS and Traffic Management": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Intel® VT-c", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "MM#": "915809", + "Spec Code": "SLJ3R", + "Ordering Code": "NHI350AM2", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915801": "PCN\n |\n MDDS", + "915809": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I350 Series", + "Code Name": "Products formerly Powerville", + "Status": "Launched", + "Launch Date": "Q2'11", + "Expected Discontinuance": "1H'29", + "TDP": "4 W", + "Operating Temperature Range": "-10°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T, SGMII, SERDES", + "Package Size": "17mm x 17mm", + "On-chip QoS and Traffic Management": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "Intel® VT-c", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "Yes", + "MM#": "915808", + "Spec Code": "SLJ2Z", + "Ordering Code": "NHI350AM4", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915808": "PCN\n |\n MDDS", + "915799": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I225 Series", + "Code Name": "Products formerly Foxville", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "28 nm", + "TDP": "2 W", + "Supported Operating Systems": "Windows 10, Linux, Free BSD", + "Operating Temperature Range": "-40°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Use Conditions": "Industrial Commercial Temp, Industrial Extended Temp, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Embedded Broad Market Extended Temp, Server/Enterprise, Workstation", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "2.5GbE", + "System Interface Type": "PCIe 3.1", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "5G, x1", + "Interfaces Supported": "NBASE-T", + "Package Size": "7mm x 7mm", + "On-chip QoS and Traffic Management": "Yes", + "IEEE 1588": "Yes", + "MM#": "99A57T", + "Spec Code": "SLNNL", + "Ordering Code": "KTI225IT", + "Stepping": "B3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "99A57T": "PCN", + "99A57R": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Controller I225 Series", + "Code Name": "Products formerly Foxville", + "Status": "Launched", + "Launch Date": "Q4'19", + "TDP": "2 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Use Conditions": "Industrial Commercial Temp, Communications Commercial Temp, Embedded Broad Market Commercial Temp, Server/Enterprise, PC/Client/Tablet, Workstation", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "2.5GbE", + "System Interface Type": "PCIe", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "x1, G2", + "Interfaces Supported": "NBASE-T", + "Package Size": "7mm x 7mm", + "On-chip QoS and Traffic Management": "Yes", + "IEEE 1588": "Yes", + "MM#": "99A57P", + "Spec Code": "SLNNJ", + "Ordering Code": "KTI225LM", + "Stepping": "B3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "99A57P": "PCN", + "99A57N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I225 Series", + "Code Name": "Products formerly Foxville", + "Status": "Launched", + "Launch Date": "Q4'19", + "Expected Discontinuance": "1H'29", + "TDP": "1.95 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "2.5GbE", + "System Interface Type": "PCIe", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "x1, G2", + "Interfaces Supported": "NBASE-T", + "MM#": "99A3W6", + "Spec Code": "SLNMH", + "Ordering Code": "KTI225V", + "Stepping": "B3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "99A3W6": "PCN\n |\n MDDS", + "99A3W5": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Connection I219 Series", + "Code Name": "Products formerly Jacksonville", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "1H'30", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Low Power 1 Gigabit Ethernet PHY", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "936399", + "Spec Code": "SLKJ3", + "Ordering Code": "WGI219LM", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936399": "PCN\n |\n MDDS", + "936396": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection I219 Series", + "Code Name": "Products formerly Jacksonville", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "1H'30", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Low Power 1 Gigabit Ethernet PHY", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "MM#": "936401", + "Spec Code": "SLKJ5", + "Ordering Code": "WGI219V", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936401": "PCN\n |\n MDDS", + "936400": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection I218 Series", + "Code Name": "Products formerly Clarkville", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Low Power 1 Gigabit Ethernet PHY", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "926895", + "Spec Code": "SLJK3A", + "Ordering Code": "WGI218LM", + "Stepping": "B1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "926892": "PCN\n |\n MDDS", + "926895": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection I218 Series", + "Code Name": "Products formerly Clarkville", + "Status": "Launched", + "Launch Date": "Q2'13", + "Expected Discontinuance": "Q1'22", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Low Power 1 Gigabit Ethernet PHY", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "926894", + "Spec Code": "SLK3D", + "Ordering Code": "WGI218V", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "926894": "PCN\n |\n MDDS", + "926893": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection I217 Series", + "Code Name": "Products formerly Clarkville", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q1'26", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "100Base-T, 1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "924107", + "Spec Code": "SLJWF", + "Ordering Code": "WGI217LM", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924107": "PCN\n |\n MDDS", + "924105": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection I217 Series", + "Code Name": "Products formerly Clarkville", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q1'22", + "Lithography": "40 nm", + "TDP": "0.5 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "6mm x 6mm", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "927464", + "Spec Code": "SLJWH", + "Ordering Code": "WGI217V", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "924196": "PCN\n |\n MDDS", + "927464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I211 Series", + "Code Name": "Products formerly Pearsonville", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "April/22/2022; LSD: Oct/22/2022", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118543 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "2.5 GT/s, x1 Lane", + "Interfaces Supported": "100BASE-T, 1000BASE-T", + "Package Size": "9mm x 9mm", + "PCI-SIG* SR-IOV Capable": "No", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "RoCEv2/RDMA": "No", + "Intel® Data Direct I/O Technology": "No", + "Intelligent Offloads": "No", + "MM#": "925145", + "Spec Code": "SLJXZ", + "Ordering Code": "WGI211AT", + "Stepping": "A2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "925145": "PCN\n |\n MDDS", + "925144": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I210 Series", + "Code Name": "Products formerly Springville", + "Status": "Launched", + "Launch Date": "Q2'18", + "Expected Discontinuance": "1H'29", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Use Conditions": "Automotive", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "1GbE Controller supporting SerDes/SGMII for Automotive (<20 DPM). See the “Intel(r) Ethernet Controller I210 : Specification Update” for Top Marking information.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SGMII, SERDES", + "Package Size": "9mm x 9mm", + "IEEE 1588": "Yes", + "MM#": "958497", + "Spec Code": "SLM8V", + "Ordering Code": "WGI210CL", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "958496": "PCN\n |\n MDDS", + "958497": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I210 Series", + "Code Name": "Products formerly Springville", + "Status": "Launched", + "Launch Date": "Q4'14", + "Expected Discontinuance": "1H'29", + "Lithography": "40 nm", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Use Conditions": "Automotive", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Industrial Temperature 1GbE Controller supporting SerDes/SGMII. See the “Intel(r) Ethernet Controller I210 : Specification Update” for Top Marking information.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE SerDes/SGMII", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SGMII, SERDES", + "Package Size": "9mm x 9mm", + "IEEE 1588": "Yes", + "MM#": "937549", + "Spec Code": "SLKKM", + "Ordering Code": "WGI210CS", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "937549": "PCN\n |\n MDDS", + "937548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I210 Series", + "Code Name": "Products formerly Springville", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "1H'29", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "MM#": "925132", + "Spec Code": "SLJXR", + "Ordering Code": "WGI210AT", + "Stepping": "A2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "925132": "PCN\n |\n MDDS", + "925131": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I210 Series", + "Code Name": "Products formerly Springville", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "1H'29", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Datasheet": "View now", + "Description": "Industrial Temperature 1GbE Controller supporting SerDes/SGMII. See the “Intel(r) Ethernet Controller I210 : Specification Update” for Top Marking information.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE SerDes/SGMII", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SGMII, SERDES", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "MM#": "925143", + "Spec Code": "SLJXX", + "Ordering Code": "WGI210IS", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "925143": "PCN\n |\n MDDS", + "925142": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller I210 Series", + "Code Name": "Products formerly Springville", + "Status": "Launched", + "Launch Date": "Q4'12", + "Expected Discontinuance": "1H'29", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Datasheet": "View now", + "Description": "Industrial Temperature 1GbE Controller. See the “Intel(r) Ethernet Controller I210 : Specification Update” for Top Marking information.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "MM#": "925138", + "Spec Code": "SLJXT", + "Ordering Code": "WGI210IT", + "Stepping": "A2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "925138": "PCN\n |\n MDDS", + "925133": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82583 Gigabit Ethernet Controller", + "Code Name": "Products formerly Colleyville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "LOD 1/31/2021; LSD 7/31/2021", + "Lithography": "90 nm", + "TDP": "0.727 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 117375 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "903072", + "Spec Code": "SLGVD", + "Ordering Code": "WG82583V", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903072": "PCN\n |\n MDDS", + "903008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82580 Gigabit Ethernet Controller", + "Code Name": "Products formerly Barton Hills", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "July/15/2021; LSD: July/15/2022", + "Operating Temperature Range": "-10°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Description": "See PCN 118016 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "1GbE", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T, SGMII, SERDES", + "Package Size": "17mm x 17mm", + "IEEE 1588": "Yes" + }, + { + "Product Collection": "Intel® 82580 Gigabit Ethernet Controller", + "Code Name": "Products formerly Barton Hills", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "July/15/2021; LSD: July/15/2022", + "Lithography": "90 nm", + "TDP": "3.5 W", + "Operating Temperature Range": "-10°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Description": "See PCN 118016 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T, SGMII, SERDES", + "Package Size": "17mm x 17mm", + "Intel® Virtualization Technology for Connectivity (VT-c)": "I/OAT, VMDq", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® 82579 Gigabit Ethernet Controller", + "Code Name": "Products formerly Lewisville", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "LOD Mar/21/2022; LSD: Sept/30/2022", + "Lithography": "90 nm", + "TDP": "0.66 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118511 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Package Size": "6mm x 6mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "iWARP/RDMA": "No", + "MM#": "909806", + "Spec Code": "SLHA6", + "Ordering Code": "WG82579LM", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909806": "PCN\n |\n MDDS", + "909805": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82579 Gigabit Ethernet Controller", + "Code Name": "Products formerly Lewisville", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "90 nm", + "TDP": "0.66 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "See PCN 118511 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Package Size": "6mm x 6mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "iWARP/RDMA": "No", + "MM#": "909808", + "Spec Code": "SLHA8", + "Ordering Code": "WG82579V", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909807": "PCN", + "909808": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Connection X557", + "Code Name": "Products formerly Coppervale", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Expected Discontinuance": "LOD: Sept/8/2020; LSD: March/8/2021", + "Lithography": "28 nm", + "TDP": "3.4 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 117457 for EOL timelines. Intel(r) Ethernet Connection X557 Family. See the Product Brief for supported devices.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10GbE", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "KR, KX, 100Base-T, 1000Base-T, 10GBase-T, SGMII", + "Package Size": "19mm x 19mm", + "MM#": "942009", + "Spec Code": "SLKW5", + "Ordering Code": "EZX557AT", + "Stepping": "B1", + "ECCN": "5A991B", + "CCATS": "G151724", + "US HTS": "8542310001", + "942009": "PCN\n |\n MDDS", + "941979": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection X557", + "Code Name": "Products formerly Coppervale", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "6.8 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Intel(r) Ethernet Connection X557 Family. See the Product Brief for supported devices.", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "KR, KX, 100Base-T, 1000Base-T, 10GBase-T, SGMII", + "Package Size": "19mm x 19mm", + "MM#": "941994", + "Spec Code": "SLKVY", + "Ordering Code": "EZX557AT2", + "Stepping": "B1", + "ECCN": "5A991B", + "CCATS": "G151724", + "US HTS": "8542310001", + "941994": "PCN\n |\n MDDS", + "941974": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Connection X557", + "Code Name": "Products formerly Coppervale", + "Status": "Launched", + "Launch Date": "Q2'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "13.6 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Intel(r) Ethernet Connection X557 Family. See the Product Brief for supported devices.", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10GbE", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "KR, KX, 100Base-T, 1000Base-T, 10GBase-T, SGMII", + "Package Size": "25mm x 25mm", + "MM#": "941995", + "Spec Code": "SLKW3", + "Ordering Code": "EZX557AT4", + "Stepping": "B1", + "ECCN": "5A991B", + "CCATS": "G151724", + "US HTS": "8542310001", + "941975": "PCN\n |\n MDDS", + "941995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X550", + "Code Name": "Products formerly Sageville", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "Lithography": "28 nm", + "TDP": "8 W", + "Supported Operating Systems": "FreeBSD 10.2, Linux RHEL 6.7, Linux RHEL 7.1, Linux SLES 11 SP4, Linux SLES 11 SP4-IA64, Linux SLES 12, Linux Stable Kernel version 2.6/3.x, Linux Stable Kernel version 4.x, UEFI 2.1, UEFI 2.3, UEFI 2.4, VMware ESXi 5.5/6.0, Windows 7 SP1, Windows 8, Windows 8.1, Windows 10, Windows Server 2008 R2, Windows Server 2008 R2 Core, Windows Server 2008 R2 Hyper-V, Windows Server 2012, Windows Server 2012 Core, Windows Server 2012 Hyper-V, Windows Server 2012 R2, Windows Server 2012 R2 Core, Windows Server 2012 R2 Hyper-V, WinPE 3.0 (2008 R2 PE), WinPE 4.0 (2012 PE), WinPE 5.0 (2012 R2 PE)", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118547 for EOL timelines. Fully integrated 10GBASE-T controller designed for LAN-on-Motherboard (LOM) & Converged Network Adapters (CNA)", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "10/5/2.5/1GbE (NBASE-T in Linux Only)", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "100Base-T, 1000Base-T, 10GBase-T", + "Package Size": "17mm x 17mm", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Controller X550", + "Code Name": "Products formerly Sageville", + "Status": "Launched", + "Launch Date": "Q4'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "11 W", + "Supported Operating Systems": "FreeBSD 10.2, Linux RHEL 6.7, Linux RHEL 7.1, Linux SLES 11 SP4, Linux SLES 11 SP4-IA64, Linux SLES 12, Linux Stable Kernel version 2.6/3.x, Linux Stable Kernel version 4.x, UEFI 2.1, UEFI 2.3, UEFI 2.4, VMware ESXi 5.5/6.0, Windows 7 SP1, Windows 8, Windows 8.1, Windows 10, Windows Server 2008 R2, Windows Server 2008 R2 Core, Windows Server 2008 R2 Hyper-V, Windows Server 2012, Windows Server 2012 Core, Windows Server 2012 Hyper-V, Windows Server 2012 R2, Windows Server 2012 R2 Core, Windows Server 2012 R2 Hyper-V, WinPE 3.0 (2008 R2 PE), WinPE 4.0 (2012 PE), WinPE 5.0 (2012 R2 PE)", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Fully integrated 10GBASE-T controller designed for LAN-on-Motherboard (LOM) & Converged Network Adapters (CNA)", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/5/2.5/1GbE (NBASE-T in Linux Only)", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "100Base-T, 1000Base-T, 10GBase-T", + "Package Size": "17mm x 17mm", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "943743", + "Spec Code": "SLL2F", + "Ordering Code": "ELX550AT2", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G054018", + "US HTS": "8542310001", + "943743": "PCN\n |\n MDDS", + "943736": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X550", + "Code Name": "Products formerly Sageville", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "Lithography": "28 nm", + "TDP": "11 W", + "Supported Operating Systems": "FreeBSD 10.2, Linux RHEL 6.7, Linux RHEL 7.1, Linux SLES 11 SP4, Linux SLES 11 SP4-IA64, Linux SLES 12, Linux Stable Kernel version 2.6/3.x, Linux Stable Kernel version 4.x, UEFI 2.1, UEFI 2.3, UEFI 2.4, VMware ESXi 5.5/6.0, Windows 7 SP1, Windows 8, Windows 8.1, Windows 10, Windows Server 2008 R2, Windows Server 2008 R2 Core, Windows Server 2008 R2 Hyper-V, Windows Server 2012, Windows Server 2012 Core, Windows Server 2012 Hyper-V, Windows Server 2012 R2, Windows Server 2012 R2 Core, Windows Server 2012 R2 Hyper-V, WinPE 3.0 (2008 R2 PE), WinPE 4.0 (2012 PE), WinPE 5.0 (2012 R2 PE)", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118547 for EOL timelines. Fully integrated 10GBASE-T controller designed for LAN-on-Motherboard (LOM) & Converged Network Adapters (CNA)", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/5/2.5/1GbE (NBASE-T in Linux Only)", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "100Base-T, 1000Base-T, 10GBase-T", + "Package Size": "25mm x 25mm", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS" + }, + { + "Product Collection": "Intel® Ethernet Controller X540", + "Code Name": "Products formerly Twinville", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "LOD: March/31/2020; LSD: June/30/2020", + "Lithography": "40 nm", + "TDP": "14 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 117290 for EOL timelines. Fully integrated 10GBASE-T controller designed for LAN-on-Motherboard (LOM) & Converged Network Adapters (CNA)", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/1GbE/100Mb", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Interfaces Supported": "100Base-T, 1000Base-T, 10GBase-T", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "940880", + "Spec Code": "SLKTQ", + "Ordering Code": "ELX540BT2", + "Stepping": "B0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "920904": "PCN\n |\n MDDS", + "940880": "PCN\n |\n MDDS", + "940879": "PCN\n |\n MDDS", + "920903": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X540", + "Code Name": "Products formerly Twinville", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "LOD: Oct/1/2021; LSD: July/15/2022", + "Lithography": "40 nm", + "TDP": "12.5 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118017 for EOL timelines. Fully integrated 10GBASE-T controller designed for LAN-on-Motherboard (LOM) & Converged Network Adapters (CNA)", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/1GbE/100Mb", + "System Interface Type": "PCIe v2.1 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "5.0 GT/s, x8 Lane", + "Interfaces Supported": "100Base-T, 1000Base-T, 10GBase-T", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "917469", + "Spec Code": "SLJEJ", + "Ordering Code": "JLX540AT2", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G054018", + "US HTS": "8542310001", + "917469": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82599 10 Gigabit Ethernet Controller", + "Code Name": "Products formerly Niantic", + "Status": "Discontinued", + "Launch Date": "LOD: Jan/22/2022; LSD: April/22/2022", + "Expected Discontinuance": "Q1'22", + "Lithography": "65 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118544 for EOL timelines.", + "Port Configuration": "Single", + "Data Rate Per Port": "10/1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "917842", + "Spec Code": "SLJFU", + "Ordering Code": "JL82599EN", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G054018", + "US HTS": "8542310001", + "917842": "PCN\n |\n MDDS", + "917841": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82599 10 Gigabit Ethernet Controller", + "Code Name": "Products formerly Niantic", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "Lithography": "65 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118544 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "XAUI, KX, KX4, BX, BX4, CX4", + "Package Size": "25x25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "934908", + "Spec Code": "SR1W6", + "Ordering Code": "JL82599EB", + "Stepping": "B0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "934908": "PCN\n |\n MDDS", + "903143": "PCN\n |\n MDDS", + "903142": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82599 10 Gigabit Ethernet Controller", + "Code Name": "Products formerly Niantic", + "Status": "Launched", + "Launch Date": "Q2'09", + "Expected Discontinuance": "Q1'24", + "Lithography": "65 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "System Interface Type": "PCIe v2.0 (5.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI, KR, XAUI, KX, KX4, BX, CX4", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, SR-IOV", + "Fiber Channel over Ethernet": "Yes", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, FCoE, NFS", + "MM#": "903140", + "Spec Code": "SLGWF", + "Ordering Code": "JL82599ES", + "Stepping": "B0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "903140": "PCN\n |\n MDDS", + "903139": "PCN\n |\n MDDS", + "934600": "PCN\n |\n MDDS", + "934599": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Multi-host Controller FM10000 Series", + "Code Name": "Products formerly Red Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "LOD: July/22/2022; LSD: Jan/22/2023", + "Lithography": "28 nm", + "TDP": "17.5 W", + "Supported Operating Systems": "Linux", + "Operating Temperature Range": "5°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "5 °C", + "Datasheet": "View now", + "Description": "See PCN 118540 for EOL Timelines. Intel Ethernet Multi-host Controller supporting up to 2 100GbE, 2 40GbE, 8 25GbE or 8 10GbE ports plus up to four PCIe host interfaces", + "Product Brief": "View now", + "Data Rate Per Port": "100/25/10/1GbE", + "System Interface Type": "PCIe Gen3", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "2x8-lane or 4x4-lane", + "Interfaces Supported": "SFI, KR, KR4, KX, SGMII, SERDES", + "Package Size": "37.5mm x 37.5mm", + "On-chip QoS and Traffic Management": "Yes", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "DCB Features", + "MM#": "946070", + "Spec Code": "SLLFY", + "Ordering Code": "EZFM10420", + "Stepping": "B0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "946070": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Multi-host Controller FM10000 Series", + "Code Name": "Products formerly Red Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "LOD: July/22/2022; LSD: Jan/22/2023", + "Lithography": "28 nm", + "TDP": "40 W", + "Supported Operating Systems": "Linux", + "Operating Temperature Range": "5°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "5 °C", + "Datasheet": "View now", + "Description": "See PCN 118540 for EOL Timelines. Intel Ethernet Multi-host Controller supporting up to 6 100GbE, 9 40GbE, 24 25GbE or 36 10GbE ports plus up to eight PCIe host interfaces", + "Product Brief": "View now", + "Data Rate Per Port": "100/25/10/1GbE", + "System Interface Type": "PCIe Gen3", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Speed & Slot Width": "4x8-lane or 8x4-lane", + "Interfaces Supported": "SFI, KR, KR4, KX, SGMII, SERDES", + "Package Size": "37.5mm x 37.5mm", + "On-chip QoS and Traffic Management": "Yes", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "DCB Features", + "MM#": "946069", + "Spec Code": "SLLFX", + "Ordering Code": "EZFM10840", + "Stepping": "B0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "946069": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C740 Series Chipsets", + "Code Name": "Products formerly Emmitsburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q1'22", + "TDP": "11 W", + "Embedded Options Available": "Yes", + "PCI Express Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "20", + "Max # of SATA 6.0 Gb/s Ports": "20", + "Integrated LAN": "1", + "Package Size": "22mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AWFC", + "Spec Code": "SRLGE", + "Ordering Code": "GGNOCPU05016100", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G155419", + "US HTS": "8542310001", + "99AWFC": "PCN" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q2'20", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999V8M", + "Spec Code": "SRH5A", + "Ordering Code": "EY82C621A", + "Stepping": "B3", + "CCATS": "Varies By Product", + "ECCN": "5A992CN3", + "US HTS": "8542310001", + "999V8M": "PCN\n |\n MDDS", + "999V8G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q2'20", + "TDP": "28.6 W", + "Embedded Options Available": "Yes", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "1", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999V8H", + "Spec Code": "SRH59", + "Ordering Code": "EY82C627A", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "999V8H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q2'20", + "TDP": "28.6 W", + "Embedded Options Available": "Yes", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "1", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999V94", + "Spec Code": "SRH5B", + "Ordering Code": "EY82C629A", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "999V94": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'18", + "TDP": "28.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "976392", + "Spec Code": "SRCWR", + "Ordering Code": "EY82C629", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "976392": "PCN" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "15 W", + "Use Conditions": "Communications Commercial Temp, Server/Enterprise", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "953999", + "Spec Code": "SR354", + "Ordering Code": "EY82C621", + "Stepping": "S0", + "CCATS": "Varies By Product", + "ECCN": "5A992CN3", + "US HTS": "8542310001", + "953999": "PCN\n |\n MDDS", + "957625": "PCN\n |\n MDDS", + "957631": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "17 W", + "Use Conditions": "Communications Commercial Temp, Server/Enterprise", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x8", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "957630", + "Spec Code": "SR3HK", + "Ordering Code": "EY82C622", + "Stepping": "S1", + "ECCN": "5A992CN3", + "CCATS": "G155419", + "US HTS": "8542310001", + "957630": "PCN\n |\n MDDS", + "954863": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "19 W", + "Use Conditions": "Communications Commercial Temp, Server/Enterprise", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "954864", + "Spec Code": "SR36Y", + "Ordering Code": "EY82C624", + "Stepping": "S0", + "ECCN": "5A992CN3", + "CCATS": "G155419", + "US HTS": "8542310001", + "954864": "PCN\n |\n MDDS", + "957632": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "21 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "957629", + "Spec Code": "SR3HJ", + "Ordering Code": "EY82C625", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "957629": "PCN\n |\n MDDS", + "954862": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "23 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "957628", + "Spec Code": "SR3HH", + "Ordering Code": "EY82C626", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "954861": "PCN\n |\n MDDS", + "957628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "28.6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "957627", + "Spec Code": "SR3HG", + "Ordering Code": "EY82C627", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "957627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C620 Series Chipsets", + "Code Name": "Products formerly Lewisburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "TDP": "26.3 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "1x4,2x2,4x1,1x2+2x1", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3", + "USB 3.0": "10", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "14", + "Integrated LAN": "5", + "PCIe* Uplink": "x16", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "957626", + "Spec Code": "SR3HF", + "Ordering Code": "EY82C628", + "Stepping": "B2", + "ECCN": "5A992CN3", + "CCATS": "G155443", + "US HTS": "8542310001", + "954859": "PCN\n |\n MDDS", + "957626": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C610 Series Chipsets", + "Code Name": "Products formerly Wellsburg", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'14", + "Bus Speed": "5 GT/s", + "Lithography": "32 nm", + "TDP": "7 W", + "Supports Overclocking": "No", + "Use Conditions": "Communications", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "PCIe", + "PCI Express Revision": "Gen 2", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "3.0 and 2.0", + "USB 3.0": "6", + "USB 2.0": "8", + "Total # of SATA Ports": "10", + "Max # of SATA 6.0 Gb/s Ports": "10", + "RAID Configuration": "RSTe 4.0", + "Integrated LAN": "1 GbE", + "Integrated SAS ports": "N/A", + "PCIe* Uplink": "N/A", + "TCASE": "93°C", + "Package Size": "25mm x 25 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "9.1", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Integrated Intel® QuickAssist Technology": "No", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "932728", + "Spec Code": "SLKDD", + "Ordering Code": "DH82029PCH", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "932728": "PCN\n |\n MDDS", + "938954": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C600 Series Chipsets", + "Code Name": "Products formerly Patsburg", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q1'12", + "Lithography": "65 nm", + "TDP": "8 W", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "10", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Package Size": "27 mm x 27 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "7.1.20", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "No", + "MM#": "919598", + "Spec Code": "SLJKG", + "Ordering Code": "BD82C602", + "Stepping": "C1", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "919598": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C600 Series Chipsets", + "Code Name": "Products formerly Patsburg", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q1'12", + "Lithography": "65 nm", + "TDP": "8 W", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Package Size": "27 mm x 27 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "7.1.20", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "No", + "MM#": "920240", + "Spec Code": "SLJNG", + "Ordering Code": "BD82C602J", + "Stepping": "C1", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "920240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C600 Series Chipsets", + "Code Name": "Products formerly Patsburg", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q1'12", + "Lithography": "65 nm", + "TDP": "8 W", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "10", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Package Size": "27 mm x 27 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "7.1.20", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "No", + "MM#": "919601", + "Spec Code": "SLJKJ", + "Ordering Code": "BD82C604", + "Stepping": "C1", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "919601": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C600 Series Chipsets", + "Code Name": "Products formerly Patsburg", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q1'12", + "Lithography": "65 nm", + "TDP": "12 W", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Package Size": "27 mm x 27 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "7.1.20", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "No" + }, + { + "Product Collection": "Intel® C600 Series Chipsets", + "Code Name": "Products formerly Patsburg", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q1'12", + "Lithography": "65 nm", + "TDP": "12 W", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "Macrovision* License Required": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "14", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Package Size": "27 mm x 27 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "7.1.20", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "No", + "MM#": "919597", + "Spec Code": "SLJKF", + "Ordering Code": "BD82C608", + "Stepping": "C1", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "919597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C400 Series Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Revision": "3.1 Gen1/2.0", + "USB 3.0": "up to 10", + "USB 2.0": "up to 14", + "Total # of SATA Ports": "8", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0, 1, 5, 10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "951177", + "Spec Code": "SR2WG", + "Ordering Code": "GL82C422", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C250 Series Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "# of Displays Supported ‡": "1", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "12", + "USB Configuration": "- Up to 3 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 6 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 6 USB 3.2 Gen 1x1 (5Gb/s) Ports 12 USB 2.0 Ports", + "USB Revision": "3.2", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "10", + "Package Size": "25 mm x 24 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC54", + "Spec Code": "SRKM9", + "Ordering Code": "FH82C252", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC54": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C250 Series Chipsets", + "Code Name": "Products formerly Tiger Lake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "# of Displays Supported ‡": "1", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "- Up to 3 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 10 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "24", + "Package Size": "25 mm x 24 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15.0", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC53", + "Spec Code": "SRKM8", + "Ordering Code": "FH82C256", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC53": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C240 Series Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q4'18", + "TDP": "6 W", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "PCI Support": "NO", + "PCI Express Revision": "Gen3", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "12", + "USB Revision": "3.1", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "Enabled", + "Integrated LAN": "yes", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "10", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "12.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "964270", + "Spec Code": "SR40C", + "Ordering Code": "FH82C242", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964270": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C240 Series Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q3'18", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "PCI Support": "NO", + "PCI Express Revision": "Gen3", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.1 Ports - Up to 6 USB 3.1 Gen 2 Ports - Up to 10 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "12.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "964268", + "Spec Code": "SR40A", + "Ordering Code": "FH82C246", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964268": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C240 Series Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "Lithography": "14 nm", + "TDP": "3 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "NO", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.1 Ports - Up to 6 USB 3.1 Gen 2 Ports - Up to 10 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Package Size": "25mm x 24mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "964272", + "Spec Code": "SR40E", + "Ordering Code": "FH82CM246", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964272": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C230 Series Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "3.67 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11.6", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "952182", + "Spec Code": "SR30U", + "Ordering Code": "GL82CM238", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "952182": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C230 Series Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q4'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "0", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "12", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 6", + "USB 2.0": "6", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16, 2x8, 1x8+2x4", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Node Manager": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "943516", + "Spec Code": "SR2CB", + "Ordering Code": "GLC232", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943516": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C230 Series Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q4'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "4", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16, 2x8, 1x8+2x4", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "943517", + "Spec Code": "SR2CC", + "Ordering Code": "GLC236", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943517": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C230 Series Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Mobile", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "3.67 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0/1/5/10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 23mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "943519", + "Spec Code": "SR2CE", + "Ordering Code": "GLCM236", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C220 Series Chipsets", + "Code Name": "Products formerly Lynx Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'13", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "10", + "USB Revision": "3.0/2.0", + "USB 3.0": "2", + "USB 2.0": "8", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Integrated IDE": "Yes", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "No", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "Yes", + "Intel® Matrix Storage Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "929144", + "Spec Code": "SR17B", + "Ordering Code": "DH82C222", + "Stepping": "C2", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "929144": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C220 Series Chipsets", + "Code Name": "Products formerly Lynx Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'13", + "Embedded Options Available": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "12", + "USB Revision": "3.0/2.0", + "USB 3.0": "4", + "USB 2.0": "8", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Integrated LAN": "Yes", + "Integrated IDE": "Yes", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "No", + "Intel® Remote PC Assist Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "MM#": "929142", + "Spec Code": "SR17A", + "Ordering Code": "DH82C224", + "Stepping": "C2", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "929142": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C220 Series Chipsets", + "Code Name": "Products formerly Lynx Point", + "Status": "Launched", + "Vertical Segment": "Server", + "Launch Date": "Q2'13", + "TDP": "4.1 W", + "Supports Overclocking": "No", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "6", + "USB 2.0": "8", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Integrated LAN": "MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16", + "Max CPU Configuration": "1", + "Package Size": "23mm x 22mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "9.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "929139", + "Spec Code": "SR179", + "Ordering Code": "DH82C226", + "Stepping": "C2", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "929139": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C210 Series Chipsets", + "Code Name": "Products formerly Panther Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'12", + "Lithography": "65 nm", + "TDP": "6.7 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "4", + "USB 2.0": "10", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "MAC", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "8.0", + "Intel® Quick Resume Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "Yes" + }, + { + "Product Collection": "Intel® C200 Series Chipsets", + "Code Name": "Products formerly Cougar Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'11", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "12", + "USB Revision": "2.0", + "USB 2.0": "12", + "Total # of SATA Ports": "6", + "Integrated LAN": "Yes", + "Integrated IDE": "Yes", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "No", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "Yes", + "Intel® Matrix Storage Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "914419", + "Spec Code": "SLJ4J", + "Ordering Code": "BD82C202", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "909969": "PCN\n |\n MDDS", + "914419": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C200 Series Chipsets", + "Code Name": "Products formerly Cougar Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'11", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Integrated Graphics ‡": "No", + "Graphics Output": "No", + "Intel® Clear Video Technology": "No", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "12", + "USB Revision": "2.0", + "USB 2.0": "12", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Integrated IDE": "Yes", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "No", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® AC97 Technology": "Yes", + "Intel® Matrix Storage Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "914418", + "Spec Code": "SLJ4H", + "Ordering Code": "BD82C204", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "914418": "PCN\n |\n MDDS", + "909968": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® C200 Series Chipsets", + "Code Name": "Products formerly Cougar Point", + "Status": "Discontinued", + "Vertical Segment": "Server", + "Launch Date": "Q2'11", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Support": "Yes", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "2x4, 4x2, 8x1", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0", + "USB 2.0": "14", + "Total # of SATA Ports": "6", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Integrated LAN": "Yes", + "Integrated IDE": "Yes", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "8.1", + "Intel® Remote PC Assist Technology": "No", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® AC97 Technology": "Yes", + "Intel® Matrix Storage Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Anti-Theft Technology": "Yes", + "MM#": "914417", + "Spec Code": "SLJ4G", + "Ordering Code": "BD82C206", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G071701", + "US HTS": "8542310001", + "914417": "PCN\n |\n MDDS", + "909967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Coleto Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'13", + "TDP": "17 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Integrated Graphics ‡": "No", + "PCI Support": "Gen 1", + "PCI Express Revision": "Gen 2 Endpoint", + "PCI Express Configurations ‡": "Endpoint x16", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "Yes", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "930162", + "Spec Code": "SLK96", + "Ordering Code": "DH8925CL", + "Stepping": "A0", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "930162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Coleto Creek", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'13", + "TDP": "17 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Integrated Graphics ‡": "No", + "PCI Support": "Gen 1", + "PCI Express Revision": "Gen 2 Endpoint", + "PCI Express Configurations ‡": "Endpoint x16", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "Yes", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "931957", + "Spec Code": "SLKCJ", + "Ordering Code": "DH8926CL", + "Stepping": "A0", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "931957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Coleto Creek", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'13", + "TDP": "20 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Product Brief": "View now", + "Integrated Graphics ‡": "No", + "PCI Support": "Gen 1", + "PCI Express Revision": "Gen 2 Endpoint", + "PCI Express Configurations ‡": "Endpoint x16", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "Yes", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "931963", + "Spec Code": "SLKCK", + "Ordering Code": "DH8950CL", + "Stepping": "A0", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "931963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Coleto Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'13", + "TDP": "20 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Integrated Graphics ‡": "No", + "PCI Support": "Gen 1", + "PCI Express Revision": "Gen 2 Endpoint", + "PCI Express Configurations ‡": "Endpoint x16", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "Yes", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "932468", + "Spec Code": "SLKD4", + "Ordering Code": "DH8955CL", + "Stepping": "A0", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "932468": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Cave Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'12", + "TDP": "8.5 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "PCI Express Revision": "Gen 1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "6", + "Total # of SATA Ports": "2", + "Integrated LAN": "4", + "PCIe* Uplink": "x4 PCIe Gen2", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Integrated Intel® QuickAssist Technology": "No", + "MM#": "923820", + "Spec Code": "SLJW2", + "Ordering Code": "DH8900CC", + "Stepping": "C1", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8542310001", + "923820": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Cave Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'12", + "TDP": "9.5 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "PCI Express Revision": "Gen 1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "6", + "Total # of SATA Ports": "2", + "Integrated LAN": "4", + "PCIe* Uplink": "x4 PCIe Gen2", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "923819", + "Spec Code": "SLJVZ", + "Ordering Code": "DH8903CC", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "923819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Cave Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'12", + "TDP": "11 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "PCI Express Revision": "Gen 1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "6", + "Total # of SATA Ports": "2", + "Integrated LAN": "4", + "PCIe* Uplink": "x8 PCIe Gen2", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "923818", + "Spec Code": "SLJVY", + "Ordering Code": "DH8910CC", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "923818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Communications Chipsets", + "Code Name": "Products formerly Cave Creek", + "Status": "Discontinued", + "Vertical Segment": "Embedded", + "Launch Date": "Q4'12", + "TDP": "12 W", + "Use Conditions": "Communications Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "PCI Express Revision": "Gen 1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "6", + "USB Revision": "2.0", + "USB 2.0": "6", + "Total # of SATA Ports": "2", + "Integrated LAN": "4", + "PCIe* Uplink": "x16 PCIe Gen2", + "Max CPU Configuration": "2", + "Package Size": "27mm x 27mm", + "Integrated Intel® QuickAssist Technology": "Yes", + "MM#": "923817", + "Spec Code": "SLJVX", + "Ordering Code": "DH8920CC", + "Stepping": "C1", + "ECCN": "5A992C", + "CCATS": "G184699", + "US HTS": "8542310001", + "923817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller XXV710", + "Code Name": "Products formerly Fortville", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "LOD: Jan/22/2022; LSD: April/22/2022", + "Lithography": "28 nm", + "Operating Temperature Range": "0°C to 50°C", + "Operating Temperature (Maximum)": "50 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 118592 for EOL timelines.", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "25/10/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm, FC-BGA", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS" + }, + { + "Product Collection": "Intel® Ethernet Controller XXV710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "Operating Temperature Range": "0°C to 50°C", + "Operating Temperature (Maximum)": "50 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Dual Port 25GbE or 2x25GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "25/10/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Controller": "FTXXV710-AM2", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm X 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "954103", + "Spec Code": "SLLZ5", + "Ordering Code": "FTXXV710-AM2", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "954101": "PCN\n |\n MDDS", + "954103": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller XL710", + "Code Name": "Products formerly Fortville", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Single Port 40 GbE or 4x10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE/10GbE/40GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Controller": "FTXL710-AM1", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "936552", + "Spec Code": "SR1ZN", + "Ordering Code": "FTXL710-AM1", + "Stepping": "B0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936552": "PCN\n |\n MDDS", + "936551": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller XL710", + "Code Name": "Products formerly Fortville", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Dual Port 40 GbE or 4x10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "1GbE/10GbE/40GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Controller": "FTXL710-AM2", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "936550", + "Spec Code": "SR1ZL", + "Ordering Code": "FTXL710-AM2", + "Stepping": "B0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936550": "PCN\n |\n MDDS", + "936549": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller XL710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Single Port 40GbE or 4x10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "40/10/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "947353", + "Spec Code": "SLLKA", + "Ordering Code": "FTXL710-BM1", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "947351": "PCN\n |\n MDDS", + "947353": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller XL710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Dual Port 40GbE or 4x10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "40/10/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI, KR, KR4, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "947349", + "Spec Code": "SLLK8", + "Ordering Code": "FTXL710-BM2", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "947349": "PCN\n |\n MDDS", + "947348": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller V710", + "Code Name": "Products formerly Carlsville", + "Status": "Launched", + "Launch Date": "Q2'20", + "Expected Discontinuance": "Q2'27", + "TDP": "9.5 W", + "Supported Operating Systems": "Windows Server 2012R2, Windows Server 2016, Linux kernel 2.6/3.x/4.4, SLES 11 i SLES 12 latest service pack (SLES 15 may get in and push out SLES11), RHEL 6.9 (might be pushed out by RHEL6.10 – currently at Alpha), RHEL 7.5 (anticipating RC3 to be offical final candidate), Ubuntu 14.04 i 16.04 , FreeBSD10, FreeBSD11, ESXi6.0, ESXi6.5, ESXi6.7, UEFI 2.1, 2.3, 2.4; Option ROM support: Legacy PXE, Legacy iSCSI, x64 UEFI driver", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "No", + "Description": "Multiple speed, energy-efficient design for NBASE-T networks and 802.3bz", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "5/2.5/1GbE, 100Mb", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "NBASE-T, 100BASE-T, 1000BASE-T", + "Package Size": "22mm x 22mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "MM#": "999WDX", + "Spec Code": "SLNGG", + "Ordering Code": "EZV710AT2", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "999WDX": "PCN", + "999WDT": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Controller X710", + "Code Name": "Products formerly Carlsville", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2H '27", + "Lithography": "28 nm", + "TDP": "9.5 W", + "Supported Operating Systems": "Windows Server 2012R2, Windows Server 2016, Linux kernel 2.6/3.x/4.4, SLES 11 i SLES 12 latest service pack (SLES 15 may get in and push out SLES11), RHEL 6.9 (might be pushed out by RHEL6.10 – currently at Alpha), RHEL 7.5 (anticipating RC3 to be offical final candidate), Ubuntu 14.04 i 16.04 , FreeBSD10, FreeBSD11, ESXi6.0, ESXi6.5, ESXi6.7, UEFI 2.1, 2.3, 2.4; Option ROM support: Legacy PXE, Legacy iSCSI, x64 UEFI driver", + "Operating Temperature Range": "0°C to 50°C", + "Operating Temperature (Maximum)": "50 °C", + "Operating Temperature (Minimum)": "0 °C", + "Use Conditions": "Server/Enterprise", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/5/2.5/1GbE, 100Mb", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "NBASE-T, 100BASE-T, 1000BASE-T, 10GBASE-T", + "Package Size": "22mm x 22mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "MM#": "980539", + "Spec Code": "SLMR6", + "Ordering Code": "EZX710AT2", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "980538": "PCN\n |\n MDDS", + "980539": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X710", + "Code Name": "Products formerly Carlsville", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2H '27", + "Lithography": "28 nm", + "TDP": "9.8 W", + "Supported Operating Systems": "Windows Server 2012R2, Windows Server 2016, Linux kernel 2.6/3.x/4.4, SLES 11 i SLES 12 latest service pack (SLES 15 may get in and push out SLES11), RHEL 6.9 (might be pushed out by RHEL6.10 – currently at Alpha), RHEL 7.5 (anticipating RC3 to be offical final candidate), Ubuntu 14.04 i 16.04 , FreeBSD10, FreeBSD11, ESXi6.0, ESXi6.5, ESXi6.7, UEFI 2.1, 2.3, 2.4; Option ROM support: Legacy PXE, Legacy iSCSI, x64 UEFI driver", + "Operating Temperature Range": "0°C to 50°C", + "Operating Temperature (Maximum)": "50 °C", + "Operating Temperature (Minimum)": "0 °C", + "Use Conditions": "Server/Enterprise, Workstation", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Port Configuration": "Quad", + "Data Rate Per Port": "10/5/2.5/1GbE, 100Mb", + "System Interface Type": "PCIe 3.0 (8.0 GT/s)", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "NBASE-T, SFI, KR, 100BASE-T, 1000BASE-T, 10GBASE-T", + "Package Size": "22mm x 22mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "MM#": "976477", + "Spec Code": "SLMM7", + "Ordering Code": "EZX710TM4", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "976476": "PCN\n |\n MDDS", + "976477": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X710", + "Code Name": "Products formerly Fortville", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "-10°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "-10 °C", + "Datasheet": "View now", + "Description": "Dual Port 10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10GbE/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Controller": "X710-AM2", + "Interfaces Supported": "SFI, KR, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "936554", + "Spec Code": "SR1ZQ", + "Ordering Code": "FTX710-AM2", + "Stepping": "B0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "936554": "PCN\n |\n MDDS", + "936553": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Controller X710", + "Code Name": "Products formerly Fortville", + "Status": "Launched", + "Launch Date": "Q4'15", + "Expected Discontinuance": "1H'28", + "Lithography": "28 nm", + "TDP": "7 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "Dual Port 10GbE Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Data Rate Per Port": "10/1GbE", + "System Interface Type": "PCIe v3.0 (8.0 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "SFI, KR, XAUI, KX, KX4, SGMII", + "Package Size": "25mm x 25mm", + "On-chip QoS and Traffic Management": "Yes", + "Flexible Port Partitioning": "Yes", + "Virtual Machine Device Queues (VMDq)": "Yes", + "PCI-SIG* SR-IOV Capable": "Yes", + "Fiber Channel over Ethernet": "No", + "IEEE 1588": "Yes", + "Intel® Ethernet Power Management": "Yes", + "Intel® Data Direct I/O Technology": "Yes", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "947361", + "Spec Code": "SLLKC", + "Ordering Code": "FTX710-BM2", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "947361": "PCN\n |\n MDDS", + "947359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "1325000", + "Adaptive Logic Modules (ALM)": "449280", + "Adaptive Logic Module (ALM) Registers": "1797120", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "114 Mb", + "Digital Signal Processing (DSP) Blocks": "2592", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "99C20X", + "Spec Code": "SRM6K", + "Ordering Code": "1ST110ES2F50E2VGNE", + "Stepping": "A1", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "999FKR": "PCN\n |\n MDDS", + "99A7P2": "PCN", + "999FKP": "PCN\n |\n MDDS", + "99A7PD": "PCN", + "999FKN": "PCN\n |\n MDDS", + "99A7PG": "PCN", + "999FKM": "PCN\n |\n MDDS", + "99A7PX": "PCN", + "999FKL": "PCN\n |\n MDDS", + "999FKK": "PCN\n |\n MDDS", + "999FKJ": "PCN\n |\n MDDS", + "999FKV": "PCN\n |\n MDDS", + "999FKT": "PCN\n |\n MDDS", + "99A7NP": "PCN", + "99A7NR": "PCN", + "99A7NT": "PCN", + "99A7NV": "PCN", + "99A7ND": "PCN", + "99A7NF": "PCN", + "99A7NG": "PCN", + "99A7NH": "PCN", + "99A7NJ": "PCN", + "999FKH": "PCN\n |\n MDDS", + "999FKG": "PCN\n |\n MDDS", + "99A7NA": "PCN", + "999FKF": "PCN\n |\n MDDS", + "99A7NC": "PCN", + "99C20X": "PCN", + "999FKA": "PCN\n |\n MDDS", + "999FK9": "PCN\n |\n MDDS", + "999FK8": "PCN\n |\n MDDS", + "999FK7": "PCN\n |\n MDDS", + "999FK6": "PCN\n |\n MDDS", + "999FK5": "PCN\n |\n MDDS", + "999FK4": "PCN\n |\n MDDS", + "999FKD": "PCN\n |\n MDDS", + "999FKC": "PCN\n |\n MDDS", + "999N41": "PCN\n |\n MDDS", + "999N40": "PCN\n |\n MDDS", + "999N3Z": "PCN\n |\n MDDS", + "999N3X": "PCN\n |\n MDDS", + "999N3W": "PCN\n |\n MDDS", + "999N47": "PCN\n |\n MDDS", + "999N3V": "PCN\n |\n MDDS", + "999PJM": "PCN\n |\n MDDS", + "999PJL": "PCN\n |\n MDDS", + "999PJK": "PCN\n |\n MDDS", + "999PJJ": "PCN\n |\n MDDS", + "999PJH": "PCN\n |\n MDDS", + "999PJG": "PCN\n |\n MDDS", + "999PJF": "PCN\n |\n MDDS", + "999PJN": "PCN\n |\n MDDS", + "999FL3": "PCN\n |\n MDDS", + "999FL2": "PCN\n |\n MDDS", + "999FL1": "PCN\n |\n MDDS", + "999FL0": "PCN\n |\n MDDS", + "999FKZ": "PCN\n |\n MDDS", + "999FKX": "PCN\n |\n MDDS", + "999FKW": "PCN\n |\n MDDS", + "999FL7": "PCN\n |\n MDDS", + "999FL6": "PCN\n |\n MDDS", + "999FL5": "PCN\n |\n MDDS", + "999FL4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "1679000", + "Adaptive Logic Modules (ALM)": "569200", + "Adaptive Logic Module (ALM) Registers": "2276800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "223.5 Mb", + "Digital Signal Processing (DSP) Blocks": "3326", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "36", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2397", + "Additional Information": "View now", + "MM#": "99A7VD", + "Spec Code": "SRKDR", + "Ordering Code": "1ST165EU2F50I2VGBK", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "99A7VC": "PCN", + "99A7VD": "PCN", + "986204": "PCN\n |\n MDDS", + "986244": "PCN\n |\n MDDS", + "986243": "PCN\n |\n MDDS", + "986200": "PCN\n |\n MDDS", + "986199": "PCN\n |\n MDDS", + "986198": "PCN\n |\n MDDS", + "999GJL": "PCN", + "986228": "PCN\n |\n MDDS", + "999GJA": "PCN", + "986208": "PCN\n |\n MDDS", + "986373": "PCN\n |\n MDDS", + "986207": "PCN\n |\n MDDS", + "986372": "PCN\n |\n MDDS", + "986206": "PCN\n |\n MDDS", + "986205": "PCN\n |\n MDDS", + "986203": "PCN\n |\n MDDS", + "986202": "PCN\n |\n MDDS", + "986201": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "2073000", + "Adaptive Logic Modules (ALM)": "702720", + "Adaptive Logic Module (ALM) Registers": "2810880", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "239.5 Mb", + "Digital Signal Processing (DSP) Blocks": "3960", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "36", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2397", + "Additional Information": "View now", + "MM#": "99A7VN", + "Spec Code": "SRKDX", + "Ordering Code": "1ST210EU2F50I2VGBK", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "999GKN": "PCN\n |\n MDDS", + "999GKM": "PCN\n |\n MDDS", + "999GJM": "PCN\n |\n MDDS", + "986375": "PCN\n |\n MDDS", + "986374": "PCN\n |\n MDDS", + "99A7VN": "PCN", + "999GJR": "PCN\n |\n MDDS", + "999GJP": "PCN\n |\n MDDS", + "999GJN": "PCN\n |\n MDDS", + "986242": "PCN\n |\n MDDS", + "986241": "PCN\n |\n MDDS", + "986238": "PCN\n |\n MDDS", + "986237": "PCN\n |\n MDDS", + "99A7VF": "PCN", + "986236": "PCN\n |\n MDDS", + "99A7VG": "PCN", + "986235": "PCN\n |\n MDDS", + "99A7VJ": "PCN", + "986234": "PCN\n |\n MDDS", + "99A7VL": "PCN", + "986233": "PCN\n |\n MDDS", + "99A7VM": "PCN", + "986231": "PCN\n |\n MDDS", + "986230": "PCN\n |\n MDDS", + "986229": "PCN\n |\n MDDS", + "986197": "PCN\n |\n MDDS", + "986196": "PCN\n |\n MDDS", + "986232": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "2422000", + "Adaptive Logic Modules (ALM)": "821150", + "Adaptive Logic Module (ALM) Registers": "3284600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "208 Mb", + "Digital Signal Processing (DSP) Blocks": "5011", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "144", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "60", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2397, F2912", + "Additional Information": "View now", + "MM#": "99AK9L", + "Spec Code": "SRKZU", + "Ordering Code": "1ST250EU3F50I3XGAS", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "9999CD": "PCN\n |\n MDDS", + "986339": "PCN\n |\n MDDS", + "986338": "PCN\n |\n MDDS", + "9999CM": "PCN\n |\n MDDS", + "986337": "PCN\n |\n MDDS", + "9999CL": "PCN\n |\n MDDS", + "9999CK": "PCN\n |\n MDDS", + "9999CJ": "PCN\n |\n MDDS", + "9999CH": "PCN\n |\n MDDS", + "9999CG": "PCN\n |\n MDDS", + "9999CF": "PCN\n |\n MDDS", + "99A7DG": "PCN", + "9999CC": "PCN\n |\n MDDS", + "9999CA": "PCN\n |\n MDDS", + "99A7DP": "PCN", + "9999D7": "PCN\n |\n MDDS", + "999G70": "PCN\n |\n MDDS", + "986367": "PCN\n |\n MDDS", + "986366": "PCN\n |\n MDDS", + "986365": "PCN\n |\n MDDS", + "986364": "PCN\n |\n MDDS", + "986335": "PCN\n |\n MDDS", + "986334": "PCN\n |\n MDDS", + "9999D9": "PCN\n |\n MDDS", + "986333": "PCN\n |\n MDDS", + "9999D8": "PCN\n |\n MDDS", + "999G6C": "PCN\n |\n MDDS", + "986346": "PCN\n |\n MDDS", + "986344": "PCN\n |\n MDDS", + "986343": "PCN\n |\n MDDS", + "986342": "PCN\n |\n MDDS", + "9999CP": "PCN\n |\n MDDS", + "986340": "PCN\n |\n MDDS", + "9999CN": "PCN\n |\n MDDS", + "99A4G5": "PCN", + "9999D6": "PCN\n |\n MDDS", + "986336": "PCN\n |\n MDDS", + "99AK9L": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "2753000", + "Adaptive Logic Modules (ALM)": "933120", + "Adaptive Logic Module (ALM) Registers": "3732480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "244 Mb", + "Digital Signal Processing (DSP) Blocks": "5760", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "144", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "60", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2397, F2912", + "Additional Information": "View now", + "MM#": "99AKX6", + "Spec Code": "SRL0X", + "Ordering Code": "1ST280EU2F50E2VGNE", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "99AKX6": "PCN", + "984461": "PCN\n |\n MDDS", + "986669": "PCN\n |\n MDDS", + "999G6F": "PCN", + "999G6D": "PCN", + "999G6A": "PCN", + "999G69": "PCN", + "999G68": "PCN", + "999G67": "PCN", + "99A7JJ": "PCN", + "999G66": "PCN", + "999G65": "PCN", + "999G6K": "PCN", + "999G6J": "PCN", + "999G6H": "PCN", + "999G6G": "PCN", + "99A7DZ": "PCN", + "99A7F0": "PCN", + "99A7DH": "PCN", + "99A7DK": "PCN", + "99A7DL": "PCN", + "99A7DM": "PCN", + "986371": "PCN\n |\n MDDS", + "99A7DN": "PCN", + "986370": "PCN\n |\n MDDS", + "99A7DR": "PCN", + "99A7DV": "PCN", + "99A7DW": "PCN", + "99A7DX": "PCN", + "986361": "PCN\n |\n MDDS", + "986360": "PCN\n |\n MDDS", + "986358": "PCN\n |\n MDDS", + "986357": "PCN\n |\n MDDS", + "986356": "PCN\n |\n MDDS", + "986354": "PCN\n |\n MDDS", + "986353": "PCN\n |\n MDDS", + "986369": "PCN\n |\n MDDS", + "986368": "PCN\n |\n MDDS", + "986363": "PCN\n |\n MDDS", + "9999CX": "PCN\n |\n MDDS", + "9999DA": "PCN\n |\n MDDS", + "986349": "PCN\n |\n MDDS", + "9999CW": "PCN\n |\n MDDS", + "986347": "PCN\n |\n MDDS", + "9999CV": "PCN\n |\n MDDS", + "99A72X": "PCN", + "9999CT": "PCN\n |\n MDDS", + "9999CR": "PCN\n |\n MDDS", + "986351": "PCN\n |\n MDDS", + "986350": "PCN\n |\n MDDS", + "9999D5": "PCN\n |\n MDDS", + "9999D4": "PCN\n |\n MDDS", + "9999D3": "PCN\n |\n MDDS", + "9999D2": "PCN\n |\n MDDS", + "9999D1": "PCN\n |\n MDDS", + "9999DF": "PCN\n |\n MDDS", + "9999D0": "PCN\n |\n MDDS", + "9999DD": "PCN\n |\n MDDS", + "9999CZ": "PCN\n |\n MDDS", + "9999DC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "378000", + "Adaptive Logic Modules (ALM)": "128160", + "Adaptive Logic Module (ALM) Registers": "512640", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "32 Mb", + "Digital Signal Processing (DSP) Blocks": "648", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "392", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "192", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152", + "Additional Information": "View now", + "MM#": "99A736", + "Spec Code": "SRK83", + "Ordering Code": "1ST040EH3F35I3VGBK", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "999RNZ": "PCN", + "999LGP": "PCN", + "999LGN": "PCN", + "999LG4": "PCN", + "999LFP": "PCN", + "999LFK": "PCN", + "999LFC": "PCN", + "999LDL": "PCN", + "999LDK": "PCN", + "999RPF": "PCN", + "999LDJ": "PCN", + "999RPD": "PCN", + "999RPC": "PCN", + "999RPA": "PCN", + "999RP7": "PCN", + "99A730": "PCN", + "99A731": "PCN", + "999RP0": "PCN", + "99A732": "PCN", + "999LF9": "PCN", + "999LF8": "PCN", + "999LF7": "PCN", + "999LF6": "PCN", + "999LDZ": "PCN", + "99A733": "PCN", + "999LDX": "PCN", + "99A734": "PCN", + "99A735": "PCN", + "999LDT": "PCN", + "99A736": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 TX FPGA", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Logic Elements (LE)": "841000", + "Adaptive Logic Modules (ALM)": "284960", + "Adaptive Logic Module (ALM) Registers": "1139840", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "72 Mb", + "Digital Signal Processing (DSP) Blocks": "2016", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "440", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "216", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "72", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "24", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "99A7TA", + "Spec Code": "SRKCW", + "Ordering Code": "1ST085ES3F50I3VGBK", + "Stepping": "A1", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "99A7R8": "PCN", + "99A7RN": "PCN", + "99A7T3": "PCN", + "99A7NL": "PCN", + "99A7NM": "PCN", + "99A7NN": "PCN", + "99A7NK": "PCN", + "999FK3": "PCN", + "999FJP": "PCN", + "999N43": "PCN\n |\n MDDS", + "999FJN": "PCN", + "999N42": "PCN\n |\n MDDS", + "999FJM": "PCN", + "999FJL": "PCN", + "999FJK": "PCN", + "999FJJ": "PCN", + "999FJC": "PCN", + "999FJ5": "PCN", + "999FK2": "PCN", + "999FK1": "PCN", + "999FK0": "PCN", + "999FJZ": "PCN", + "999FJX": "PCN", + "999FJW": "PCN", + "999N45": "PCN\n |\n MDDS", + "999N44": "PCN\n |\n MDDS", + "999FHL": "PCN\n |\n MDDS", + "999FHK": "PCN\n |\n MDDS", + "999FJ2": "PCN\n |\n MDDS", + "999FHJ": "PCN\n |\n MDDS", + "999FJ0": "PCN\n |\n MDDS", + "999FHH": "PCN\n |\n MDDS", + "999FHZ": "PCN\n |\n MDDS", + "999FHG": "PCN\n |\n MDDS", + "999FHX": "PCN\n |\n MDDS", + "999FHW": "PCN\n |\n MDDS", + "999FHV": "PCN\n |\n MDDS", + "999FHT": "PCN\n |\n MDDS", + "999N3T": "PCN\n |\n MDDS", + "999FHP": "PCN\n |\n MDDS", + "999FHN": "PCN\n |\n MDDS", + "999FHM": "PCN\n |\n MDDS", + "999FJ4": "PCN", + "999PJV": "PCN", + "999FHR": "PCN\n |\n MDDS", + "999PJP": "PCN", + "999PJT": "PCN", + "999PJR": "PCN", + "99A7TA": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2019", + "Lithography": "14 nm", + "Logic Elements (LE)": "10200000", + "Adaptive Logic Modules (ALM)": "3466080", + "Adaptive Logic Module (ALM) Registers": "13864320", + "Fabric and I/O Phase-Locked Loops (PLLs)": "48", + "Maximum Embedded Memory": "308 Mb", + "Digital Signal Processing (DSP) Blocks": "3456", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "2304", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "1152", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "17.4 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F4938", + "Additional Information": "View now", + "MM#": "99AKX9", + "Spec Code": "SRL10", + "Ordering Code": "1SG10MHN3F74E2LGNE", + "Stepping": "A1", + "ECCN": "3A001.A.7.A", + "CCATS": "G171972", + "US HTS": "8542390001", + "99AKX9": "PCN", + "984022": "PCN\n |\n MDDS", + "999HCX": "PCN\n |\n MDDS", + "99AKX8": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "1325000", + "Adaptive Logic Modules (ALM)": "449280", + "Adaptive Logic Module (ALM) Registers": "1797120", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "114 Mb", + "Digital Signal Processing (DSP) Blocks": "2592", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7N9", + "Spec Code": "SRKC7", + "Ordering Code": "1SG110HN2F43E2LGBK", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "999GKH": "PCN", + "983686": "PCN\n |\n MDDS", + "983685": "PCN\n |\n MDDS", + "983684": "PCN\n |\n MDDS", + "983683": "PCN\n |\n MDDS", + "999GKJ": "PCN\n |\n MDDS", + "983676": "PCN\n |\n MDDS", + "983675": "PCN\n |\n MDDS", + "999L18": "PCN", + "983682": "PCN\n |\n MDDS", + "983695": "PCN\n |\n MDDS", + "99A7N9": "PCN", + "983681": "PCN\n |\n MDDS", + "983694": "PCN\n |\n MDDS", + "983680": "PCN\n |\n MDDS", + "983693": "PCN\n |\n MDDS", + "983679": "PCN\n |\n MDDS", + "983692": "PCN\n |\n MDDS", + "983678": "PCN\n |\n MDDS", + "983691": "PCN\n |\n MDDS", + "983677": "PCN\n |\n MDDS", + "983690": "PCN\n |\n MDDS", + "983689": "PCN\n |\n MDDS", + "983687": "PCN\n |\n MDDS", + "99A7M4": "PCN", + "999GHH": "PCN\n |\n MDDS", + "999GHG": "PCN\n |\n MDDS", + "99A7M5": "PCN", + "999GHF": "PCN\n |\n MDDS", + "99A7N5": "PCN", + "99A7N7": "PCN", + "99A7N8": "PCN", + "99A7M1": "PCN", + "999N6A": "PCN", + "99A7M2": "PCN", + "99A7M3": "PCN", + "986635": "PCN\n |\n MDDS", + "999T5F": "PCN", + "986634": "PCN\n |\n MDDS", + "986633": "PCN\n |\n MDDS", + "986629": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "1624000", + "Adaptive Logic Modules (ALM)": "550540", + "Adaptive Logic Module (ALM) Registers": "2202160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "122 Mb", + "Digital Signal Processing (DSP) Blocks": "3145", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "999K4T", + "Spec Code": "SRGL6", + "Ordering Code": "1SG165HN2F43I2VGAS", + "Stepping": "C2", + "ECCN": "Varies By Product", + "CCATS": "G171972", + "US HTS": "8542390001", + "999A2W": "PCN\n |\n MDDS", + "999K4T": "PCN\n |\n MDDS", + "999A2X": "PCN\n |\n MDDS", + "981013": "PCN\n |\n MDDS", + "986260": "PCN\n |\n MDDS", + "981012": "PCN\n |\n MDDS", + "986259": "PCN\n |\n MDDS", + "981011": "PCN\n |\n MDDS", + "986258": "PCN\n |\n MDDS", + "986270": "PCN\n |\n MDDS", + "981010": "PCN\n |\n MDDS", + "986257": "PCN\n |\n MDDS", + "986269": "PCN\n |\n MDDS", + "981009": "PCN\n |\n MDDS", + "986256": "PCN\n |\n MDDS", + "986268": "PCN\n |\n MDDS", + "981008": "PCN\n |\n MDDS", + "986255": "PCN\n |\n MDDS", + "986267": "PCN\n |\n MDDS", + "981003": "PCN\n |\n MDDS", + "981024": "PCN\n |\n MDDS", + "986254": "PCN\n |\n MDDS", + "986266": "PCN\n |\n MDDS", + "981023": "PCN\n |\n MDDS", + "986253": "PCN\n |\n MDDS", + "986265": "PCN\n |\n MDDS", + "981022": "PCN\n |\n MDDS", + "981020": "PCN\n |\n MDDS", + "981015": "PCN\n |\n MDDS", + "986262": "PCN\n |\n MDDS", + "981014": "PCN\n |\n MDDS", + "986261": "PCN\n |\n MDDS", + "981002": "PCN\n |\n MDDS", + "986252": "PCN\n |\n MDDS", + "986264": "PCN\n |\n MDDS", + "981001": "PCN\n |\n MDDS", + "986263": "PCN\n |\n MDDS", + "981000": "PCN\n |\n MDDS", + "986250": "PCN\n |\n MDDS", + "986247": "PCN\n |\n MDDS", + "986245": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "1679000", + "Adaptive Logic Modules (ALM)": "569200", + "Adaptive Logic Module (ALM) Registers": "2276800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "129 Mb", + "Digital Signal Processing (DSP) Blocks": "3326", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "999T53", + "Spec Code": "SRH1X", + "Ordering Code": "1SG166HN3F43I3VGAS", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "999T53": "PCN", + "999T52": "PCN", + "999T51": "PCN", + "999K6C": "PCN\n |\n MDDS", + "999T50": "PCN", + "999T4Z": "PCN", + "999T4X": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2005000", + "Adaptive Logic Modules (ALM)": "679680", + "Adaptive Logic Module (ALM) Registers": "2718720", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "138 Mb", + "Digital Signal Processing (DSP) Blocks": "3744", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "999A34", + "Spec Code": "SRF5J", + "Ordering Code": "1SG210HU1F50E2VGAS", + "Stepping": "C2", + "ECCN": "Varies By Product", + "CCATS": "G171972", + "US HTS": "8542390001", + "981070": "PCN\n |\n MDDS", + "981069": "PCN\n |\n MDDS", + "986303": "PCN\n |\n MDDS", + "981068": "PCN\n |\n MDDS", + "986302": "PCN\n |\n MDDS", + "981065": "PCN\n |\n MDDS", + "986301": "PCN\n |\n MDDS", + "981064": "PCN\n |\n MDDS", + "986298": "PCN\n |\n MDDS", + "981063": "PCN\n |\n MDDS", + "986296": "PCN\n |\n MDDS", + "981062": "PCN\n |\n MDDS", + "986295": "PCN\n |\n MDDS", + "986287": "PCN\n |\n MDDS", + "986319": "PCN\n |\n MDDS", + "986318": "PCN\n |\n MDDS", + "986317": "PCN\n |\n MDDS", + "999A34": "PCN", + "986316": "PCN\n |\n MDDS", + "986315": "PCN\n |\n MDDS", + "999A32": "PCN\n |\n MDDS", + "986314": "PCN\n |\n MDDS", + "999A31": "PCN\n |\n MDDS", + "981074": "PCN\n |\n MDDS", + "986304": "PCN\n |\n MDDS", + "981030": "PCN\n |\n MDDS", + "986272": "PCN\n |\n MDDS", + "981029": "PCN\n |\n MDDS", + "986271": "PCN\n |\n MDDS", + "981028": "PCN\n |\n MDDS", + "981027": "PCN\n |\n MDDS", + "981026": "PCN\n |\n MDDS", + "981025": "PCN\n |\n MDDS", + "986276": "PCN\n |\n MDDS", + "981061": "PCN\n |\n MDDS", + "981060": "PCN\n |\n MDDS", + "986332": "PCN\n |\n MDDS", + "986330": "PCN\n |\n MDDS", + "986327": "PCN\n |\n MDDS", + "986324": "PCN\n |\n MDDS", + "986320": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2073000", + "Adaptive Logic Modules (ALM)": "702720", + "Adaptive Logic Module (ALM) Registers": "2810880", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "145 Mb", + "Digital Signal Processing (DSP) Blocks": "3960", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7V1", + "Spec Code": "SRKDE", + "Ordering Code": "1SG211HN3F43I3VGBK", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "999T55": "PCN\n |\n MDDS", + "999T54": "PCN\n |\n MDDS", + "999K7C": "PCN\n |\n MDDS", + "999T56": "PCN\n |\n MDDS", + "99A7TW": "PCN", + "99A7TX": "PCN", + "99A7TZ": "PCN", + "99A7V0": "PCN", + "99A7V1": "PCN", + "99A7TT": "PCN", + "99A7TV": "PCN", + "999T5A": "PCN\n |\n MDDS", + "999T4W": "PCN\n |\n MDDS", + "999T59": "PCN\n |\n MDDS", + "999T58": "PCN\n |\n MDDS", + "999T57": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2422000", + "Adaptive Logic Modules (ALM)": "821150", + "Adaptive Logic Module (ALM) Registers": "3284600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "208 Mb", + "Digital Signal Processing (DSP) Blocks": "5011", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "1160", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "576", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397, F2912", + "Additional Information": "View now", + "MM#": "99A7G4", + "Spec Code": "SRK9Q", + "Ordering Code": "1SG250HU2F50E1VGBK", + "Stepping": "C2", + "ECCN": "Varies By Product", + "CCATS": "G171972", + "US HTS": "8542390001", + "999A36": "PCN\n |\n MDDS", + "999A35": "PCN\n |\n MDDS", + "960473": "PCN\n |\n MDDS", + "960471": "PCN\n |\n MDDS", + "960470": "PCN\n |\n MDDS", + "960475": "PCN\n |\n MDDS", + "960474": "PCN\n |\n MDDS", + "960461": "PCN\n |\n MDDS", + "984413": "PCN", + "956064": "PCN\n |\n MDDS", + "980931": "PCN\n |\n MDDS", + "980927": "PCN\n |\n MDDS", + "980916": "PCN\n |\n MDDS", + "980905": "PCN\n |\n MDDS", + "980901": "PCN\n |\n MDDS", + "956071": "PCN\n |\n MDDS", + "980966": "PCN\n |\n MDDS", + "956070": "PCN\n |\n MDDS", + "980965": "PCN\n |\n MDDS", + "956069": "PCN\n |\n MDDS", + "980963": "PCN\n |\n MDDS", + "956068": "PCN\n |\n MDDS", + "980956": "PCN\n |\n MDDS", + "956067": "PCN\n |\n MDDS", + "980955": "PCN\n |\n MDDS", + "99A7F5": "PCN", + "956066": "PCN\n |\n MDDS", + "980947": "PCN\n |\n MDDS", + "99A7F7": "PCN", + "956065": "PCN\n |\n MDDS", + "980939": "PCN\n |\n MDDS", + "980900": "PCN\n |\n MDDS", + "980899": "PCN\n |\n MDDS", + "981091": "PCN", + "981079": "PCN", + "981078": "PCN", + "981077": "PCN", + "981076": "PCN", + "981075": "PCN", + "956144": "PCN\n |\n MDDS", + "956143": "PCN\n |\n MDDS", + "956142": "PCN\n |\n MDDS", + "956141": "PCN\n |\n MDDS", + "956140": "PCN\n |\n MDDS", + "956139": "PCN\n |\n MDDS", + "956138": "PCN\n |\n MDDS", + "980993": "PCN", + "980992": "PCN", + "980991": "PCN", + "980990": "PCN", + "956137": "PCN\n |\n MDDS", + "956136": "PCN\n |\n MDDS", + "956135": "PCN\n |\n MDDS", + "980974": "PCN", + "980986": "PCN", + "980973": "PCN\n |\n MDDS", + "980985": "PCN", + "980972": "PCN\n |\n MDDS", + "980984": "PCN", + "980971": "PCN\n |\n MDDS", + "980983": "PCN", + "980970": "PCN\n |\n MDDS", + "980982": "PCN", + "956075": "PCN\n |\n MDDS", + "980969": "PCN\n |\n MDDS", + "980981": "PCN", + "980980": "PCN", + "956072": "PCN\n |\n MDDS", + "980967": "PCN\n |\n MDDS", + "980979": "PCN", + "980978": "PCN", + "99A7G4": "PCN", + "980977": "PCN", + "980989": "PCN", + "980976": "PCN", + "980988": "PCN", + "980975": "PCN", + "980987": "PCN", + "960423": "PCN\n |\n MDDS", + "960422": "PCN\n |\n MDDS", + "960421": "PCN\n |\n MDDS", + "960419": "PCN\n |\n MDDS", + "960417": "PCN\n |\n MDDS", + "960406": "PCN\n |\n MDDS", + "999G5L": "PCN", + "981087": "PCN", + "981100": "PCN", + "981086": "PCN", + "981099": "PCN\n |\n MDDS", + "981085": "PCN", + "981098": "PCN\n |\n MDDS", + "981084": "PCN", + "981097": "PCN", + "981083": "PCN", + "981096": "PCN", + "981082": "PCN", + "981095": "PCN", + "981081": "PCN", + "981093": "PCN", + "981080": "PCN", + "981092": "PCN", + "981090": "PCN", + "981089": "PCN", + "981088": "PCN", + "981101": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2753000", + "Adaptive Logic Modules (ALM)": "933120", + "Adaptive Logic Module (ALM) Registers": "3732480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "244 Mb", + "Digital Signal Processing (DSP) Blocks": "5760", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "1160", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "576", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397, F2912", + "Additional Information": "View now", + "MM#": "99AL0F", + "Spec Code": "SRL23", + "Ordering Code": "1SG280LN2F43I2LGNA", + "Stepping": "C2", + "ECCN": "Varies By Product", + "CCATS": "G171972", + "US HTS": "8542390001", + "960485": "PCN\n |\n MDDS", + "999A37": "PCN\n |\n MDDS", + "99AKX4": "PCN", + "99AKX7": "PCN", + "999GAT": "PCN\n |\n MDDS", + "960484": "PCN\n |\n MDDS", + "960479": "PCN\n |\n MDDS", + "960478": "PCN\n |\n MDDS", + "960477": "PCN\n |\n MDDS", + "960476": "PCN\n |\n MDDS", + "999G6R": "PCN", + "999G6P": "PCN", + "999G6N": "PCN", + "999G6M": "PCN", + "999G61": "PCN", + "999G60": "PCN", + "999G5Z": "PCN", + "999G5V": "PCN", + "984418": "PCN\n |\n MDDS", + "999G5R": "PCN", + "999G5P": "PCN", + "999G5N": "PCN\n |\n MDDS", + "999G63": "PCN\n |\n MDDS", + "999G62": "PCN\n |\n MDDS", + "99A7HW": "PCN", + "99A7HX": "PCN", + "99A7HZ": "PCN", + "99A7HA": "PCN", + "99A7HC": "PCN", + "99A7HD": "PCN", + "99A7HF": "PCN", + "980770": "PCN\n |\n MDDS", + "981356": "PCN\n |\n MDDS", + "980769": "PCN\n |\n MDDS", + "980801": "PCN\n |\n MDDS", + "981355": "PCN\n |\n MDDS", + "980768": "PCN\n |\n MDDS", + "980792": "PCN\n |\n MDDS", + "981354": "PCN\n |\n MDDS", + "980767": "PCN\n |\n MDDS", + "980791": "PCN\n |\n MDDS", + "980766": "PCN\n |\n MDDS", + "980790": "PCN\n |\n MDDS", + "980788": "PCN\n |\n MDDS", + "99A7H8": "PCN\n |\n MDDS", + "980764": "PCN\n |\n MDDS", + "99A7H9": "PCN", + "99A7H1": "PCN", + "99A7H2": "PCN", + "980776": "PCN\n |\n MDDS", + "99A7H3": "PCN", + "980775": "PCN\n |\n MDDS", + "99A7H4": "PCN", + "980774": "PCN\n |\n MDDS", + "99A7H5": "PCN", + "980772": "PCN\n |\n MDDS", + "980771": "PCN\n |\n MDDS", + "980805": "PCN\n |\n MDDS", + "981357": "PCN\n |\n MDDS", + "980751": "PCN\n |\n MDDS", + "980749": "PCN\n |\n MDDS", + "980748": "PCN\n |\n MDDS", + "99A7GZ": "PCN", + "980763": "PCN\n |\n MDDS", + "980762": "PCN\n |\n MDDS", + "980758": "PCN\n |\n MDDS", + "980757": "PCN\n |\n MDDS", + "980756": "PCN\n |\n MDDS", + "980755": "PCN\n |\n MDDS", + "980754": "PCN\n |\n MDDS", + "999A3Z": "PCN\n |\n MDDS", + "999A3F": "PCN\n |\n MDDS", + "999A3X": "PCN\n |\n MDDS", + "999A3D": "PCN\n |\n MDDS", + "999A3W": "PCN\n |\n MDDS", + "999A3C": "PCN\n |\n MDDS", + "999A3V": "PCN", + "999A3A": "PCN", + "999A3T": "PCN", + "999A39": "PCN", + "999A3R": "PCN", + "99AL0D": "PCN", + "999A3P": "PCN", + "99AL0F": "PCN", + "999A38": "PCN", + "980747": "PCN\n |\n MDDS", + "999A3N": "PCN", + "980743": "PCN\n |\n MDDS", + "999A3M": "PCN", + "980742": "PCN\n |\n MDDS", + "980741": "PCN\n |\n MDDS", + "999A41": "PCN\n |\n MDDS", + "999A40": "PCN\n |\n MDDS", + "986651": "PCN\n |\n MDDS", + "99A7G8": "PCN", + "99A7G9": "PCN", + "99A7G5": "PCN", + "99A7G6": "PCN", + "99A7G7": "PCN", + "999G5M": "PCN\n |\n MDDS", + "960430": "PCN\n |\n MDDS", + "960429": "PCN\n |\n MDDS", + "960428": "PCN\n |\n MDDS", + "960427": "PCN\n |\n MDDS", + "960426": "PCN\n |\n MDDS", + "960424": "PCN\n |\n MDDS", + "999MZ1": "PCN\n |\n MDDS", + "999MZL": "PCN", + "999MZ0": "PCN\n |\n MDDS", + "999MXX": "PCN\n |\n MDDS", + "999MXW": "PCN\n |\n MDDS", + "999MXV": "PCN\n |\n MDDS", + "999MXT": "PCN\n |\n MDDS", + "999MXR": "PCN\n |\n MDDS", + "999MZM": "PCN\n |\n MDDS", + "999MXP": "PCN\n |\n MDDS", + "999MXN": "PCN\n |\n MDDS", + "999MWK": "PCN", + "999MWC": "PCN", + "999MWA": "PCN", + "999MW9": "PCN", + "999MW8": "PCN", + "999MWP": "PCN", + "999MWN": "PCN", + "999MWM": "PCN", + "999MWL": "PCN", + "99A7FF": "PCN", + "99A7FG": "PCN", + "99A7FH": "PCN", + "99A7FR": "PCN", + "99A7F4": "PCN", + "99A7F1": "PCN", + "99A7F2": "PCN", + "99A7F3": "PCN", + "999K4V": "PCN\n |\n MDDS", + "956157": "PCN\n |\n MDDS", + "956156": "PCN\n |\n MDDS", + "956155": "PCN\n |\n MDDS", + "956154": "PCN\n |\n MDDS", + "956153": "PCN\n |\n MDDS", + "956152": "PCN\n |\n MDDS", + "956151": "PCN\n |\n MDDS", + "956149": "PCN\n |\n MDDS", + "956146": "PCN\n |\n MDDS", + "956145": "PCN\n |\n MDDS", + "980995": "PCN\n |\n MDDS", + "981407": "PCN\n |\n MDDS", + "980994": "PCN\n |\n MDDS", + "981406": "PCN\n |\n MDDS", + "981405": "PCN\n |\n MDDS", + "981404": "PCN\n |\n MDDS", + "981403": "PCN\n |\n MDDS", + "981415": "PCN\n |\n MDDS", + "981402": "PCN\n |\n MDDS", + "981414": "PCN\n |\n MDDS", + "981401": "PCN\n |\n MDDS", + "981413": "PCN\n |\n MDDS", + "981412": "PCN\n |\n MDDS", + "980999": "PCN\n |\n MDDS", + "980998": "PCN\n |\n MDDS", + "981411": "PCN\n |\n MDDS", + "981410": "PCN\n |\n MDDS", + "980997": "PCN\n |\n MDDS", + "981409": "PCN\n |\n MDDS", + "980996": "PCN\n |\n MDDS", + "981408": "PCN\n |\n MDDS", + "981420": "PCN\n |\n MDDS", + "956109": "PCN\n |\n MDDS", + "956108": "PCN\n |\n MDDS", + "956107": "PCN\n |\n MDDS", + "956106": "PCN\n |\n MDDS", + "956105": "PCN\n |\n MDDS", + "981400": "PCN\n |\n MDDS", + "99A7J0": "PCN\n |\n MDDS", + "99A7J1": "PCN\n |\n MDDS", + "956114": "PCN\n |\n MDDS", + "99A7K0": "PCN", + "956113": "PCN\n |\n MDDS", + "956112": "PCN\n |\n MDDS", + "956111": "PCN\n |\n MDDS", + "956110": "PCN\n |\n MDDS", + "981159": "PCN\n |\n MDDS", + "981158": "PCN\n |\n MDDS", + "981157": "PCN\n |\n MDDS", + "962878": "PCN\n |\n MDDS", + "981156": "PCN\n |\n MDDS", + "981155": "PCN\n |\n MDDS", + "981141": "PCN\n |\n MDDS", + "981153": "PCN\n |\n MDDS", + "981140": "PCN\n |\n MDDS", + "981152": "PCN\n |\n MDDS", + "981139": "PCN\n |\n MDDS", + "981151": "PCN\n |\n MDDS", + "981138": "PCN\n |\n MDDS", + "981150": "PCN\n |\n MDDS", + "981137": "PCN\n |\n MDDS", + "981149": "PCN\n |\n MDDS", + "981136": "PCN\n |\n MDDS", + "981148": "PCN\n |\n MDDS", + "981135": "PCN\n |\n MDDS", + "981147": "PCN\n |\n MDDS", + "981134": "PCN\n |\n MDDS", + "981146": "PCN\n |\n MDDS", + "981154": "PCN\n |\n MDDS", + "962865": "PCN\n |\n MDDS", + "962864": "PCN\n |\n MDDS", + "981143": "PCN\n |\n MDDS", + "981142": "PCN\n |\n MDDS", + "981127": "PCN\n |\n MDDS", + "981126": "PCN\n |\n MDDS", + "981125": "PCN\n |\n MDDS", + "981124": "PCN\n |\n MDDS", + "981123": "PCN\n |\n MDDS", + "981122": "PCN\n |\n MDDS", + "981121": "PCN\n |\n MDDS", + "981120": "PCN\n |\n MDDS", + "981133": "PCN\n |\n MDDS", + "981145": "PCN\n |\n MDDS", + "981144": "PCN\n |\n MDDS", + "975746": "PCN\n |\n MDDS", + "981132": "PCN\n |\n MDDS", + "981131": "PCN\n |\n MDDS", + "981130": "PCN\n |\n MDDS", + "981129": "PCN\n |\n MDDS", + "981128": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "378000", + "Adaptive Logic Modules (ALM)": "128160", + "Adaptive Logic Module (ALM) Registers": "512640", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "32 Mb", + "Digital Signal Processing (DSP) Blocks": "648", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "392", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152", + "Additional Information": "View now", + "MM#": "99A73N", + "Spec Code": "SRK8D", + "Ordering Code": "1SG040HH3F35I3VGBK", + "Stepping": "A0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999LJH": "PCN\n |\n MDDS", + "999LJ7": "PCN\n |\n MDDS", + "999LNT": "PCN\n |\n MDDS", + "999LJ6": "PCN\n |\n MDDS", + "999LNR": "PCN\n |\n MDDS", + "999LJ5": "PCN\n |\n MDDS", + "999LNP": "PCN\n |\n MDDS", + "999LNN": "PCN\n |\n MDDS", + "999LNM": "PCN\n |\n MDDS", + "999LNL": "PCN\n |\n MDDS", + "999LNK": "PCN\n |\n MDDS", + "999LHG": "PCN\n |\n MDDS", + "99A73N": "PCN\n |\n MDDS", + "99A73K": "PCN\n |\n MDDS", + "99A73L": "PCN\n |\n MDDS", + "99A73M": "PCN\n |\n MDDS", + "999LP2": "PCN\n |\n MDDS", + "999VGL": "PCN\n |\n MDDS", + "99A738": "PCN\n |\n MDDS", + "999LP1": "PCN\n |\n MDDS", + "999VGK": "PCN\n |\n MDDS", + "999VH5": "PCN\n |\n MDDS", + "99A73D": "PCN\n |\n MDDS", + "999VGJ": "PCN\n |\n MDDS", + "99A73F": "PCN\n |\n MDDS", + "999LP0": "PCN\n |\n MDDS", + "999VGH": "PCN\n |\n MDDS", + "999VH2": "PCN\n |\n MDDS", + "999LNZ": "PCN\n |\n MDDS", + "999VGZ": "PCN\n |\n MDDS", + "99A73H": "PCN\n |\n MDDS", + "999LNX": "PCN\n |\n MDDS", + "999VGG": "PCN\n |\n MDDS", + "99A73J": "PCN\n |\n MDDS", + "999LNW": "PCN\n |\n MDDS", + "999LJJ": "PCN\n |\n MDDS", + "999LNV": "PCN\n |\n MDDS", + "999VGW": "PCN\n |\n MDDS", + "999LP4": "PCN\n |\n MDDS", + "999LP3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "612000", + "Adaptive Logic Modules (ALM)": "207360", + "Adaptive Logic Module (ALM) Registers": "829440", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "52 Mb", + "Digital Signal Processing (DSP) Blocks": "1152", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "392", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "192", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152", + "Additional Information": "View now", + "MM#": "99A9NH", + "Spec Code": "SRKK6", + "Ordering Code": "1SG065HH3F35I3VGBK", + "Stepping": "A0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "99A7K3": "PCN\n |\n MDDS", + "99A7K4": "PCN\n |\n MDDS", + "99A7K5": "PCN\n |\n MDDS", + "99A7K6": "PCN\n |\n MDDS", + "99A7K8": "PCN\n |\n MDDS", + "99A9N1": "PCN\n |\n MDDS", + "99A9N6": "PCN\n |\n MDDS", + "99A9N7": "PCN\n |\n MDDS", + "99A9N8": "PCN\n |\n MDDS", + "999LK4": "PCN\n |\n MDDS", + "999LK3": "PCN\n |\n MDDS", + "999LK2": "PCN\n |\n MDDS", + "99A9NA": "PCN\n |\n MDDS", + "99A9NC": "PCN\n |\n MDDS", + "99A9ND": "PCN\n |\n MDDS", + "99A9NF": "PCN\n |\n MDDS", + "99A9NG": "PCN\n |\n MDDS", + "99A9NH": "PCN\n |\n MDDS", + "999LK5": "PCN\n |\n MDDS", + "999LJP": "PCN\n |\n MDDS", + "999LJN": "PCN\n |\n MDDS", + "999LJM": "PCN\n |\n MDDS", + "999LJL": "PCN\n |\n MDDS", + "999LJK": "PCN\n |\n MDDS", + "999LK1": "PCN\n |\n MDDS", + "99A7K9": "PCN\n |\n MDDS", + "999LK0": "PCN\n |\n MDDS", + "99A7KA": "PCN\n |\n MDDS", + "999LJZ": "PCN\n |\n MDDS", + "99A7KC": "PCN\n |\n MDDS", + "999LJX": "PCN\n |\n MDDS", + "999LKD": "PCN\n |\n MDDS", + "999LJW": "PCN\n |\n MDDS", + "999LKC": "PCN\n |\n MDDS", + "99A7K1": "PCN\n |\n MDDS", + "999LJV": "PCN\n |\n MDDS", + "999LKA": "PCN\n |\n MDDS", + "99A7K2": "PCN\n |\n MDDS", + "999LJT": "PCN\n |\n MDDS", + "999LK8": "PCN\n |\n MDDS", + "999LJR": "PCN\n |\n MDDS", + "999LK7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 GX FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "841000", + "Adaptive Logic Modules (ALM)": "284960", + "Adaptive Logic Module (ALM) Registers": "1139840", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "72 Mb", + "Digital Signal Processing (DSP) Blocks": "2016", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7MH", + "Spec Code": "SRKC0", + "Ordering Code": "1SG085HN3F43E3VGBK", + "Stepping": "A1", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "983672": "PCN\n |\n MDDS", + "983671": "PCN\n |\n MDDS", + "983670": "PCN\n |\n MDDS", + "99A7MC": "PCN", + "99A7MD": "PCN", + "99A7MF": "PCN", + "99A7MG": "PCN", + "99A7MH": "PCN", + "983378": "PCN\n |\n MDDS", + "983377": "PCN\n |\n MDDS", + "983376": "PCN\n |\n MDDS", + "983387": "PCN\n |\n MDDS", + "999GHD": "PCN", + "983386": "PCN\n |\n MDDS", + "999GHC": "PCN", + "983385": "PCN\n |\n MDDS", + "983669": "PCN\n |\n MDDS", + "983668": "PCN\n |\n MDDS", + "983667": "PCN\n |\n MDDS", + "983665": "PCN\n |\n MDDS", + "983389": "PCN\n |\n MDDS", + "983388": "PCN\n |\n MDDS", + "986642": "PCN\n |\n MDDS", + "999GH6": "PCN", + "983807": "PCN\n |\n MDDS", + "983384": "PCN\n |\n MDDS", + "983383": "PCN\n |\n MDDS", + "983382": "PCN\n |\n MDDS", + "983381": "PCN\n |\n MDDS", + "983380": "PCN\n |\n MDDS", + "983379": "PCN\n |\n MDDS", + "999GHA": "PCN", + "999GH8": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 MX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "14 nm", + "Logic Elements (LE)": "1679000", + "Adaptive Logic Modules (ALM)": "569200", + "Adaptive Logic Module (ALM) Registers": "2276800", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "223.5 Mb", + "Maximum High Bandwidth Memory†": "16 GB", + "Digital Signal Processing (DSP) Blocks": "3326", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "656", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "36", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2597, F2912", + "Additional Information": "View now", + "MM#": "99AL0P", + "Spec Code": "SRL2B", + "Ordering Code": "1SM16CHU3F53E3VGNE", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "999GKA": "PCN\n |\n MDDS", + "99AKXM": "PCN", + "99AKXN": "PCN", + "99AKXV": "PCN", + "985059": "PCN\n |\n MDDS", + "986617": "PCN", + "99AKXF": "PCN", + "985058": "PCN\n |\n MDDS", + "986610": "PCN", + "99AKXG": "PCN", + "985057": "PCN\n |\n MDDS", + "986598": "PCN", + "99AKXH": "PCN", + "985056": "PCN\n |\n MDDS", + "986587": "PCN", + "99AKXJ": "PCN", + "999GKL": "PCN", + "99AKXK": "PCN", + "985055": "PCN\n |\n MDDS", + "986571": "PCN", + "99AKXL": "PCN", + "985054": "PCN\n |\n MDDS", + "99AKXA": "PCN", + "99AKXC": "PCN", + "99AKXD": "PCN", + "99A7W1": "PCN", + "99AL0N": "PCN", + "99AL0P": "PCN", + "99AL0H": "PCN", + "99AL0J": "PCN", + "99AL0M": "PCN", + "985068": "PCN", + "985067": "PCN", + "985066": "PCN", + "985065": "PCN", + "985064": "PCN", + "985063": "PCN", + "99A7V2": "PCN", + "985062": "PCN\n |\n MDDS", + "99AL0G": "PCN", + "99AKZ6": "PCN", + "99AKZ8": "PCN", + "985070": "PCN", + "986627": "PCN", + "99AKZ9": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 MX FPGA", + "Status": "Launched", + "Launch Date": "2017", + "Lithography": "14 nm", + "Logic Elements (LE)": "2073000", + "Adaptive Logic Modules (ALM)": "702720", + "Adaptive Logic Module (ALM) Registers": "2810880", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "239.5 Mb", + "Maximum High Bandwidth Memory†": "16 GB", + "Digital Signal Processing (DSP) Blocks": "3960", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, HMC, MoSys, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "656", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "312", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "36", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2597, F2912", + "Additional Information": "View now", + "MM#": "99AL0L", + "Spec Code": "SRL28", + "Ordering Code": "1SM21BHN2F53E2VGNE", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "985052": "PCN\n |\n MDDS", + "985050": "PCN\n |\n MDDS", + "99AKX0": "PCN", + "99AKX1": "PCN", + "99AKX3": "PCN", + "99AKX5": "PCN", + "985053": "PCN\n |\n MDDS", + "99AKW8": "PCN", + "99AKWZ": "PCN", + "985049": "PCN\n |\n MDDS", + "985048": "PCN\n |\n MDDS", + "986625": "PCN\n |\n MDDS", + "986624": "PCN\n |\n MDDS", + "986623": "PCN\n |\n MDDS", + "986622": "PCN\n |\n MDDS", + "986621": "PCN\n |\n MDDS", + "986619": "PCN\n |\n MDDS", + "986618": "PCN\n |\n MDDS", + "999GKG": "PCN", + "999GKF": "PCN", + "999GK8": "PCN\n |\n MDDS", + "999GK7": "PCN", + "999GK6": "PCN", + "999GK5": "PCN", + "999GK2": "PCN", + "999GK1": "PCN", + "999GK0": "PCN", + "999GJZ": "PCN", + "999GJ4": "PCN\n |\n MDDS", + "999GJX": "PCN\n |\n MDDS", + "999GJW": "PCN\n |\n MDDS", + "999GHT": "PCN\n |\n MDDS", + "999GJV": "PCN\n |\n MDDS", + "999GHP": "PCN\n |\n MDDS", + "999GJT": "PCN\n |\n MDDS", + "99A7VP": "PCN", + "99A7VT": "PCN", + "999GK4": "PCN", + "99A7VA": "PCN", + "99A7VZ": "PCN", + "99A7W0": "PCN", + "985106": "PCN\n |\n MDDS", + "985105": "PCN\n |\n MDDS", + "99A7W2": "PCN", + "985104": "PCN\n |\n MDDS", + "99A7W3": "PCN", + "985103": "PCN\n |\n MDDS", + "99A7W4": "PCN", + "99A7W5": "PCN", + "99A7W6": "PCN", + "99A7V4": "PCN", + "99AL03": "PCN", + "999GHN": "PCN\n |\n MDDS", + "99AL04": "PCN", + "99A7V5": "PCN", + "99AL05": "PCN", + "99AL0K": "PCN", + "99A7V6": "PCN", + "99AL06": "PCN", + "99AL0L": "PCN", + "99A7V7": "PCN", + "99AL07": "PCN", + "99A7V8": "PCN", + "99AL08": "PCN", + "99A7V9": "PCN", + "99AL09": "PCN", + "985107": "PCN\n |\n MDDS", + "99A7VX": "PCN", + "985099": "PCN\n |\n MDDS", + "99AKZA": "PCN", + "985098": "PCN\n |\n MDDS", + "99AKZC": "PCN", + "985095": "PCN\n |\n MDDS", + "99AKZG": "PCN", + "985088": "PCN\n |\n MDDS", + "99AL0A": "PCN", + "985086": "PCN\n |\n MDDS", + "99AKZT": "PCN", + "99AL0C": "PCN", + "99AKZW": "PCN", + "985082": "PCN\n |\n MDDS", + "99AKZX": "PCN", + "99A7V3": "PCN", + "99AL01": "PCN", + "99AKXZ": "PCN", + "99AKZ3": "PCN", + "99AKZ4": "PCN", + "985081": "PCN\n |\n MDDS", + "99AKZ5": "PCN", + "985079": "PCN\n |\n MDDS", + "985102": "PCN\n |\n MDDS", + "985075": "PCN\n |\n MDDS", + "985100": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "1325000", + "Adaptive Logic Modules (ALM)": "449280", + "Adaptive Logic Module (ALM) Registers": "1797120", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "114 Mb", + "Digital Signal Processing (DSP) Blocks": "2592", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7MA", + "Spec Code": "SRKBV", + "Ordering Code": "1SX110HN3F43I3VGBK", + "Stepping": "A1", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "983767": "PCN\n |\n MDDS", + "983806": "PCN\n |\n MDDS", + "983799": "PCN\n |\n MDDS", + "983796": "PCN\n |\n MDDS", + "983795": "PCN\n |\n MDDS", + "983785": "PCN\n |\n MDDS", + "999GKK": "PCN\n |\n MDDS", + "983773": "PCN\n |\n MDDS", + "983772": "PCN\n |\n MDDS", + "983752": "PCN\n |\n MDDS", + "983751": "PCN\n |\n MDDS", + "99A70M": "PCN", + "983761": "PCN\n |\n MDDS", + "99A7MA": "PCN", + "983760": "PCN\n |\n MDDS", + "983759": "PCN\n |\n MDDS", + "983758": "PCN\n |\n MDDS", + "983757": "PCN\n |\n MDDS", + "983756": "PCN\n |\n MDDS", + "983755": "PCN\n |\n MDDS", + "983754": "PCN\n |\n MDDS", + "99A7M6": "PCN", + "983750": "PCN\n |\n MDDS", + "99A7M7": "PCN", + "983745": "PCN", + "99A7M8": "PCN", + "983739": "PCN\n |\n MDDS", + "986641": "PCN\n |\n MDDS", + "99A7M9": "PCN", + "999GHM": "PCN\n |\n MDDS", + "999GHL": "PCN\n |\n MDDS", + "999GHK": "PCN\n |\n MDDS", + "99A72Z": "PCN", + "983735": "PCN", + "986640": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "1624000", + "Adaptive Logic Modules (ALM)": "550540", + "Adaptive Logic Module (ALM) Registers": "2202160", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "122 Mb", + "Digital Signal Processing (DSP) Blocks": "3145", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "981175", + "Spec Code": "SRD7X", + "Ordering Code": "1SX165HU3F50I3VG", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "981161": "PCN", + "981160": "PCN", + "981168": "PCN", + "981167": "PCN", + "981166": "PCN", + "981165": "PCN", + "981164": "PCN", + "981163": "PCN", + "981162": "PCN", + "981175": "PCN", + "981174": "PCN", + "981173": "PCN", + "981172": "PCN", + "981171": "PCN", + "981170": "PCN", + "981169": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2005000", + "Adaptive Logic Modules (ALM)": "679680", + "Adaptive Logic Module (ALM) Registers": "2718720", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "138 Mb", + "Digital Signal Processing (DSP) Blocks": "3744", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "704", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397", + "Additional Information": "View now", + "MM#": "999A3J", + "Spec Code": "SRF5V", + "Ordering Code": "1SX210HU3F50I3VGAS", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "981198": "PCN", + "981184": "PCN", + "981183": "PCN", + "981182": "PCN", + "981180": "PCN", + "999A3H": "PCN", + "981195": "PCN", + "981194": "PCN", + "981193": "PCN", + "981192": "PCN", + "981352": "PCN", + "981191": "PCN", + "981190": "PCN", + "981185": "PCN", + "981197": "PCN", + "981196": "PCN", + "981181": "PCN", + "999A3J": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2422000", + "Adaptive Logic Modules (ALM)": "821150", + "Adaptive Logic Module (ALM) Registers": "3284600", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "208 Mb", + "Digital Signal Processing (DSP) Blocks": "5011", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "1160", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "576", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397, F2912", + "Additional Information": "View now", + "MM#": "999MZJ", + "Spec Code": "SRGV4", + "Ordering Code": "1SX250HN3F43I2LPAS", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "960511": "PCN\n |\n MDDS", + "981259": "PCN", + "960508": "PCN\n |\n MDDS", + "981258": "PCN", + "960495": "PCN\n |\n MDDS", + "960489": "PCN\n |\n MDDS", + "981257": "PCN", + "981256": "PCN", + "960488": "PCN\n |\n MDDS", + "981255": "PCN", + "960486": "PCN\n |\n MDDS", + "981254": "PCN", + "981253": "PCN", + "981266": "PCN", + "981265": "PCN", + "981264": "PCN", + "981263": "PCN", + "981262": "PCN", + "981261": "PCN", + "981260": "PCN", + "981239": "PCN", + "981238": "PCN", + "981237": "PCN", + "981249": "PCN", + "981236": "PCN", + "981248": "PCN", + "981235": "PCN", + "981247": "PCN", + "981234": "PCN", + "981246": "PCN", + "981233": "PCN", + "981245": "PCN", + "981232": "PCN", + "981244": "PCN", + "981252": "PCN", + "981251": "PCN", + "981250": "PCN", + "981213": "PCN", + "981277": "PCN", + "960436": "PCN\n |\n MDDS", + "981276": "PCN", + "960435": "PCN\n |\n MDDS", + "981210": "PCN", + "981275": "PCN", + "960434": "PCN\n |\n MDDS", + "981208": "PCN", + "981274": "PCN", + "981207": "PCN", + "981200": "PCN", + "981199": "PCN", + "981231": "PCN", + "981243": "PCN", + "981226": "PCN", + "981242": "PCN", + "981220": "PCN", + "981241": "PCN", + "981240": "PCN", + "981219": "PCN", + "981216": "PCN", + "981215": "PCN", + "981279": "PCN", + "981214": "PCN", + "981278": "PCN", + "960433": "PCN\n |\n MDDS", + "981353": "PCN", + "981361": "PCN", + "981360": "PCN", + "981359": "PCN", + "981358": "PCN", + "981273": "PCN", + "981272": "PCN", + "981271": "PCN", + "981270": "PCN", + "981269": "PCN", + "981268": "PCN", + "981267": "PCN", + "956167": "PCN\n |\n MDDS", + "956166": "PCN\n |\n MDDS", + "956165": "PCN\n |\n MDDS", + "956164": "PCN\n |\n MDDS", + "956163": "PCN\n |\n MDDS", + "956162": "PCN\n |\n MDDS", + "956159": "PCN\n |\n MDDS", + "956158": "PCN\n |\n MDDS", + "956161": "PCN\n |\n MDDS", + "956160": "PCN\n |\n MDDS", + "956121": "PCN\n |\n MDDS", + "956120": "PCN\n |\n MDDS", + "956119": "PCN\n |\n MDDS", + "956118": "PCN\n |\n MDDS", + "956117": "PCN\n |\n MDDS", + "956116": "PCN\n |\n MDDS", + "956115": "PCN\n |\n MDDS", + "956124": "PCN\n |\n MDDS", + "956123": "PCN\n |\n MDDS", + "956122": "PCN\n |\n MDDS", + "960432": "PCN\n |\n MDDS", + "960431": "PCN\n |\n MDDS", + "999MZJ": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "2753000", + "Adaptive Logic Modules (ALM)": "933120", + "Adaptive Logic Module (ALM) Registers": "3732480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "244 Mb", + "Digital Signal Processing (DSP) Blocks": "5760", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "1160", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "576", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "96", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760, F2397, F2912", + "Additional Information": "View now", + "MM#": "99A7HV", + "Spec Code": "SRKAQ", + "Ordering Code": "1SX280LU3F50I3XGBK", + "Stepping": "C2", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "981300": "PCN", + "981312": "PCN\n |\n MDDS", + "981299": "PCN", + "981311": "PCN\n |\n MDDS", + "999A2P": "PCN", + "981298": "PCN", + "981310": "PCN\n |\n MDDS", + "981297": "PCN", + "981309": "PCN\n |\n MDDS", + "981308": "PCN\n |\n MDDS", + "981296": "PCN", + "981295": "PCN", + "981294": "PCN", + "981307": "PCN\n |\n MDDS", + "960536": "PCN\n |\n MDDS", + "981306": "PCN\n |\n MDDS", + "960535": "PCN\n |\n MDDS", + "981305": "PCN\n |\n MDDS", + "981317": "PCN\n |\n MDDS", + "960534": "PCN\n |\n MDDS", + "981304": "PCN\n |\n MDDS", + "981316": "PCN\n |\n MDDS", + "960533": "PCN\n |\n MDDS", + "981303": "PCN\n |\n MDDS", + "981315": "PCN\n |\n MDDS", + "960532": "PCN\n |\n MDDS", + "981302": "PCN\n |\n MDDS", + "981314": "PCN\n |\n MDDS", + "960520": "PCN\n |\n MDDS", + "981301": "PCN", + "981313": "PCN\n |\n MDDS", + "981286": "PCN", + "981285": "PCN", + "981284": "PCN", + "999GCJ": "PCN", + "999GC5": "PCN", + "999G73": "PCN", + "976405": "PCN", + "999G72": "PCN", + "981293": "PCN", + "981292": "PCN", + "981291": "PCN", + "981290": "PCN", + "981289": "PCN", + "981288": "PCN", + "981287": "PCN", + "960437": "PCN\n |\n MDDS", + "999G6L": "PCN", + "999G71": "PCN", + "981283": "PCN", + "999G6Z": "PCN", + "960447": "PCN\n |\n MDDS", + "981282": "PCN", + "999G6X": "PCN", + "960446": "PCN\n |\n MDDS", + "981281": "PCN", + "960445": "PCN\n |\n MDDS", + "981280": "PCN", + "999G6W": "PCN", + "960444": "PCN\n |\n MDDS", + "999G6V": "PCN", + "960438": "PCN\n |\n MDDS", + "999G6T": "PCN", + "999G64": "PCN", + "99A7FA": "PCN", + "99A7HM": "PCN", + "99A7FC": "PCN", + "99A7HR": "PCN", + "99A7FD": "PCN", + "99A7HT": "PCN", + "99A7HV": "PCN", + "99A7HJ": "PCN", + "99A7HK": "PCN", + "99A7F9": "PCN", + "99A7HL": "PCN", + "99A7H6": "PCN", + "99A7H7": "PCN", + "981335": "PCN\n |\n MDDS", + "999A48": "PCN", + "981334": "PCN\n |\n MDDS", + "999A47": "PCN", + "981333": "PCN\n |\n MDDS", + "981345": "PCN\n |\n MDDS", + "999A46": "PCN", + "981332": "PCN\n |\n MDDS", + "981344": "PCN\n |\n MDDS", + "999A45": "PCN", + "99A7GT": "PCN", + "981331": "PCN\n |\n MDDS", + "981343": "PCN\n |\n MDDS", + "999A44": "PCN", + "99A7GV": "PCN", + "981342": "PCN\n |\n MDDS", + "999A43": "PCN", + "99A7GW": "PCN", + "981330": "PCN\n |\n MDDS", + "99A7GX": "PCN", + "981329": "PCN\n |\n MDDS", + "981341": "PCN\n |\n MDDS", + "981340": "PCN\n |\n MDDS", + "981339": "PCN\n |\n MDDS", + "981338": "PCN\n |\n MDDS", + "981337": "PCN\n |\n MDDS", + "981336": "PCN\n |\n MDDS", + "981348": "PCN\n |\n MDDS", + "981321": "PCN\n |\n MDDS", + "981320": "PCN\n |\n MDDS", + "981319": "PCN\n |\n MDDS", + "981318": "PCN\n |\n MDDS", + "981328": "PCN\n |\n MDDS", + "981327": "PCN\n |\n MDDS", + "981326": "PCN\n |\n MDDS", + "981325": "PCN\n |\n MDDS", + "981324": "PCN\n |\n MDDS", + "999A3L": "PCN", + "999A42": "PCN", + "981323": "PCN\n |\n MDDS", + "999A3K": "PCN", + "981322": "PCN\n |\n MDDS", + "956168": "PCN\n |\n MDDS", + "956174": "PCN\n |\n MDDS", + "956173": "PCN\n |\n MDDS", + "956172": "PCN\n |\n MDDS", + "956171": "PCN\n |\n MDDS", + "956170": "PCN\n |\n MDDS", + "956169": "PCN\n |\n MDDS", + "986711": "PCN", + "956130": "PCN\n |\n MDDS", + "956129": "PCN\n |\n MDDS", + "956128": "PCN\n |\n MDDS", + "956127": "PCN\n |\n MDDS", + "956126": "PCN\n |\n MDDS", + "956125": "PCN\n |\n MDDS", + "956134": "PCN\n |\n MDDS", + "956133": "PCN\n |\n MDDS", + "956132": "PCN\n |\n MDDS", + "956131": "PCN\n |\n MDDS", + "99A7GC": "PCN", + "99A7GG": "PCN", + "99A7GP": "PCN", + "99A7GR": "PCN", + "99A7FX": "PCN", + "99A7FZ": "PCN", + "99A7G3": "PCN", + "962877": "PCN\n |\n MDDS", + "999G5K": "PCN", + "999G5H": "PCN", + "999MZH": "PCN", + "999MZG": "PCN", + "999MZF": "PCN", + "999MZD": "PCN", + "962874": "PCN\n |\n MDDS", + "999MZ7": "PCN", + "999MZ6": "PCN", + "999MZ5": "PCN", + "999MZ4": "PCN", + "999MZ3": "PCN", + "999MZ2": "PCN", + "999MX0": "PCN", + "999MWW": "PCN", + "999MWV": "PCN", + "999MWT": "PCN", + "999MXM": "PCN", + "999MXL": "PCN", + "999MXC": "PCN", + "999MX8": "PCN", + "999MX1": "PCN", + "956177": "PCN\n |\n MDDS", + "956176": "PCN\n |\n MDDS", + "956175": "PCN\n |\n MDDS", + "999MWR": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "378000", + "Adaptive Logic Modules (ALM)": "128160", + "Adaptive Logic Module (ALM) Registers": "512640", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "32 Mb", + "Digital Signal Processing (DSP) Blocks": "648", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "392", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "120", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152", + "Additional Information": "View now", + "MM#": "99A748", + "Spec Code": "SRK8K", + "Ordering Code": "1SX040HH3F35I3VGBK", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "999LHJ": "PCN", + "999LHH": "PCN", + "999LHM": "PCN", + "999LHL": "PCN", + "999LHK": "PCN", + "999LRF": "PCN", + "99A73P": "PCN", + "99A73R": "PCN", + "99A745": "PCN", + "99A746": "PCN", + "99A747": "PCN", + "999LPC": "PCN", + "99A748": "PCN", + "999LPT": "PCN", + "999LPR": "PCN", + "999VH4": "PCN", + "99A73G": "PCN", + "999LPA": "PCN", + "999LP9": "PCN", + "999LRD": "PCN", + "999LP8": "PCN", + "999LRC": "PCN", + "999VGV": "PCN", + "999LP7": "PCN", + "999LR1": "PCN", + "999VGT": "PCN", + "999LP6": "PCN", + "999LR0": "PCN", + "999VGR": "PCN", + "999LP5": "PCN", + "999LPX": "PCN", + "999VGP": "PCN", + "999LPW": "PCN", + "999VGN": "PCN", + "999LPV": "PCN", + "999VGM": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "612000", + "Adaptive Logic Modules (ALM)": "207360", + "Adaptive Logic Module (ALM) Registers": "829440", + "Fabric and I/O Phase-Locked Loops (PLLs)": "8", + "Maximum Embedded Memory": "52 Mb", + "Digital Signal Processing (DSP) Blocks": "1152", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "392", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "192", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "24", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1152", + "Additional Information": "View now", + "MM#": "99A9NP", + "Spec Code": "SRKKC", + "Ordering Code": "1SX065HH3F35I3VGBK", + "Stepping": "A0", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "99A7K7": "PCN\n |\n MDDS", + "999LLG": "PCN\n |\n MDDS", + "999LLF": "PCN\n |\n MDDS", + "999LLD": "PCN\n |\n MDDS", + "999LLC": "PCN\n |\n MDDS", + "999LLA": "PCN\n |\n MDDS", + "999LL9": "PCN\n |\n MDDS", + "99A9NM": "PCN", + "99A9NN": "PCN", + "999LLN": "PCN\n |\n MDDS", + "99A9NP": "PCN", + "999LLK": "PCN\n |\n MDDS", + "999LLJ": "PCN\n |\n MDDS", + "999LLH": "PCN\n |\n MDDS", + "99A9NJ": "PCN", + "99A9NK": "PCN", + "99A9NL": "PCN", + "999LKK": "PCN\n |\n MDDS", + "999LL5": "PCN\n |\n MDDS", + "999LL3": "PCN\n |\n MDDS", + "99A9N9": "PCN", + "999LL2": "PCN\n |\n MDDS", + "999LKR": "PCN\n |\n MDDS", + "999LKP": "PCN\n |\n MDDS", + "999LKN": "PCN\n |\n MDDS", + "999LKM": "PCN\n |\n MDDS", + "999LKL": "PCN\n |\n MDDS", + "99A7KF": "PCN\n |\n MDDS", + "99A7KG": "PCN\n |\n MDDS", + "99A7KH": "PCN\n |\n MDDS", + "99A7KJ": "PCN\n |\n MDDS", + "99A7KK": "PCN\n |\n MDDS", + "999LKJ": "PCN\n |\n MDDS", + "999LKG": "PCN\n |\n MDDS", + "999LKF": "PCN\n |\n MDDS", + "99A7KD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 SX SoC FPGA", + "Status": "Launched", + "Launch Date": "2013", + "Lithography": "14 nm", + "Logic Elements (LE)": "841000", + "Adaptive Logic Modules (ALM)": "284960", + "Adaptive Logic Module (ALM) Registers": "1139840", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "72 Mb", + "Digital Signal Processing (DSP) Blocks": "2016", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR4, DDR3, DDR2, DDR, QDR II, QDR II+, RLDRAM II, RLDRAM 3, HMC, MoSys", + "Maximum User I/O Count†": "688", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "336", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "48", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.3 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, 100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7MW", + "Spec Code": "SRKC3", + "Ordering Code": "1SX085HN3F43I3VGBK", + "Stepping": "A1", + "ECCN": "5A002U", + "CCATS": "G178951", + "US HTS": "8542390001", + "983699": "PCN\n |\n MDDS", + "983696": "PCN\n |\n MDDS", + "983720": "PCN\n |\n MDDS", + "983719": "PCN\n |\n MDDS", + "983718": "PCN\n |\n MDDS", + "999N3R": "PCN\n |\n MDDS", + "983717": "PCN\n |\n MDDS", + "983713": "PCN\n |\n MDDS", + "983704": "PCN\n |\n MDDS", + "983701": "PCN\n |\n MDDS", + "99A7MJ": "PCN\n |\n MDDS", + "99A7MN": "PCN\n |\n MDDS", + "99A7MW": "PCN\n |\n MDDS", + "999GHJ": "PCN\n |\n MDDS", + "983726": "PCN\n |\n MDDS", + "983725": "PCN\n |\n MDDS", + "983724": "PCN\n |\n MDDS", + "983723": "PCN\n |\n MDDS", + "983722": "PCN\n |\n MDDS", + "983721": "PCN\n |\n MDDS", + "983734": "PCN\n |\n MDDS", + "986639": "PCN\n |\n MDDS", + "983733": "PCN\n |\n MDDS", + "986638": "PCN\n |\n MDDS", + "983732": "PCN\n |\n MDDS", + "983731": "PCN\n |\n MDDS", + "983730": "PCN\n |\n MDDS", + "983729": "PCN\n |\n MDDS", + "983728": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 DX FPGA", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Logic Elements (LE)": "1325000", + "Adaptive Logic Modules (ALM)": "449280", + "Adaptive Logic Module (ALM) Registers": "1797120", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "114 Mb", + "Digital Signal Processing (DSP) Blocks": "2592", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Processor System (HPS)": "Quad-core 64-bit ARM* Cortex*-A53", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, Intel® Optane™ Persistent Memory, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "528", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "264", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "32", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "8", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, PCIe Gen4, 10/25/100G Ethernet", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F1760", + "Additional Information": "View now", + "MM#": "99A7W8", + "Spec Code": "SRKEA", + "Ordering Code": "1SD21BPT1F53E2VGBK", + "Stepping": "B0", + "ECCN": "3A001.A.7.B", + "CCATS": "G171972", + "US HTS": "8542390001", + "99A7W8": "PCN", + "999LDH": "PCN", + "999LD0": "PCN", + "999LCZ": "PCN", + "999LCX": "PCN", + "999LCT": "PCN", + "99A7W7": "PCN" + }, + { + "Product Collection": "Intel® Stratix® 10 DX FPGA", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Logic Elements (LE)": "2073000", + "Adaptive Logic Modules (ALM)": "702720", + "Adaptive Logic Module (ALM) Registers": "2810880", + "Fabric and I/O Phase-Locked Loops (PLLs)": "16", + "Maximum Embedded Memory": "239.5 Mb", + "Maximum High Bandwidth Memory†": "8 GB", + "Digital Signal Processing (DSP) Blocks": "3960", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, Intel® Optane™ Persistent Memory, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "612", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "306", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "84", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "12", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, PCIe Gen4, 10/25/100G Ethernet, UPI", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2597", + "Additional Information": "View now", + "MM#": "99AXRZ", + "Spec Code": "SRLVU", + "Ordering Code": "1SD21BPT2F53E2VGNE", + "Stepping": "B0", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542390001", + "999LNH": "PCN\n |\n MDDS", + "99A7TG": "PCN\n |\n MDDS", + "999LN4": "PCN\n |\n MDDS", + "99AXPZ": "PCN", + "99AXR0": "PCN", + "99AXRG": "PCN", + "99AXRW": "PCN", + "99AXRZ": "PCN", + "999LNF": "PCN\n |\n MDDS", + "999LNC": "PCN\n |\n MDDS", + "99A7TC": "PCN\n |\n MDDS", + "999LNA": "PCN\n |\n MDDS", + "99A7TD": "PCN\n |\n MDDS", + "999LN9": "PCN\n |\n MDDS", + "99A7TF": "PCN\n |\n MDDS", + "999LN8": "PCN\n |\n MDDS", + "999LN7": "PCN\n |\n MDDS", + "999LN6": "PCN\n |\n MDDS", + "999LN5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Stratix® 10 DX FPGA", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Logic Elements (LE)": "2753000", + "Adaptive Logic Modules (ALM)": "933120", + "Adaptive Logic Module (ALM) Registers": "3732480", + "Fabric and I/O Phase-Locked Loops (PLLs)": "24", + "Maximum Embedded Memory": "244 Mb", + "Digital Signal Processing (DSP) Blocks": "5760", + "Digital Signal Processing (DSP) Format": "Multiply and Accumulate, Variable Precision, Fixed Point (hard IP), Floating Point (hard IP)", + "Hard Memory Controllers": "Yes", + "External Memory Interfaces (EMIF)": "DDR, DDR2, DDR3, DDR4, Intel® Optane™ Persistent Memory, QDR II, QDR II+, RLDRAM II, RLDRAM 3", + "Maximum User I/O Count†": "816", + "I/O Standards Support": "3.0 V to 3.3 V LVTTL, 1.2 V to 3.3V LVCMOS, SSTL, POD, HSTL, HSUL, Differential SSTL, Differential POD, Differential HSTL, Differential HSUL, LVDS, Mini-LVDS, RSDS, LVPECL", + "Maximum LVDS Pairs": "408", + "Maximum Non-Return to Zero (NRZ) Transceivers†": "84", + "Maximum Non-Return to Zero (NRZ) Data Rate†": "28.9 Gbps", + "Maximum Pulse-Amplitude Modulation (PAM4) Transceivers†": "4", + "Maximum Pulse-Amplitude Modulation (PAM4) Data Rate†": "57.8 Gbps", + "Transceiver Protocol Hard IP": "PCIe Gen3, PCIe Gen4, 10/25/100G Ethernet, UPI", + "Hyper-Registers": "Yes", + "FPGA Bitstream Security": "Yes", + "Package Options": "F2912", + "Additional Information": "View now", + "MM#": "999GGH", + "Spec Code": "SRFV3", + "Ordering Code": "1SD280PT3F55I3VG", + "Stepping": "C2", + "ECCN": "3A001.A.7.A", + "CCATS": "G171972", + "US HTS": "8542390001", + "999GG4": "PCN\n |\n MDDS", + "999GGH": "PCN\n |\n MDDS", + "999GGG": "PCN\n |\n MDDS", + "999GGF": "PCN\n |\n MDDS", + "999GGD": "PCN\n |\n MDDS", + "999GG9": "PCN\n |\n MDDS", + "999GG8": "PCN\n |\n MDDS", + "999GG7": "PCN\n |\n MDDS", + "999GG6": "PCN\n |\n MDDS", + "999GG5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82578 Gigabit Ethernet PHY", + "Code Name": "Products formerly Hanksville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "04/16/2012", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "Data Rate Per Port": "1 Gbps", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "No", + "Package Size": "6mm x 6mm", + "MACsec IEEE 802.1 AE": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "903521", + "Spec Code": "SLGY8", + "Ordering Code": "WG82578DC", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903521": "PCN\n |\n MDDS", + "903520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82578 Gigabit Ethernet PHY", + "Code Name": "Products formerly Hanksville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "04/19/2014", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "Data Rate Per Port": "1 Gbps", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Package Size": "6mm x 6mm", + "MACsec IEEE 802.1 AE": "Yes", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "903518", + "Spec Code": "SLGY5", + "Ordering Code": "WG82578DM", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903517": "MDDS", + "903518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82577 Gigabit Ethernet PHY", + "Code Name": "Products formerly Hanksville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "04/02/2013", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "Data Rate Per Port": "1 Gbps", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "No", + "Package Size": "6mm x 6mm", + "MM#": "903238", + "Spec Code": "SLGWU", + "Ordering Code": "WG82577LC", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903238": "PCN\n |\n MDDS", + "903237": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82577 Gigabit Ethernet PHY", + "Code Name": "Products formerly Hanksville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Expected Discontinuance": "Q1'18", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "Proprietary", + "Jumbo Frames Supported": "Yes", + "Package Size": "6mm x 6mm", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "903236", + "Spec Code": "SLGWS", + "Ordering Code": "WG82577LM", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903235": "PCN\n |\n MDDS", + "903236": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82576 Gigabit Ethernet Controller", + "Code Name": "Products formerly Kawela", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "90 nm", + "TDP": "2.8 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Dual", + "System Interface Type": "PCIe v2.0 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Package Size": "25x25mm", + "Intel® Virtualization Technology for Connectivity (VT-c)": "I/OAT, VMDq, VMDc", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No" + }, + { + "Product Collection": "Intel® 82576 Gigabit Ethernet Controller", + "Code Name": "Products formerly Kawela", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "90 nm", + "TDP": "2.8 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Port Configuration": "Dual", + "System Interface Type": "PCIe v2.0 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Package Size": "25mm x 25mm", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDc(SR-IOV with mobility), VMDq, Intel® I/OAT", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "916956", + "Spec Code": "SLJBH", + "Ordering Code": "JL82576EB", + "Stepping": "A2", + "ECCN": "5A992CN3", + "CCATS": "G054018", + "US HTS": "8542310001", + "916956": "PCN\n |\n MDDS", + "916955": "PCN\n |\n MDDS", + "916950": "PCN\n |\n MDDS", + "916949": "PCN\n |\n MDDS", + "898304": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82575 Gigabit Ethernet Controller", + "Code Name": "Products formerly Zoar", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "90 nm", + "TDP": "2.8 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Dual", + "System Interface Type": "PCIe v2.0 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Package Size": "25x25mm", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq, I/OAT", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "MM#": "916838", + "Spec Code": "SLJBT", + "Ordering Code": "JL82575EB", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "890990": "PCN\n |\n MDDS", + "916838": "PCN\n |\n MDDS", + "916837": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82574 Gigabit Ethernet Controller", + "Code Name": "Products formerly Hartwell", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Expected Discontinuance": "LOD 1/31/2021; LSD 7/31/2021", + "Lithography": "90 nm", + "TDP": "0.727 W", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Datasheet": "View now", + "Description": "See PCN 117376 for EOL timelines. Industrial Temperature 1GbE Controller. See the “Intel® 82574 Family Gigabit Ethernet Controller: Spec Update” for Top Marking information.", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v1.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "1000Base-T", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "898556", + "Spec Code": "SLBAC", + "Ordering Code": "WG82574IT", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "898556": "PCN\n |\n MDDS", + "898555": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82574 Gigabit Ethernet Controller", + "Code Name": "Products formerly Hartwell", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Expected Discontinuance": "LOD 1/31/2021; LSD 7/31/2021", + "Lithography": "90 nm", + "TDP": "0.727 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Description": "See PCN 117376 for EOL Timelines", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "PCIe v1.1 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "100BASE-T, 1000BASE-T", + "Package Size": "9mm x 9mm", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "Yes", + "Supported Under Intel vPro® Technology": "No", + "MM#": "898553", + "Spec Code": "SLBA9", + "Ordering Code": "WG82574L", + "Stepping": "A1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "898553": "PCN\n |\n MDDS", + "898552": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82573 Gigabit Ethernet Controller", + "Code Name": "Products formerly Vidalia", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Expected Discontinuance": "LOD 1/31/2016, LSD 6/30/2016", + "Lithography": "130 nm", + "TDP": "1.3 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 113629 for EOL Timelines", + "Port Configuration": "Single", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Interfaces Supported": "1000Base-T", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "871245", + "Spec Code": "SL8JD", + "Ordering Code": "PC82573L", + "Stepping": "A0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "871241": "PCN", + "871245": "PCN\n |\n MDDS", + "871244": "PCN\n |\n MDDS", + "871238": "PCN" + }, + { + "Product Collection": "Intel® 82573 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tekoa", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Expected Discontinuance": "LOD 1/31/2016, LSD 6/30/2016", + "Lithography": "130 nm", + "TDP": "1.3 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 113585 for EOL timelines.", + "Port Configuration": "Single", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Interfaces Supported": "1000Base-T", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "865601", + "Spec Code": "SL7YN", + "Ordering Code": "PC82573E", + "Stepping": "A3", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "865600": "PCN\n |\n MDDS", + "865601": "PCN\n |\n MDDS", + "865591": "PCN", + "865599": "PCN" + }, + { + "Product Collection": "Intel® 82573 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tekoa", + "Status": "Discontinued", + "Launch Date": "Q2'05", + "Expected Discontinuance": "LOD 1/31/2016, LSD 6/30/2016", + "Lithography": "130 nm", + "TDP": "1.4 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 113585 for EOL timelines.", + "Port Configuration": "Single", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Interfaces Supported": "1000Base-T", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "869939", + "Spec Code": "SL8F4", + "Ordering Code": "PC82573V", + "Stepping": "A3", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "869939": "PCN\n |\n MDDS", + "869938": "PCN\n |\n MDDS", + "869937": "PCN" + }, + { + "Product Collection": "Intel® 82572 Gigabit Ethernet Controller", + "Code Name": "Products formerly Rimon", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "90 nm", + "TDP": "2.14 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "17x17mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "916940", + "Spec Code": "SLJB9", + "Ordering Code": "JL82572EI", + "Stepping": "D1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "875302": "PCN\n |\n MDDS", + "875304": "PCN\n |\n MDDS", + "875297": "PCN\n |\n MDDS", + "916939": "PCN\n |\n MDDS", + "916299": "PCN\n |\n MDDS", + "916300": "PCN\n |\n MDDS", + "875299": "PCN\n |\n MDDS", + "916940": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82571 Gigabit Ethernet Controller", + "Code Name": "Products formerly Ophir", + "Status": "Discontinued", + "Launch Date": "Q3'05", + "Expected Discontinuance": "See Published PCN for EOL Details", + "Lithography": "90 nm", + "TDP": "3.43 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Datasheet": "View now", + "Port Configuration": "Dual", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Package Size": "17x17mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "916836", + "Spec Code": "SLJB5", + "Ordering Code": "JL82571EB", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G033196", + "US HTS": "8542310001", + "875300": "PCN\n |\n MDDS", + "875303": "PCN\n |\n MDDS", + "916836": "PCN\n |\n MDDS", + "875296": "PCN\n |\n MDDS", + "916663": "PCN\n |\n MDDS", + "916297": "PCN\n |\n MDDS", + "875298": "PCN\n |\n MDDS", + "916298": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82567LM Gigabit Ethernet Phy", + "Code Name": "Products formerly Boazman", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Expected Discontinuance": "Q1'17", + "Lithography": "90 nm", + "TDP": "0.64 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Package Size": "8x8, QFN", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "Yes", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "Yes" + }, + { + "Product Collection": "Intel® 82567V Gigabit Ethernet Phy", + "Code Name": "Products formerly Boazman", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Expected Discontinuance": "Q1'17", + "Lithography": "90 nm", + "TDP": "0.64 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "Data Rate Per Port": "1GbE", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "8x8, QFN", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "iWARP/RDMA": "No" + }, + { + "Product Collection": "Intel® 82566 Gigabit Ethernet PHY", + "Code Name": "Products formerly Nineveh", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2/7/2011", + "Lithography": "90 nm", + "TDP": "1.18 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Jumbo Frames Supported": "No", + "Package Size": "10x10", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "883492", + "Spec Code": "SL97K", + "Ordering Code": "RU82566DC", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "883492": "PCN\n |\n MDDS", + "879298": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82566 Gigabit Ethernet PHY", + "Code Name": "Products formerly Nineveh", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "6/01/2011", + "Lithography": "90 nm", + "TDP": "1.18 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Jumbo Frames Supported": "Yes", + "Package Size": "10x10, BGA", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "879201", + "Spec Code": "SL95K", + "Ordering Code": "RU82566DM", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "878628": "PCN\n |\n MDDS", + "879201": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82566 Gigabit Ethernet PHY", + "Code Name": "Products formerly Nineveh", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2/7/2011", + "Lithography": "90 nm", + "TDP": "1.18 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Jumbo Frames Supported": "No", + "Package Size": "10x10, BGA", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "885899", + "Spec Code": "SL99K", + "Ordering Code": "RU82566MC", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "885898": "PCN\n |\n MDDS", + "885899": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82566 Gigabit Ethernet PHY", + "Code Name": "Products formerly Nineveh", + "Status": "Discontinued", + "Launch Date": "Q2'06", + "Expected Discontinuance": "2/7/2011", + "Lithography": "90 nm", + "TDP": "1.18 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Jumbo Frames Supported": "No", + "Package Size": "10x10, BGA", + "Intel® Virtualization Technology for Connectivity (VT-c)": "N/A", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "Yes", + "MM#": "885897", + "Spec Code": "SL984", + "Ordering Code": "RU82566MM", + "Stepping": "B1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "885897": "PCN\n |\n MDDS", + "885396": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82564 Gigabit Ethernet PHY", + "Code Name": "Products formerly Gilgal", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "150 nm", + "TDP": "1.3 W", + "Operating Temperature Range": "0°C to 60°C", + "Operating Temperature (Maximum)": "60 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "No", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Package Size": "14x14mm", + "MM#": "865011", + "Ordering Code": "HY82564EB", + "Stepping": "C0", + "Spec Code": "SL7WH", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "864997": "PCN\n |\n MDDS", + "865011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82563 Gigabit Ethernet PHY", + "Code Name": "Products formerly Gilgal", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "July 28, 2014", + "Lithography": "150 nm", + "TDP": "2.6 W", + "Operating Temperature Range": "0°C to 60°C", + "Operating Temperature (Maximum)": "60 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Dual", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "Yes", + "Package Size": "14x14mm", + "On-chip QoS and Traffic Management": "No", + "Flexible Port Partitioning": "No", + "Virtual Machine Device Queues (VMDq)": "No", + "PCI-SIG* SR-IOV Capable": "No", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "iWARP/RDMA": "No", + "Intel® Data Direct I/O Technology": "No", + "MM#": "864999", + "Spec Code": "SL7WG", + "Ordering Code": "HY82563EB", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "864999": "PCN\n |\n MDDS", + "864991": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82547 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tanacross", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Expected Discontinuance": "10/2012", + "Lithography": "130 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "866562", + "Spec Code": "SL853", + "Ordering Code": "LU82547GI", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "866561": "PCN\n |\n MDDS", + "866562": "PCN\n |\n MDDS", + "855106": "PCN\n |\n MDDS", + "855107": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82546 Gigabit Ethernet Controller", + "Code Name": "Products formerly Anvik", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Expected Discontinuance": "LOD 12/31/2016, LSD 6/30/2017", + "Lithography": "150 nm", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 114236 for published EOL timelines.", + "Port Configuration": "Dual", + "System Interface Type": "PCI-X", + "Package Size": "21x21mm", + "MM#": "867767", + "Ordering Code": "NH82546GB", + "Stepping": "A0", + "Spec Code": "SL87W", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "855352": "PCN\n |\n MDDS", + "867764": "PCN\n |\n MDDS", + "855365": "PCN\n |\n MDDS", + "867767": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82546 Gigabit Ethernet Controller", + "Code Name": "Products formerly Anvik", + "Status": "Discontinued", + "Launch Date": "Q2'02", + "Lithography": "150 nm", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Dual", + "System Interface Type": "PCI-X", + "Package Size": "21x21mm", + "MM#": "845636", + "Ordering Code": "FW82546EB", + "Stepping": "A0", + "Spec Code": "SL692", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "845635": "PCN\n |\n MDDS", + "845636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82545 Gigabit Ethernet Controller", + "Code Name": "Products formerly Attla", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Expected Discontinuance": "Q1' 14", + "Lithography": "150 nm", + "TDP": "1.5 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "21x21mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "867806", + "Spec Code": "SL87X", + "Ordering Code": "PC82545GM", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "855561": "PCN\n |\n MDDS", + "867806": "PCN\n |\n MDDS", + "867805": "PCN\n |\n MDDS", + "855552": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82545 Gigabit Ethernet Controller", + "Code Name": "Products formerly Kenai", + "Status": "Discontinued", + "Launch Date": "Q2'02", + "Lithography": "150 nm", + "TDP": "1.5 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "Package Size": "21x21mm", + "MM#": "845634", + "Ordering Code": "RC82545EM", + "Stepping": "A1", + "Spec Code": "SL68Z", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "845633": "PCN\n |\n MDDS", + "845634": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82544 Gigabit Ethernet Controller", + "Code Name": "Products formerly Cordova", + "Status": "Discontinued", + "Launch Date": "Q3'01", + "Lithography": "180 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "Package Size": "27x27mm", + "MM#": "867771", + "Spec Code": "SL87V", + "Ordering Code": "NH82544EI", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "838209": "PCN", + "867769": "PCN\n |\n MDDS", + "867771": "PCN\n |\n MDDS", + "838208": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82544 Gigabit Ethernet Controller", + "Code Name": "Products formerly Cordova", + "Status": "Discontinued", + "Launch Date": "Q3'01", + "Lithography": "180 nm", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "Package Size": "21x21mm", + "MM#": "838212", + "Ordering Code": "RC82544GC", + "Spec Code": "SL5XW", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "838211": "PCN", + "838212": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82543 Gigabit Ethernet Controller", + "Code Name": "Products formerly Liven Good (Livengood)", + "Status": "Discontinued", + "Launch Date": "Q2'00", + "Lithography": "350 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "35x35mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "829160", + "Spec Code": "SL4AC", + "Ordering Code": "TL82543GC", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "829160": "PCN\n |\n MDDS", + "829155": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82541 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tabor", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Expected Discontinuance": "2/3/2015", + "Lithography": "130 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 113585 for product EOL dates.", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "862931", + "Spec Code": "SL7QU", + "Ordering Code": "LU82541ER", + "Stepping": "C0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "862931": "PCN\n |\n MDDS", + "862930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82541 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tabor", + "Status": "Discontinued", + "Launch Date": "Q1'04", + "Expected Discontinuance": "2/3/2015", + "Lithography": "130 nm", + "TDP": "1 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 113585 for product EOL dates.", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "860579", + "Spec Code": "SL7FZ", + "Ordering Code": "LU82541PI", + "Stepping": "C0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "860575": "PCN\n |\n MDDS", + "857512": "PCN\n |\n MDDS", + "860579": "PCN\n |\n MDDS", + "857520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82541 Gigabit Ethernet Controller", + "Code Name": "Products formerly Tabor", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Expected Discontinuance": "4/19/2009", + "Lithography": "130 nm", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Description": "See PCN 109306 for product EOL dates.", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "Package Size": "15x15mm" + }, + { + "Product Collection": "Intel® 82540 Gigabit Ethernet Controller", + "Code Name": "Products formerly Kenai", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "May 13, 2014", + "Lithography": "150 nm", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "850008", + "Ordering Code": "RC82540EP", + "Stepping": "A0", + "Spec Code": "SL6NV", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "850006": "PCN\n |\n MDDS", + "850008": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82540 Gigabit Ethernet Controller", + "Code Name": "Products formerly Kenai", + "Status": "Discontinued", + "Launch Date": "Q3'02", + "Expected Discontinuance": "May 13, 2014", + "Lithography": "150 nm", + "TDP": "1.4 W", + "Operating Temperature Range": "0°C to 70°C", + "Operating Temperature (Maximum)": "70 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "845196", + "Ordering Code": "RC82540EM", + "Stepping": "A2", + "Spec Code": "SL68H", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "845194": "PCN\n |\n MDDS", + "845196": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 PT Server Adapter Series", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Low Profile & Full Height", + "TDP": "12 W", + "Ethernet Controller": "Intel® 82571EB Gigabit Ethernet Controller", + "Port Configuration": "Quad", + "Intel® Virtualization Technology for Connectivity (VT-c)": "No", + "Speed & Slot Width": "2.5 GT/s, x4 Lane", + "Controller": "Intel 82571GB", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "On-chip QoS and Traffic Management": "No", + "Flexible Port Partitioning": "No", + "Virtual Machine Device Queues (VMDq)": "No", + "PCI-SIG* SR-IOV Capable": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "891496", + "Ordering Code": "EXPI9404PTLSP20", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "884309": "PCN\n |\n MDDS", + "884311": "PCN\n |\n MDDS", + "885260": "PCN\n |\n MDDS", + "891496": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 PT Server Adapter Series", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Expected Discontinuance": "Q3 '09", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Full Height", + "TDP": "12.1 W", + "Ethernet Controller": "Intel® 82571EB Gigabit Ethernet Controller", + "Port Configuration": "Quad", + "System Interface Type": "PCIe", + "MM#": "882126", + "Ordering Code": "EXPI9404PTG1P20", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "882126": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 PT Server Adapter Series", + "Code Name": "Products formerly Redwater", + "Status": "Discontinued", + "Launch Date": "Q4'05", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Low Profile & Full Height", + "TDP": "4.95 W", + "Ethernet Controller": "Intel® 82571EB Gigabit Ethernet Controller", + "Product Brief": "View now", + "Port Configuration": "Dual", + "Intel® Virtualization Technology for Connectivity (VT-c)": "No", + "Speed & Slot Width": "2.5 GT/s, x4 Lane", + "Controller": "Intel 82571GB", + "System Interface Type": "PCIe v1.0a (2.5 GT/s)", + "On-chip QoS and Traffic Management": "No", + "Flexible Port Partitioning": "No", + "Virtual Machine Device Queues (VMDq)": "No", + "PCI-SIG* SR-IOV Capable": "No", + "iWARP/RDMA": "No", + "Intel® Ethernet Power Management": "No", + "Intelligent Offloads": "Yes", + "Storage Over Ethernet": "iSCSI, NFS", + "MM#": "882886", + "Ordering Code": "EXPI9402PTG2L20", + "ECCN": "5A992C", + "CCATS": "G135872", + "US HTS": "8517620090", + "868971": "PCN\n |\n MDDS", + "868973": "PCN\n |\n MDDS", + "882028": "PCN\n |\n MDDS", + "882886": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 MF Server Adapter Series", + "Code Name": "Products formerly Eldridge", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Expected Discontinuance": "09/13", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Bracket Height": "Low Profile & Full Height", + "Ethernet Controller": "Intel® 82546GB Gigabit Ethernet Controller", + "Port Configuration": "Dual", + "Intel® Virtualization Technology for Connectivity (VT-c)": "No", + "Speed & Slot Width": "PCI-X", + "Controller": "Intel 82546GB", + "System Interface Type": "PCI-X", + "MM#": "856117", + "Ordering Code": "PWLA8492MFG3P20", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "844141": "PCN\n |\n MDDS", + "847744": "PCN\n |\n MDDS", + "856117": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 MF Server Adapter Series", + "Code Name": "Products formerly Baldry Mt.", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "MMF up to 275m", + "Bracket Height": "Low Profile & Full Height", + "Ethernet Controller": "Intel® 82545GM Gigabit Ethernet Controller", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "MM#": "847741", + "Ordering Code": "PWLA8490MFBLK5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "844793": "PCN\n |\n MDDS", + "845954": "PCN\n |\n MDDS", + "847741": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/1000 MF Server Adapter Series", + "Code Name": "Products formerly Baldry Mt.", + "Status": "Discontinued", + "Launch Date": "Q3'03", + "Vertical Segment": "Server", + "Cable Medium": "Fiber", + "Cabling Type": "SMF up to 10km, MMF up to 550m", + "Bracket Height": "Low Profile & Full Height", + "Ethernet Controller": "Intel® 82545GM Gigabit Ethernet Controller", + "Port Configuration": "Single", + "System Interface Type": "PCI-X", + "MM#": "847740", + "Ordering Code": "PWLA8490LXBLK5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8517620090", + "845952": "PCN\n |\n MDDS", + "847740": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 82598 10 Gigabit Ethernet Controller", + "Code Name": "Products formerly Oplin", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Expected Discontinuance": "Q2'24", + "Lithography": "90 nm", + "TDP": "6.5 W", + "Operating Temperature Range": "0°C to 55°C", + "Operating Temperature (Maximum)": "55 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Dual", + "System Interface Type": "PCIe v2.0 (2.5 GT/s)", + "NC Sideband Interface": "Yes", + "Jumbo Frames Supported": "Yes", + "Interfaces Supported": "XAUI, KX, KX4, BX, CX4", + "Package Size": "31mm x 31mm", + "Intel® Virtualization Technology for Connectivity (VT-c)": "VMDq", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "890968", + "Spec Code": "SLABF", + "Ordering Code": "JL82598EB", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "890968": "PCN\n |\n MDDS", + "890967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM6000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q1'21", + "Lithography": "65 nm", + "TDP": "102 W", + "Description": "A 24 10G ports or 6 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch.", + "Maximum Port Bandwidth": "240 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "24", + "Maximum 10G KR Ports": "24", + "Maximum 40G KR4 Ports": "6", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "360 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "Data Center,FSI,HPC", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930406", + "Spec Code": "SLKA5", + "Ordering Code": "EZFM6324A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "930406": "PCN\n |\n MDDS", + "920039": "MDDS", + "920038": "MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM6000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q1'21", + "Lithography": "65 nm", + "TDP": "142 W", + "Description": "A 48 10G ports or 12 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch.", + "Maximum Port Bandwidth": "480 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "24", + "Maximum 10G KR Ports": "48", + "Maximum 40G KR4 Ports": "12", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "720 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "Data Center,FSI,HPC", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930407", + "Spec Code": "SLKA6", + "Ordering Code": "EZFM6348A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "930407": "PCN\n |\n MDDS", + "929141": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Switch FM6000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q1'21", + "Lithography": "65 nm", + "TDP": "195 W", + "Description": "A 64 10G ports or 16 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch.", + "Maximum Port Bandwidth": "640 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "24", + "Maximum 10G KR Ports": "64", + "Maximum 40G KR4 Ports": "16", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "960 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "Yes", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "Data Center,FSI,HPC", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930415", + "Spec Code": "SLKA7", + "Ordering Code": "EZFM6364A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "930415": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM6000 Series", + "Code Name": "Products formerly Alta Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "See Published PCN 114000", + "Lithography": "65 nm", + "TDP": "102 W", + "Description": "A 24 10G ports or 6 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch with SDN enhancements.", + "Maximum Port Bandwidth": "240 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "24", + "Maximum 10G KR Ports": "24", + "Maximum 40G KR4 Ports": "6", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "360 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "SDN", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930424", + "Spec Code": "SLKAA", + "Ordering Code": "EZFM6724A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "930424": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM6000 Series", + "Code Name": "Products formerly Alta Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "See Published PCN 114000", + "Lithography": "65 nm", + "TDP": "195 W", + "Description": "A 64 10G ports or 16 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch with SDN enhancements", + "Maximum Port Bandwidth": "640 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "24", + "Maximum 10G KR Ports": "64", + "Maximum 40G KR4 Ports": "16", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "960 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "SDN", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930417", + "Spec Code": "SLKA9", + "Ordering Code": "EZFM6764A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "929228": "PCN\n |\n MDDS", + "930417": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM5000 Series", + "Code Name": "Products formerly Alta Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q1'21", + "Lithography": "65 nm", + "TDP": "102 W", + "Description": "A 64 2.5G ports plus 8 10G or 2 40G ports, fully-integrated, single-chip wire-speed, layer-2/3/4 Ethernet switch.", + "Maximum Port Bandwidth": "240 G", + "Maximum SGMII Ports": "72", + "Maximum XAUI Ports": "2", + "Maximum 10G KR Ports": "8", + "Maximum 40G KR4 Ports": "2", + "Cut-Through Latency": "400 ns", + "Frame Processing Rate": "360 M pps", + "Shared Packet Memory Size": "8 MB", + "Traffic Classes": "8", + "MAC Table Size": "64 K", + "ACL Rules": "24 K", + "IPv4/IPv6 Routes": "64K/16K", + "Intel® FlexPipe™ Technology": "Yes", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "PCIe, EBI", + "Applications": "Micro Servers", + "Extended Temperature Options": "No", + "Package Size": "42.5mm x 42.5mm", + "MM#": "930422", + "Spec Code": "SLKA3", + "Ordering Code": "EZFM5224A", + "Stepping": "B2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "930422": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM4000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "06/07/2016 (see published PCN)", + "Lithography": "130 nm", + "TDP": "47 W", + "Description": "A 24-port, fully-integrated, single-chip wire-speed, layer-2/3/4, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "240 G", + "Maximum SGMII Ports": "24", + "Maximum XAUI Ports": "24", + "Cut-Through Latency": "300 ns", + "Frame Processing Rate": "360 M pps", + "Shared Packet Memory Size": "2 MB", + "Traffic Classes": "8", + "MAC Table Size": "16 K", + "ACL Rules": "16 K", + "IPv4/IPv6 Routes": "16K/4K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "Extended Temperature Options": "Yes", + "MM#": "930428", + "Spec Code": "SLKAD", + "Ordering Code": "EZFM4224F1433E", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930428": "PCN\n |\n MDDS", + "921069": "PCN\n |\n MDDS", + "921068": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM4000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "2H'18", + "Lithography": "130 nm", + "TDP": "30 W", + "Embedded Options Available": "Yes", + "Description": "A 12 10G port, fully-integrated, single-chip wire-speed, layer-2/3/4, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "120 G", + "Maximum SGMII Ports": "12", + "Maximum XAUI Ports": "12", + "Cut-Through Latency": "300 ns", + "Frame Processing Rate": "180 M pps", + "Shared Packet Memory Size": "2 MB", + "Traffic Classes": "8", + "MAC Table Size": "16 K", + "ACL Rules": "16 K", + "IPv4/IPv6 Routes": "16K/4K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "921073", + "Spec Code": "SLJMW", + "Ordering Code": "EZFM4212F1433C", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921070": "PCN", + "921073": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Switch FM4000 Series", + "Code Name": "Products formerly Bali", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "1H'21", + "Lithography": "130 nm", + "TDP": "17 W", + "Description": "An 2 10GbE ports and 16 1GbE ports, fully-integrated, single-chip wire-speed, layer-2/3/4, 10GbE/2.5GbE/1GbE Ethernet switch.", + "Maximum Port Bandwidth": "36 G", + "Maximum SGMII Ports": "18", + "Maximum XAUI Ports": "2", + "Cut-Through Latency": "300 ns", + "Frame Processing Rate": "54 M pps", + "Shared Packet Memory Size": "2 MB", + "Traffic Classes": "8", + "MAC Table Size": "16 K", + "ACL Rules": "16 K", + "IPv4/IPv6 Routes": "16K/4K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center", + "MM#": "930440", + "Spec Code": "SLKAN", + "Ordering Code": "EZFM4105F897E", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930440": "PCN", + "930439": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Switch FM4000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "06/07/2016 (see published PCN)", + "Lithography": "130 nm", + "TDP": "27.5 W", + "Description": "An 8 10GbE ports and 16 1GbE ports, fully-integrated, single-chip wire-speed, layer-2/3/4, 10GbE/2.5GbE/1GbE Ethernet switch.", + "Maximum Port Bandwidth": "96 G", + "Maximum SGMII Ports": "24", + "Maximum XAUI Ports": "8", + "Cut-Through Latency": "300 ns", + "Frame Processing Rate": "144 M pps", + "Shared Packet Memory Size": "2 MB", + "Traffic Classes": "8", + "MAC Table Size": "16 K", + "ACL Rules": "16 K", + "IPv4/IPv6 Routes": "16K/4K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "930430", + "Spec Code": "SLKAH", + "Ordering Code": "EZFM4112F897C", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921072": "PCN", + "921071": "PCN\n |\n MDDS", + "930430": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM4000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "2H'18", + "Lithography": "130 nm", + "TDP": "26 W", + "Description": "A 24-port, fully-integrated, single-chip wire-speed, layer-2/3/4, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "90 G", + "Maximum SGMII Ports": "16", + "Maximum XAUI Ports": "8", + "Cut-Through Latency": "300 ns", + "Frame Processing Rate": "95 M pps", + "Shared Packet Memory Size": "2 MB", + "Traffic Classes": "8", + "MAC Table Size": "16 K", + "ACL Rules": "16 K", + "IPv4/IPv6 Routes": "16K/4K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "Yes", + "CEE/DCB Features": "Yes", + "Server Virtualization Support": "Yes", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "920988", + "Spec Code": "SLJM7", + "Ordering Code": "FBFM4410F529E", + "Stepping": "A3", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920988": "PCN\n |\n MDDS", + "920987": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Ethernet Switch FM2000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "1H'14", + "Lithography": "130 nm", + "TDP": "23.5 W", + "Embedded Options Available": "No", + "Description": "A 24-port, fully-integrated, single-chip wire-speed, layer-2, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "240 G", + "Maximum SGMII Ports": "24", + "Maximum XAUI Ports": "24", + "Cut-Through Latency": "200 ns", + "Frame Processing Rate": "360 M pps", + "Shared Packet Memory Size": "1 MB", + "Traffic Classes": "4", + "MAC Table Size": "16 K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "No", + "CEE/DCB Features": "No", + "Server Virtualization Support": "No", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "920984", + "Spec Code": "SLJLK", + "Ordering Code": "FBFM2224F1433E", + "Stepping": "A5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "920984": "PCN", + "920983": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Switch FM2000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "1H'14", + "Lithography": "130 nm", + "TDP": "18 W", + "Embedded Options Available": "No", + "Description": "A 12-port, fully-integrated, single-chip wire-speed, layer-2, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "120 G", + "Maximum SGMII Ports": "12", + "Maximum XAUI Ports": "12", + "Cut-Through Latency": "200 ns", + "Frame Processing Rate": "180 M pps", + "Shared Packet Memory Size": "1 MB", + "Traffic Classes": "4", + "MAC Table Size": "16 K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "No", + "CEE/DCB Features": "No", + "Server Virtualization Support": "No", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "921464", + "Spec Code": "SLJR9", + "Ordering Code": "FBFM2212F1433E", + "Stepping": "A5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "921463": "PCN", + "921464": "PCN" + }, + { + "Product Collection": "Intel® Ethernet Switch FM2000 Series", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Expected Discontinuance": "06/07/2016 (see published PCN)", + "Lithography": "130 nm", + "TDP": "14.3 W", + "Embedded Options Available": "No", + "Description": "An 8 10G ports and 16 1G ports fully-integrated, single-chip wire-speed, layer-2, 10G/2.5G/1G Ethernet switch.", + "Maximum Port Bandwidth": "96 G", + "Maximum SGMII Ports": "24", + "Maximum XAUI Ports": "8", + "Cut-Through Latency": "200 ns", + "Frame Processing Rate": "144 M pps", + "Shared Packet Memory Size": "1 MB", + "Traffic Classes": "4", + "MAC Table Size": "16 K", + "Intel® FlexPipe™ Technology": "No", + "Advanced Load Balancing": "No", + "CEE/DCB Features": "No", + "Server Virtualization Support": "No", + "Advanced Tunneling Features": "No", + "Carrier Ethernet Support": "No", + "CPU Interface": "EBI", + "Applications": "Data Center,FSI,HPC", + "MM#": "936478", + "Spec Code": "SLKJF", + "Ordering Code": "EZFM2112F897E", + "Stepping": "A5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542390001", + "936477": "PCN\n |\n MDDS", + "936478": "PCN\n |\n MDDS", + "920986": "PCN\n |\n MDDS", + "920985": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Woodinville", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "130 nm", + "TDP": "0.3 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "5x5", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "903011", + "Spec Code": "SLGW8", + "Ordering Code": "WG82552V", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903011": "PCN\n |\n MDDS", + "903010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Ekron", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "350 nm", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "Package Size": "10x10mm", + "MM#": "877092", + "Spec Code": "SN/A", + "Ordering Code": "PC82562V", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "877092": "PCN\n |\n MDDS", + "877090": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Lavon", + "Status": "Discontinued", + "Launch Date": "Q4'04", + "Lithography": "350 nm", + "TDP": "0.61 W", + "Operating Temperature Range": "-40°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "-40 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "860615", + "Spec Code": "SL7G3", + "Ordering Code": "LU82551IT", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "860607": "PCN\n |\n MDDS", + "855623": "PCN\n |\n MDDS", + "855622": "PCN\n |\n MDDS", + "860615": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Ekron", + "Status": "Discontinued", + "Launch Date": "Q3'04", + "Lithography": "350 nm", + "TDP": "0.3 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "16x8mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "863271", + "Spec Code": "SL7RL", + "Ordering Code": "EP82562GT", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "863269": "PCN\n |\n MDDS", + "863271": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Ekron", + "Status": "Discontinued", + "Launch Date": "Q3'04", + "Lithography": "350 nm", + "TDP": "0.3 W", + "Embedded Options Available": "Yes", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "862934", + "Spec Code": "SNA", + "Ordering Code": "LU82562GZ", + "Stepping": "A0", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "862934": "PCN\n |\n MDDS", + "862928": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Kinnereth", + "Status": "Discontinued", + "Launch Date": "Q2'02", + "Lithography": "350 nm", + "TDP": "0.3 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "860582", + "Spec Code": "SL7G2", + "Ordering Code": "LU82562EZ", + "Stepping": "A2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "860581": "PCN\n |\n MDDS", + "845000": "PCN\n |\n MDDS", + "860582": "PCN\n |\n MDDS", + "845001": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Lavon", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "350 nm", + "TDP": "0.61 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "860614", + "Spec Code": "SL7G4", + "Ordering Code": "LU82551ER", + "Stepping": "A1", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "844687": "PCN\n |\n MDDS", + "860613": "PCN\n |\n MDDS", + "844686": "PCN\n |\n MDDS", + "860614": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Lavon", + "Status": "Discontinued", + "Launch Date": "Q1'02", + "Lithography": "350 nm", + "TDP": "0.61 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "860611", + "Ordering Code": "LU82551QM", + "Stepping": "A0", + "Spec Code": "SL7G5", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "844662": "PCN\n |\n MDDS", + "860611": "PCN\n |\n MDDS", + "860610": "PCN\n |\n MDDS", + "844663": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Kinnereth", + "Status": "Discontinued", + "Launch Date": "Q2'00", + "Lithography": "350 nm", + "TDP": "0.3 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "9x9mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "863061", + "Ordering Code": "PC82562EP", + "Stepping": "A2", + "Spec Code": "SL7QW", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "862943": "PCN\n |\n MDDS", + "863061": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly Kinnereth", + "Status": "Discontinued", + "Launch Date": "Q2'00", + "Lithography": "350 nm", + "TDP": "0.3 W", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Embedded Options Available": "Yes", + "Port Configuration": "Single", + "System Interface Type": "GLCI/LCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "16x8mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "863276", + "Spec Code": "SL7RM", + "Ordering Code": "EP82562ET", + "Stepping": "A2", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "830642": "PCN\n |\n MDDS", + "863275": "PCN\n |\n MDDS", + "863276": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Fast Ethernet Network Connections", + "Code Name": "Products formerly D101", + "Status": "Discontinued", + "Launch Date": "Q4'99", + "Lithography": "350 nm", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "NC Sideband Interface": "No", + "Jumbo Frames Supported": "No", + "Package Size": "15x15mm", + "Fiber Channel over Ethernet": "No", + "MACsec IEEE 802.1 AE": "No", + "IEEE 1588": "No", + "Supported Under Intel vPro® Technology": "No", + "MM#": "826238", + "Ordering Code": "GD82559ER", + "Stepping": "A2", + "Spec Code": "SL3TU", + "ECCN": "5A991", + "CCATS": "NA", + "US HTS": "8542310001", + "824184": "PCN\n |\n MDDS", + "825111": "PCN\n |\n MDDS", + "825605": "PCN\n |\n MDDS", + "826238": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/100 S Server Adapter Series", + "Code Name": "Products formerly Gainesville", + "Status": "Discontinued", + "Launch Date": "Q2'02", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Full Height", + "Port Configuration": "Dual", + "System Interface Type": "PCI", + "MM#": "829939", + "Ordering Code": "PILA8472C3PAK5", + "ECCN": "5A002U", + "CCATS": "G016528", + "US HTS": "8517620090", + "829938": "PCN\n |\n MDDS", + "829939": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® PRO/100 S Server Adapter Series", + "Code Name": "Products formerly South Bend", + "Status": "Discontinued", + "Launch Date": "Q2'02", + "Vertical Segment": "Server", + "Cable Medium": "Copper", + "Cabling Type": "Category-5 up to 100m", + "Bracket Height": "Full Height", + "Port Configuration": "Single", + "System Interface Type": "PCI", + "MM#": "835046", + "Ordering Code": "PILA8470D3G1P20", + "ECCN": "5A002U", + "CCATS": "G016528", + "US HTS": "8517620090", + "832702": "PCN\n |\n MDDS", + "832704": "PCN\n |\n MDDS", + "835046": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 12th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dragon Canyon", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBv7", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® W680 Chipset", + "Processor Included": "Intel® Core™ i7-12700 Processor (25M Cache, up to 4.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "12", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen5 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "12", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: USB 3.2g2 Type-A and Type-C; Internal Header: 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "10GbE (AQC113) + Intel® i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ALJ4", + "Ordering Code": "BNUC12DCMV70000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "180 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGT", + "Spec Code": "SRL4Q", + "Ordering Code": "BXC8071512700", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVR": "PCN", + "99ARGG": "PCN", + "99ARGT": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 12th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dragon Canyon", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBv9", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® W680 Chipset", + "Processor Included": "Intel® Core™ i9-12900 Processor (30M Cache, up to 5.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "16", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen5 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "12", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: USB 3.2g2 Type-A and Type-C; Internal Header: 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "10GbE (AQC113) + Intel® i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ALHW", + "Ordering Code": "BNUC12DCMV90000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.40 GHz", + "Efficient-core Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "202 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGR", + "Spec Code": "SRL4K", + "Ordering Code": "BXC8071512900", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVC": "PCN", + "99ARGF": "PCN", + "99ARGR": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 12th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dragon Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBi7", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® Z690 Chipset", + "Processor Included": "Intel® Core™ i7-12700 Processor (25M Cache, up to 4.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "12", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen5 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "12", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: USB 3.2g2 Type-A and Type-C; Internal Header: 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "10GbE (AQC113)", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ALGZ", + "Ordering Code": "RNUC12DCMI70006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "180 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGT", + "Spec Code": "SRL4Q", + "Ordering Code": "BXC8071512700", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVR": "PCN", + "99ARGG": "PCN", + "99ARGT": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 12th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dragon Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC12EDBi9", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "Intel 7", + "TDP": "65 W", + "Board Chipset": "Intel® Z690 Chipset", + "Processor Included": "Intel® Core™ i9-12900 Processor (30M Cache, up to 5.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "16", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card", + "PCI Express Revision": "Gen5, Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen4 slots (PCH), M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen5 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX211", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "12", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: USB 3.2g2 Type-A and Type-C; Internal Header: 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "10GbE (AQC113) + Intel® i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ALGN", + "Ordering Code": "RNUC12DCMI90006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.40 GHz", + "Efficient-core Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "202 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGR", + "Spec Code": "SRL4K", + "Ordering Code": "BXC8071512900", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVC": "PCN", + "99ARGF": "PCN", + "99ARGR": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R out, mono mic in (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AW98", + "Ordering Code": "RNUC11PAHI30Z02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R out, mono mic in (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AW8P", + "Ordering Code": "RNUC11PAHI50Z02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q2'22", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R out, mono mic in (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AW87", + "Ordering Code": "RNUC11PAHI70Z02", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi30Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi50Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi70Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi30Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi50Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi70Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv50Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Beast Canyon", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "BNUC11DBBi70000", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "4", + "Lithography": "10 nm SuperFin", + "TDP": "65 W", + "Board Chipset": "Intel® WM590 Chipset", + "Processor Included": "Intel® Core™ i7-11700B Processor (24M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "3.20 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen3 slots (PCH), 2x M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen4 (CPU) slot, PCIe X4 Gen4 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX210", + "M.2 Card Slot (storage)": "2x via PCH + 2x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: 2x USB 3.2g2; Internal Headers: USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX210(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8VP", + "Ordering Code": "RNUC11BTMI70006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8VJ": "PCN", + "99A8VK": "PCN", + "99A8VL": "PCN", + "99A8VM": "PCN", + "99A8VN": "PCN", + "99A8VP": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700B", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "24 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Configurable TDP-up": "65 W", + "Configurable TDP-down": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 26.5mm", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Beast Canyon", + "Status": "Launched", + "Launch Date": "Q3'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "BNUC11DBBi90000", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "4", + "Lithography": "10 nm SuperFin", + "TDP": "65 W", + "Board Chipset": "Intel® WM590 Chipset", + "Processor Included": "Intel® Core™ i9-11900KB Processor (24M Cache, up to 4.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "3.30 GHz", + "Max Turbo Frequency": "4.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 3200MHz 1.2V SO-DIMM DDR4 3200 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 4, HDMI 2.0b", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 Gen3 slots (PCH), 2x M.2 PCIe X4 Gen4 slots (CPU); Double-wide PCIe X16 Gen4 (CPU) slot, PCIe X4 Gen4 (CPU) slot, 12\" max card length", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (wireless)": "Intel® Wi-Fi 6E AX210", + "M.2 Card Slot (storage)": "2x via PCH + 2x via CPU (NVMe)", + "# of USB Ports": "13", + "USB Configuration": "Rear: 6x USB 3.2g2, 2x TB4 (USB 3.2g2); Front: 2x USB 3.2g2; Internal Headers: USB 3.2g2 Type-C Key A, 2x USB 2.0", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "2x int.", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX210(Gig+)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Chassis Dimensions": "357 x 189 x 120mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8VH", + "Ordering Code": "RNUC11BTMI90006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8V9": "PCN", + "99A8VA": "PCN", + "99A8VC": "PCN", + "99A8VF": "PCN", + "99A8VG": "PCN", + "99A8VH": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900KB", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "24 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Configurable TDP-up": "65 W", + "Configurable TDP-down": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 26.5mm", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFWD", + "Spec Code": "SRKU4", + "Ordering Code": "FH8069004610310", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFWD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Phantom Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PHBi7", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Extended Life Program (XLP)": "No", + "Lithography": "10 nm SuperFin", + "TDP": "150 W", + "DC Input Voltage Supported": "19.5 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "NVIDIA RTX 2060 w/ 6GB VRAM included. Other features: Includes far-field quad array microphones, PC Stand for vertical operating orientation, VESA mounting plate, RGB-backlit logo with replaceable mask.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x TBT4; HDMI 2.0a; mDP 1.4", + "# of Displays Supported ‡": "4", + "Discrete Graphics": "Nvidia Geforce RTX 2060", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80; 22x80,110", + "# of USB Ports": "10", + "USB Configuration": "3x front (2x Type-A, 1x Type-C) and 5x rear (4x Type-A, 1x Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "2", + "USB 3.0 Configuration (External + Internal)": "8", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 4", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Panther Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC11PABi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm SuperFin", + "TDP": "40 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.4); MiniDP 1.4", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen4", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.2 Gen2 (2x Type-A, Type-C); USB 2.0, USB 3.1 Gen2 via internal headers", + "USB Revision": "2.0, 3.2 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 1", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Controller i225-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, USB3.1, USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8F5", + "Ordering Code": "BNUC11TNHI30006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8F1": "PCN\n |\n MDDS", + "99A8F2": "PCN\n |\n MDDS", + "99A8F3": "PCN\n |\n MDDS", + "99A8F4": "PCN\n |\n MDDS", + "99A8F5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 3x USB 2.0 Internal: 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Dual Intel® Ethernet Controller i225", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8AJ", + "Ordering Code": "BNUC11TNHI30L00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8AJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AA5P", + "Ordering Code": "BNUC11TNHI30P06", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AA5P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8F9", + "Ordering Code": "BNUC11TNHI50005", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8F6": "PCN\n |\n MDDS", + "99A8F7": "PCN\n |\n MDDS", + "99A8F8": "PCN\n |\n MDDS", + "99A8F9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 3x USB 2.0 Internal: 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Dual Intel® Ethernet Controller i225", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8AK", + "Ordering Code": "BNUC11TNHI50L00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8AK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Included Storage": "500GB Gen 4 NVMe SSD", + "Included Memory": "2x 4GB DDR4", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AA5R", + "Ordering Code": "BNUC11TNHI50W06", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AA5R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8FF", + "Ordering Code": "BNUC11TNHI70005", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8FA": "PCN\n |\n MDDS", + "99A8FC": "PCN\n |\n MDDS", + "99A8FD": "PCN\n |\n MDDS", + "99A8FF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 3x USB 2.0 Internal: 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Dual Intel® Ethernet Controller i225", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8AL", + "Ordering Code": "BNUC11TNHI70L00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8AL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Included Storage": "500GB Gen 4 NVMe SSD", + "Included Memory": "2x 8GB DDR4", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AA5V", + "Ordering Code": "BNUC11TNHI70Q06", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AA5V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A7AJ", + "Ordering Code": "BNUC11TNHC50006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A7AF": "PCN\n |\n MDDS", + "99A7AG": "PCN\n |\n MDDS", + "99A7AH": "PCN\n |\n MDDS", + "99A7AJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 3x USB 2.0 Internal: 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Dual Intel® Ethernet Controller i225", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A7AK", + "Ordering Code": "BNUC11TNHV50L00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A7AK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A7JW", + "Ordering Code": "BNUC11TNHC70006", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A7JR": "PCN\n |\n MDDS", + "99A7JT": "PCN\n |\n MDDS", + "99A7JV": "PCN\n |\n MDDS", + "99A7JW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 3x USB 2.0 Internal: 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Dual Intel® Ethernet Controller i225", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 54 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A7JX", + "Ordering Code": "BNUC11TNHV70L00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A7JX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8A4", + "Ordering Code": "BNUC11TNKI30002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8A2": "PCN\n |\n MDDS", + "99A8A3": "PCN\n |\n MDDS", + "99A8A4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8A7", + "Ordering Code": "BNUC11TNKI50002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8A5": "PCN\n |\n MDDS", + "99A8A6": "PCN\n |\n MDDS", + "99A8A7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A8AF", + "Ordering Code": "BNUC11TNKI70002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A8A8": "PCN\n |\n MDDS", + "99A8A9": "PCN\n |\n MDDS", + "99A8AF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A79Z", + "Ordering Code": "BNUC11TNKV50002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A6X5": "PCN\n |\n MDDS", + "99A78W": "PCN\n |\n MDDS", + "99A79Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 [mm] (LxWxH)", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A7JL", + "Ordering Code": "BNUC11TNKV70002", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A7JH": "PCN\n |\n MDDS", + "99A7JK": "PCN\n |\n MDDS", + "99A7JL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHW5", + "Ordering Code": "BXNUC10I3FNHN5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHVZ": "PCN\n |\n MDDS", + "99AHW0": "PCN\n |\n MDDS", + "99AHW1": "PCN\n |\n MDDS", + "99AHW4": "PCN\n |\n MDDS", + "99AHW5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHWV", + "Ordering Code": "BXNUC10I3FNKN2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHW7": "PCN\n |\n MDDS", + "99AHWV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHVA", + "Ordering Code": "BXNUC10I5FNHN5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHV4": "PCN\n |\n MDDS", + "99AHV5": "PCN\n |\n MDDS", + "99AHV8": "PCN\n |\n MDDS", + "99AHV9": "PCN\n |\n MDDS", + "99AHVA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHVW", + "Ordering Code": "BXNUC10I5FNKN2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHVV": "PCN\n |\n MDDS", + "99AHVW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHV3", + "Ordering Code": "BXNUC10I7FNKN2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHV3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Does not include 3.5mm audio capabilities, Digital Microphones.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI, Type-C)", + "Integrated LAN": "Intel® Ethernet Connection i219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHTK", + "Ordering Code": "BXNUC10I7FNHN3", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHT9": "PCN\n |\n MDDS", + "99AHTF": "PCN\n |\n MDDS", + "99AHTG": "PCN\n |\n MDDS", + "99AHTK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LTJ", + "Ordering Code": "BXNUC10I3FNH6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LTA": "PCN\n |\n MDDS", + "999LTC": "PCN\n |\n MDDS", + "999LTD": "PCN\n |\n MDDS", + "999LTF": "PCN\n |\n MDDS", + "999LTG": "PCN\n |\n MDDS", + "999LTJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MC0", + "Ordering Code": "BXNUC10I3FNHF6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MC0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i3FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i3-10110U Processor (4M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LTR", + "Ordering Code": "BXNUC10I3FNK4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LTL": "PCN\n |\n MDDS", + "999LTM": "PCN\n |\n MDDS", + "999LTN": "PCN\n |\n MDDS", + "999LTP": "PCN\n |\n MDDS", + "999LTR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LT4", + "Ordering Code": "BXNUC10I5FNH6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LRW": "PCN\n |\n MDDS", + "999LRX": "PCN\n |\n MDDS", + "999LRZ": "PCN\n |\n MDDS", + "999LT0": "PCN\n |\n MDDS", + "999LT3": "PCN\n |\n MDDS", + "999LT4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAG", + "Ordering Code": "BXNUC10I5FNHF6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module pre-installed, 1TB HDD, includes far-field quad array microphones", + "Included Storage": "16GB Intel® Optane™ Memory, 1TB HDD", + "Included Memory": "16GB Intel® Optane™ Memory + 2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAF", + "Ordering Code": "BXNUC10I5FNHJ", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LT9", + "Ordering Code": "BXNUC10I5FNK4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LT5": "PCN\n |\n MDDS", + "999LT6": "PCN\n |\n MDDS", + "999LT7": "PCN\n |\n MDDS", + "999LT8": "PCN\n |\n MDDS", + "999LT9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i5FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i5-10210U Processor (6M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAX", + "Ordering Code": "BXNUC10I5FNKP6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999KCZ", + "Ordering Code": "BXNUC10I7FNH6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999JG4": "PCN\n |\n MDDS", + "999JJV": "PCN\n |\n MDDS", + "999JV2": "PCN\n |\n MDDS", + "999JVW": "PCN\n |\n MDDS", + "999JWG": "PCN\n |\n MDDS", + "999KCZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, 1TB HDD, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD, 1TB HDD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MA9", + "Ordering Code": "BXNUC10I7FNHC6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MA9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes far-field quad array microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999LRR", + "Ordering Code": "BXNUC10I7FNK2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999LRN": "PCN\n |\n MDDS", + "999LRR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 10th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Frost Canyon", + "Status": "Launched", + "Launch Date": "Q4'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC10i7FNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-10710U Processor (12M Cache, up to 4.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "1.10 GHz", + "Max Turbo Frequency": "4.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 256GB NVMe SSD, includes far-field quad array microphones", + "Included Storage": "256GB NVMe SSD", + "Included Memory": "2x 4GB DDR4-2666", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0b; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "7", + "USB Configuration": "2x front (Type-A, Type-C) and 3x rear USB 3.1 Gen2 (2x Type-A, Type-C); 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL, RGB", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 38mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999MAD", + "Ordering Code": "BXNUC10I7FNKP6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999MAD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 9th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i5QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i5-9300H Processor (8M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), 1x M.2 PCIe X4 slot (CPU) Double-wide PCIe X16 (CPU) slot shared with PCIe X4 (CPU) slot, 8\" max card length", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "11", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Front: 2x USB 3.2g2; Internal: 2x USB 2.0 header, 1x USB 3.2 Gen2 Type-A", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "3x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "238 x 216 x 96mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999DPH", + "Ordering Code": "BXNUC9I5QNX6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999DPA": "PCN\n |\n MDDS", + "999DPC": "PCN\n |\n MDDS", + "999DPH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9300H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8R", + "Spec Code": "SRF6X", + "Ordering Code": "CL8068404121905", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXR": "PCN\n |\n MDDS", + "999A8R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 9th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i7QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i7-9750H Processor (12M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM DDR4 2666 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), 1x M.2 PCIe X4 slot (CPU) Double-wide PCIe X16 (CPU) slot shared with PCIe X4 (CPU) slot, 8\" max card length", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "11", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Front: 2x USB 3.2g2; Internal: 2x USB 2.0 header, 1x USB 3.2 Gen2 Type-A", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "3x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "238 x 216 x 96mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999DP9", + "Ordering Code": "BXNUC9I7QNX6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999DP4": "PCN\n |\n MDDS", + "999DP5": "PCN\n |\n MDDS", + "999DP9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 9th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Ghost Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9i9QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i9-9980HK Processor (16M Cache, up to 5.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "5.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM DDR4 2666 MHz 1.35V SO-DIMM - XMP is required to enable 1.35V memory", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), 1x M.2 PCIe X4 slot (CPU) Double-wide PCIe X16 (CPU) slot shared with PCIe X4 (CPU) slot, 8\" max card length", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "11", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Front: 2x USB 3.2g2; Internal: 2x USB 2.0 header, 1x USB 3.2 Gen2 Type-A", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "3x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "238 x 216 x 96mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999DP1", + "Ordering Code": "BXNUC9I9QNX6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999DNT": "PCN\n |\n MDDS", + "999DNV": "PCN\n |\n MDDS", + "999DP1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9980HK", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ5", + "Spec Code": "SRFD0", + "Ordering Code": "CL8068404068910", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 9th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Quartz Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9V7QNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Core™ i7-9850H Processor (12M Cache, up to 4.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "6", + "Total Threads": "12", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "4.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), 1x M.2 PCIe X4 slot (CPU) Double-wide PCIe X16 (CPU) slot shared with PCIe X4 (CPU) slot, 8\" max card length", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "11", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Front: 2x USB 3.2g2; Internal: 2x USB 2.0 header, 1x USB 3.2 Gen2 Type-A", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "3x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "238 x 216 x 96mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "Discrete 2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999DNP", + "Ordering Code": "BKNUC9V7QNX6", + "CCATS": "Varies By Product", + "ECCN": "5A992C", + "US HTS": "8471500150", + "999DNJ": "PCN\n |\n MDDS", + "999DNK": "PCN\n |\n MDDS", + "999DNL": "PCN\n |\n MDDS", + "999DNM": "PCN\n |\n MDDS", + "999DNN": "PCN\n |\n MDDS", + "999DNP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9850H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXK", + "Spec Code": "SRFCN", + "Ordering Code": "CL8068404069311", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 9th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Quartz Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC9VXQNB", + "Board Form Factor": "PCIe", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "3", + "Lithography": "14 nm", + "Board Chipset": "Mobile Intel® CM246 Chipset", + "Processor Included": "Intel® Xeon® E-2286M Processor (16M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "8", + "Total Threads": "16", + "Processor Base Frequency": "2.40 GHz", + "Max Turbo Frequency": "5.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 2666 MHz 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Thunderbolt 3, HDMI 2.0a", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Via PCIe add-in card(s)", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "2x M.2 PCIe X4 slots (PCH), 1x M.2 PCIe X4 slot (CPU) Double-wide PCIe X16 (CPU) slot shared with PCIe X4 (CPU) slot, 8\" max card length", + "PCIe x4 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Removable Memory Card Slot": "SDXC with UHS-II support", + "M.2 Card Slot (storage)": "2x via PCH + 1x via CPU (NVMe)", + "# of USB Ports": "11", + "USB Configuration": "Rear: 4x USB 3.2g2, 2x TB3 (USB 3.2g2); Front: 2x USB 3.2g2; Internal: 2x USB 2.0 header, 1x USB 3.2 Gen2 Type-A", + "USB Revision": "3.2 Gen2, 2.0", + "USB 2.0 Configuration (External + Internal)": "3x int.", + "Total # of SATA Ports": "3", + "Max # of SATA 6.0 Gb/s Ports": "3", + "RAID Configuration": "2x M.2 SATA/PCIe SSD, SATA header (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX200", + "Integrated Bluetooth": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "238 x 216 x 96mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "Discrete 2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999DNH", + "Ordering Code": "BKNUC9VXQNX6", + "CCATS": "Varies By Product", + "ECCN": "5A992C", + "US HTS": "8471500150", + "999DNA": "PCN\n |\n MDDS", + "999DNC": "PCN\n |\n MDDS", + "999DND": "PCN\n |\n MDDS", + "999DNF": "PCN\n |\n MDDS", + "999DNG": "PCN\n |\n MDDS", + "999DNH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Xeon® E Processor", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "E-2286M", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics P630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E94", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ4", + "Spec Code": "SRFCZ", + "Ordering Code": "CL8068404068710", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-8140U Processor (4M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999R1P", + "Ordering Code": "BOXNUC8I3BEHS6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999R1L": "PCN\n |\n MDDS", + "999R1P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8140U", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L21", + "Spec Code": "SRGMN", + "Ordering Code": "FH8068404208005", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L21": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-8260U Processor (6M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999R1K", + "Ordering Code": "BOXNUC8I5BEHS6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999R17": "PCN\n |\n MDDS", + "999R1C": "PCN", + "999R1K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8260U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L1Z", + "Spec Code": "SRGMM", + "Ordering Code": "FH8068404163208", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L1Z": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8i3PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-8145U Processor (4M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Total # of SATA Ports": "1", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 53 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99A6F6", + "Ordering Code": "BKNUC8I3PNH5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999KTR": "PCN\n |\n MDDS", + "99A6F6": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8i3PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-8145U Processor (4M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999KTJ", + "Ordering Code": "BKNUC8I3PNK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999KTJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v5PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-8365U Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Total # of SATA Ports": "1", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 53 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A6F5", + "Ordering Code": "BKNUC8V5PNH5", + "CCATS": "Varies By Product", + "ECCN": "5A992C", + "US HTS": "8471500150", + "999KXV": "PCN\n |\n MDDS", + "999KZ6": "PCN\n |\n MDDS", + "99A6F5": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v5PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-8365U Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999KX8", + "Ordering Code": "BKNUC8V5PNK1", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999KX7": "PCN\n |\n MDDS", + "999KX8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v7PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8665U Processor (8M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Total # of SATA Ports": "1", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 53 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A6F4", + "Ordering Code": "BKNUC8V7PNH5", + "CCATS": "Varies By Product", + "ECCN": "5A992C", + "US HTS": "8471500150", + "999L0T": "PCN\n |\n MDDS", + "999L10": "PCN\n |\n MDDS", + "99A6F4": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v7PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8665U Processor (8M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Kit", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 37 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999L08", + "Ordering Code": "BKNUC8V7PNK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999L08": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Islay Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8INB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: 16GB Intel® Optane™ Memory M.2 module + 1TB 2.5\" HDD, or 256GB M.2 SSD, and includes SDXC card slot", + "Included Items": "Intel® Core™ i5-8265U Processor", + "Product Brief": "View now", + "Included Storage": "1TB HDD, or 256GB M.2 SSD", + "Included Memory": "8GB embedded or 8GB embedded + 16GB Intel® Optane™", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3-1866/2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "HDMI 2.0b, Mini-DP 1.4", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Radeon™ 540X, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "999F51", + "Ordering Code": "BXNUC8I5INHX", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999F51": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Islay Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8INB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "TDP": "15 W", + "DC Input Voltage Supported": "19 VDC", + "Intel vPro® Platform Eligibility ‡": "No", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Support for Intel® Optane™ Memory to accelerate a 2.5\" HDD. Other features: Includes USB 3.1 Gen 2 (10Gbps) and mDP 1.4; also includes microSDXC card slot.", + "Included Items": "Intel® Core™ i7-8565U Processor", + "Product Brief": "View now", + "Included Storage": "None, or 1TB HDD, or 256GB M.2 SSD, or 1TB HDD + 128GB M.2 SSD", + "Included Memory": "8GB embedded or 8GB embedded + 16GB Intel® Optane™", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3-1866/2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "No", + "Graphics Output": "HDMI 2.0b, Mini-DP 1.4", + "# of Displays Supported ‡": "3", + "Discrete Graphics": "Radeon™ 540X, 2GB GDDR5", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i7-8559U Processor (8M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.70 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 36mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-8109U Processor (4M Cache, up to 3.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Max Turbo Frequency": "3.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961602", + "Ordering Code": "BOXNUC8I3BEH4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961577": "PCN\n |\n MDDS", + "961578": "PCN\n |\n MDDS", + "961600": "PCN\n |\n MDDS", + "961601": "PCN\n |\n MDDS", + "961602": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8109U", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975758", + "Spec Code": "SRCUT", + "Ordering Code": "FH8068403419433", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-8109U Processor (4M Cache, up to 3.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Max Turbo Frequency": "3.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 36mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961540", + "Ordering Code": "BOXNUC8I3BEK4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961536": "PCN\n |\n MDDS", + "961537": "PCN\n |\n MDDS", + "961538": "PCN\n |\n MDDS", + "961539": "PCN\n |\n MDDS", + "961540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8109U", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975758", + "Spec Code": "SRCUT", + "Ordering Code": "FH8068403419433", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-8259U Processor (6M Cache, up to 3.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "3.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961527", + "Ordering Code": "BOXNUC8I5BEH4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961517": "PCN\n |\n MDDS", + "961518": "PCN\n |\n MDDS", + "961524": "PCN\n |\n MDDS", + "961526": "PCN\n |\n MDDS", + "961527": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Launched", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-8259U Processor (6M Cache, up to 3.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "3.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 36mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961535", + "Ordering Code": "BOXNUC8I5BEK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961486": "PCN\n |\n MDDS", + "961487": "PCN\n |\n MDDS", + "961488": "PCN\n |\n MDDS", + "961489": "PCN\n |\n MDDS", + "961535": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly BEAN CANYON", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC8BEB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i7-8559U Processor (8M Cache, up to 4.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.70 GHz", + "Max Turbo Frequency": "4.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 3x rear USB 3.1 Gen2; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "117 x 112 x 51mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly HADES CANYON", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows Server 2016*", + "Board Number": "NUC8i7HNB", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "65 W", + "DC Input Voltage Supported": "19 VDC", + "Board Chipset": "Mobile Intel® HM175 Chipset", + "Processor Included": "Intel® Core™ i7-8705G Processor with Radeon™ RX Vega M GL graphics (8M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "3.10 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes 2x Thunderbolt 3 (40Gbps) via rear USB-C ports, SDXC card slot and front USB-A and USB-C ports w/ USB 3.1 Gen 2", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400+ 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Mini-DP 1.2, 2x Thunderbolt 3, F+R HDMI 2.0a", + "# of Displays Supported ‡": "6", + "Discrete Graphics": "Radeon™ RX Vega M GL graphics", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "2230", + "M.2 Card Slot (storage)": "22x42/80, 22x80", + "# of USB Ports": "13", + "USB Configuration": "F: USB3, 2x USB 3.1g2 (Type A and C); R: 4x USB3, 2x Thunderbolt3 (USB3.1g2); INT: 2x USB2, 2x USB3", + "USB Revision": "2.0, 3.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "1F, 4R, 2i", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, 2x USB 3.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "221 x 142 x 39mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961712", + "Ordering Code": "BOXNUC8I7HNK4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961316": "PCN\n |\n MDDS", + "961317": "PCN\n |\n MDDS", + "961318": "PCN\n |\n MDDS", + "961319": "PCN\n |\n MDDS", + "961712": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8705G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961154", + "Spec Code": "SR3RK", + "Ordering Code": "FH8067703417515", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961154": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly HADES CANYON", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows Server 2016*", + "Board Number": "NUC8i7HVB", + "Board Form Factor": "UCFF (5.5\" x 8\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "100 W", + "DC Input Voltage Supported": "19 VDC", + "Board Chipset": "Mobile Intel® HM175 Chipset", + "Processor Included": "Intel® Core™ i7-8809G Processor with Radeon™ RX Vega M GH graphics (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "3.10 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes 2x Thunderbolt 3 (40Gbps) via rear USB-C ports, SDXC card slot and front USB-A and USB-C ports w/ USB 3.1 Gen 2", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400+ 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x Mini-DP 1.2, 2x Thunderbolt 3, F+R HDMI 2.0a", + "# of Displays Supported ‡": "6", + "Discrete Graphics": "Radeon™ RX Vega M GH graphics", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "2230", + "M.2 Card Slot (storage)": "22x42/80, 22x80", + "# of USB Ports": "13", + "USB Configuration": "F: USB3, 2x USB 3.1g2 (Type A and C); R: 4x USB3, 2x Thunderbolt3 (USB3.1g2); INT: 2x USB2, 2x USB3", + "USB Revision": "2.0, 3.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "1F, 4R, 2i", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2x M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection i219-LM and i210-AT", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, 2x USB 3.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "2x Thunderbolt™ 3", + "Chassis Dimensions": "221 x 142 x 39mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961309", + "Ordering Code": "BOXNUC8I7HVK6", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961303": "PCN\n |\n MDDS", + "961304": "PCN\n |\n MDDS", + "961305": "PCN\n |\n MDDS", + "961306": "PCN\n |\n MDDS", + "961307": "PCN\n |\n MDDS", + "961309": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8809G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961160", + "Spec Code": "SR3RL", + "Ordering Code": "FH8067703417615", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961160": "PCN" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i7DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8650U Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "8th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front Panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 52 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.8", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "966382", + "Ordering Code": "BLKNUC7I7DNH4E", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "966378": "PCN\n |\n MDDS", + "966379": "PCN\n |\n MDDS", + "966380": "PCN\n |\n MDDS", + "966381": "PCN\n |\n MDDS", + "966382": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8650U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959152", + "Spec Code": "SR3L8", + "Ordering Code": "FJ8067703281718", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i7DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8650U Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "8th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 36 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.8", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "966375", + "Ordering Code": "BLKNUC7I7DNK4E", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "966371": "PCN\n |\n MDDS", + "966372": "PCN\n |\n MDDS", + "966373": "PCN\n |\n MDDS", + "966374": "PCN\n |\n MDDS", + "966375": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8650U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959152", + "Spec Code": "SR3L8", + "Ordering Code": "FJ8067703281718", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i3DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 52 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "962005", + "Ordering Code": "BLKNUC7I3DNH6E", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958804": "PCN\n |\n MDDS", + "960819": "PCN\n |\n MDDS", + "960820": "PCN\n |\n MDDS", + "960821": "PCN\n |\n MDDS", + "960822": "PCN\n |\n MDDS", + "962005": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i3DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 36 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "962000", + "Ordering Code": "BLKNUC7I3DNK6E", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958801": "PCN\n |\n MDDS", + "960812": "PCN\n |\n MDDS", + "960813": "PCN\n |\n MDDS", + "960814": "PCN\n |\n MDDS", + "960816": "PCN\n |\n MDDS", + "962000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i5DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-7300U Processor (3M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 52 mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "962019", + "Ordering Code": "BLKNUC7I5DNH6EL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958791": "PCN\n |\n MDDS", + "960808": "PCN\n |\n MDDS", + "960809": "PCN\n |\n MDDS", + "960810": "PCN\n |\n MDDS", + "960811": "PCN\n |\n MDDS", + "962019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i5DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-7300U Processor (3M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Chassis Dimensions": "115 x 111 x 36 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "961982", + "Ordering Code": "BLKNUC7I5DNK6EL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958789": "PCN\n |\n MDDS", + "960791": "PCN\n |\n MDDS", + "960792": "PCN\n |\n MDDS", + "960793": "PCN\n |\n MDDS", + "960807": "PCN\n |\n MDDS", + "961982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i5BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-7260U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "16GB Intel® Optane™ Memory M.2 module pre-installed", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "958756", + "Ordering Code": "BOXNUC7I5BNHX1L", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958547": "PCN\n |\n MDDS", + "958756": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i7BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i7-7567U Processor (4M Cache, up to 4.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Max Turbo Frequency": "4.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "16GB Intel® Optane™ Memory M.2 module pre-installed", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "958757", + "Ordering Code": "BOXNUC7I7BNHX1L", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958548": "PCN\n |\n MDDS", + "958757": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i3BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: includes USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Included Storage": "16GB Intel® Optane™ Memory M.2 module pre-installed", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "Micro SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "0", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i3BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "0", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950968", + "Ordering Code": "BOXNUC7I3BNHR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950968": "MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i3BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "0", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950964", + "Ordering Code": "BOXNUC7I3BNKR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950964": "MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i5BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-7260U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950961", + "Ordering Code": "BOXNUC7I5BNHL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950959": "PCN\n |\n MDDS", + "950960": "MDDS", + "950961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i5BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-7260U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950957", + "Ordering Code": "BOXNUC7I5BNKL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950955": "PCN\n |\n MDDS", + "950956": "MDDS", + "950957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Baby Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC7i7BNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i7-7567U Processor (4M Cache, up to 4.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Max Turbo Frequency": "4.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes microSDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 2.0a; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "microSDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950952", + "Ordering Code": "BOXNUC7I7BNHL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950951": "PCN\n |\n MDDS", + "950952": "PCN\n |\n MDDS", + "950953": "MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® NUC Kit with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Skull Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*, Windows Server 2012 R2*, Windows Server 2012*", + "Board Number": "NUC6i7KYB", + "Board Form Factor": "UCFF (4\" x 5\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "45 W", + "DC Input Voltage Supported": "19 VDC", + "Processor Included": "Intel® Core™ i7-6770HQ Processor (6M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes Thunderbolt 3 (40Gbps) USB 3.1 Gen 2 (10Gbps) and DP 1.2 via USB-C; also includes SDXC card slot", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133+ 1.2V, 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; HDMI 2.0; USB-C (DP1.2)", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "Dual M.2 slots with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "2x 22x42/80", + "# of USB Ports": "9", + "USB Configuration": "2x front and 2x rear USB 3.0, 1x USB 3.1 via Thunderbolt 3; 2x USB 2.0, 2x USB 3.0 via headers", + "USB Revision": "2.0, 3.0, 3.1 Gen2", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2F, 2R, 2i", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "(2x M.2 SATA or 2x M.2 PCIe) SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Intel® Ethernet Connection I219-LM", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, 2x USB 3.0, FRONT_PANEL", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Chassis Dimensions": "211 x 116 x 28 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "944578", + "Ordering Code": "BOXNUC6I7KYK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "944578": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6770HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948624", + "Spec Code": "SR2QY", + "Ordering Code": "JQ8066202195123", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Swift Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC6i3SYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-6100U Processor (3M Cache, 2.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "946884", + "Ordering Code": "BOXNUC6I3SYHL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "946884": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944334", + "Spec Code": "SR2EU", + "Ordering Code": "FJ8066201931104", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Swift Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC6i3SYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-6100U Processor (3M Cache, 2.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "946882", + "Ordering Code": "BOXNUC6I3SYKR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "943211": "PCN\n |\n MDDS", + "946878": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944334", + "Spec Code": "SR2EU", + "Ordering Code": "FJ8066201931104", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Swift Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC6i5SYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-6260U Processor (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Max Turbo Frequency": "2.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "946874", + "Ordering Code": "BOXNUC6I5SYHL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "943207": "PCN\n |\n MDDS", + "946874": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6260U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946143", + "Spec Code": "SR2JC", + "Ordering Code": "FJ8066202496511", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 6th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Swift Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC6i5SYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-6260U Processor (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Max Turbo Frequency": "2.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen3", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (storage)": "22x42/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I219-V", + "Integrated Wireless‡": "Intel® Wireless-AC 8260 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "946870", + "Ordering Code": "BOXNUC6I5SYKR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "943204": "PCN\n |\n MDDS", + "946869": "PCN\n |\n MDDS", + "946870": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6260U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946143", + "Spec Code": "SR2JC", + "Ordering Code": "FJ8066202496511", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i5RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "25 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-5257U Processor (3M Cache, up to 3.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Max Turbo Frequency": "3.10 GHz", + "Warranty Period": "3 yrs", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333 and 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "PCIe Rev 2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "4 external + 2 internal headers", + "USB Revision": "USB 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "4 + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "No", + "MM#": "999CG5", + "Ordering Code": "BOXNUC5I5RYHS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999CG5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5257U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939672", + "Spec Code": "SR26K", + "Ordering Code": "FH8065802064111", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939672": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i3RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5005U Processor (3M Cache, 2.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "1TB SATA3 HDD", + "Included Memory": "2x 2GB DDR3L-1600", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "983261", + "Ordering Code": "BOXNUC5I3RYHSN", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "983261": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5005U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939368", + "Spec Code": "SR244", + "Ordering Code": "FH8065801884006", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939368": "PCN\n |\n MDDS", + "940707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i3RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5005U Processor (3M Cache, 2.00 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe X4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "983260", + "Ordering Code": "BOXNUC5I3RYHS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "983260": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5005U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939368", + "Spec Code": "SR244", + "Ordering Code": "FH8065801884006", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939368": "PCN\n |\n MDDS", + "940707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i7RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "28 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i7-5557U Processor (4M Cache, up to 3.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Max Turbo Frequency": "3.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "942066", + "Ordering Code": "BOXNUC5I7RYH", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "942066": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5557U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939662", + "Spec Code": "SR26E", + "Ordering Code": "FH8065802063512", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939662": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Maple Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded Standard 7*", + "Board Number": "NUC5i3MYBE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5010U Processor (3M Cache, 2.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Other features: M.2 WiFi & SSD slots, CustSol Hdr, 2.5” drive ready", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x mDP, 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "High-Speed Custom Solutions Connector (PCIe x4)", + "M.2 Card Slot (wireless)": "22x30", + "M.2 Card Slot (storage)": "22x42/80 \"B\" Keyed (SATA SSDs)", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "4 + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "2.5\" SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Front panel headset jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "Wireless antennas pre-assembled", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "10", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i3RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5010U Processor (3M Cache, 2.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i3RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5010U Processor (3M Cache, 2.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Maple Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded Standard 7*, Windows Server 2012 R2*, Windows Server 2008 R2*", + "Board Number": "NUC5i5MYHE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-5300U Processor (3M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "2.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Other features: M.2 WiFi & SSD slots, CustSol Hdr, 2.5” drive ready", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x mDP, 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "High-Speed Custom Solutions Connector (PCIe x4)", + "M.2 Card Slot (wireless)": "22x30", + "M.2 Card Slot (storage)": "22x42/80 \"B\" Keyed (SATA SSDs)", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "4 + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "2.5\" SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Front panel headset jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "Wireless antennas pre-assembled", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "10", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5300U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939361", + "Spec Code": "SR23X", + "Ordering Code": "FH8065801620104", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i5RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-5250U Processor (3M Cache, up to 2.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "2.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 49mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5250U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939660", + "Spec Code": "SR26C", + "Ordering Code": "FH8065802063410", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Rock Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5i5RYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-5250U Processor (3M Cache, up to 2.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "2.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x4 lanes", + "M.2 Card Slot (storage)": "22x42/60/80", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (mHDMI mDP); L+R+mic (F)", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "Intel® Wireless-AC 7265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5250U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939660", + "Spec Code": "SR26C", + "Ordering Code": "FH8065802063410", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Pentium® Processors", + "Code Name": "Products formerly Atlas Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Number": "NUC11ATBPE", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "19VDC", + "Processor Included": "Intel® Pentium® Silver N6005 Processor (4M Cache, up to 3.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "Optional 64GB eMMC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2933 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DP++/HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "M.2 Card Slot (wireless)": "1", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front USB 3.2 Gen 1 and 2x rear USB 3.2 Gen 2; 2x USB 2.0", + "USB Revision": "3.2 Gen 2 / 3.2 Gen 1 / 2.0", + "Audio (back channel + front channel)": "1x 3.5mm stereo out jack, 1x 3.5mm microphone jack", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Chassis Dimensions": "135x115x36mm", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ANTN", + "Ordering Code": "BNUC11ATKPE0S00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99ANTF": "PCN", + "99ANTG": "PCN", + "99ANTH": "PCN", + "99ANTJ": "PCN", + "99ANTK": "PCN", + "99ANTM": "PCN", + "99ANTN": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N6005", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E71", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98G", + "Spec Code": "SRKGU", + "Ordering Code": "DC8069704609807", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Pentium® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Pentium® Silver J5040 Processor (4M Cache, up to 3.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes SDXC card slot, no audio codec.", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "# of Displays Supported ‡": "2", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHT4", + "Ordering Code": "BOXNUC7PJYHN2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHT2": "PCN", + "99AHT3": "PCN", + "99AHT4": "PCN" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J5040", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DAL", + "Spec Code": "SRFDB", + "Ordering Code": "FH8068003067443", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "999DAL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Pentium® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Pentium® Silver J5005 Processor (4M Cache, up to 2.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes SDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "# of Displays Supported ‡": "2", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961280", + "Ordering Code": "BOXNUC7PJYH5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961275": "PCN\n |\n MDDS", + "961276": "PCN\n |\n MDDS", + "961277": "PCN\n |\n MDDS", + "961278": "PCN\n |\n MDDS", + "961279": "PCN\n |\n MDDS", + "961280": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Silver Processor Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J5005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.80 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 605", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3184", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "105 deg C", + "TJUNCTION": "105 deg C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961642", + "Spec Code": "SR3S3", + "Ordering Code": "FH8068003067415", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Pentium® Processors", + "Code Name": "Products formerly Pinnacle Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5PPYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "6 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Pentium® Processor N3700 (2M Cache, up to 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA (HDB15); HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe X1 lane", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "22x30", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111HN", + "Integrated Wireless‡": "Intel® Wireless-AC 3165 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 52mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "943608", + "Ordering Code": "BOXNUC5PPYHR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3700", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Intel® Celeron® Processor N3000 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "16", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943327", + "Spec Code": "SR2A7", + "Ordering Code": "FH8066501715923", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "942599": "PCN\n |\n MDDS", + "943327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Atlas Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Number": "NUC11ATBC2", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "19VDC", + "Processor Included": "Intel® Celeron® Processor N4505 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "Optional 64GB eMMC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2933 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DP++/HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "M.2 Card Slot (wireless)": "1", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front USB 3.2 Gen 1 and 2x rear USB 3.2 Gen 2; 2x USB 2.0", + "USB Revision": "3.2 Gen 2 / 3.2 Gen 1 / 2.0", + "Audio (back channel + front channel)": "1x 3.5mm stereo out jack, 1x 3.5mm microphone jack", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Chassis Dimensions": "135x115x36mm", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ANV6", + "Ordering Code": "BNUC11ATKC20S00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99ANV0": "PCN", + "99ANV1": "PCN", + "99ANV2": "PCN", + "99ANV3": "PCN", + "99ANV4": "PCN", + "99ANV5": "PCN", + "99ANV6": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "16", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E55", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98J", + "Spec Code": "SRKGW", + "Ordering Code": "DC8069704609809", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Atlas Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Board Number": "NUC11ATBC4", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Lithography": "10 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "19VDC", + "Processor Included": "Intel® Celeron® Processor N5105 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "Optional 64GB eMMC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2933 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DP++/HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "M.2 Card Slot (wireless)": "1", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front USB 3.2 Gen 1 and 2x rear USB 3.2 Gen 2; 2x USB 2.0", + "USB Revision": "3.2 Gen 2 / 3.2 Gen 1 / 2.0", + "Audio (back channel + front channel)": "1x 3.5mm stereo out jack, 1x 3.5mm microphone jack", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Chassis Dimensions": "135x115x36mm", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ANTZ", + "Ordering Code": "BNUC11ATKC40S00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99ANTP": "PCN", + "99ANTR": "PCN", + "99ANTT": "PCN", + "99ANTV": "PCN", + "99ANTW": "PCN", + "99ANTX": "PCN", + "99ANTZ": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98H", + "Spec Code": "SRKGV", + "Ordering Code": "DC8069704609808", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Chaco Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CCHBN", + "Board Form Factor": "3.5” SBC (146mm x 101.6mm)", + "Internal Drive Form Factor": "M.2 SSD", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V - 24V", + "Processor Included": "Intel® Celeron® Processor N3350 (2M Cache, up to 2.40 GHz)", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3 (dual-channel, soldered-down)", + "ECC Memory Supported ‡": "No", + "Graphics Output": "HDMI 2.0, HDMI 1.4, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 2", + "M.2 Card Slot (wireless)": "22x30 slot (key E)", + "M.2 Card Slot (storage)": "22x80 slot (key M; NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "1x front and 1x rear USB 3.0; 2x rear USB 2.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i211-AT (10/100/1000 Mbps)", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 3168", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "154 x 108 x 32 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99AHRM", + "Ordering Code": "BKNUC8CCHKRN4", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHRH": "PCN", + "99AHRJ": "PCN", + "99AHRK": "PCN", + "99AHRM": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYBN", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Celeron® Processor J4025 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot, No audio codec or microphones", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "# of Displays Supported ‡": "2", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "Audio (back channel + front channel)": "7.1 digital", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99AHT1", + "Ordering Code": "BOXNUC7CJYHN5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHRV": "PCN", + "99AHRW": "PCN", + "99AHRX": "PCN", + "99AHRZ": "PCN", + "99AHT0": "PCN", + "99AHT1": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake Refresh", + "Vertical Segment": "Mobile", + "Processor Number": "J4025", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@30Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984796", + "Spec Code": "SRET3", + "Ordering Code": "FH8068003067428", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "984796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Chaco Canyon", + "Status": "Launched", + "Launch Date": "Q3'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CCHB", + "Board Form Factor": "3.5” SBC (146mm x 101.6mm)", + "Internal Drive Form Factor": "M.2 SSD", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V - 24V", + "Processor Included": "Intel® Celeron® Processor N3350 (2M Cache, up to 2.40 GHz)", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3 (dual-channel, soldered-down)", + "ECC Memory Supported ‡": "No", + "Graphics Output": "HDMI 2.0, HDMI 1.4, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 2", + "M.2 Card Slot (wireless)": "22x30 slot (key E)", + "M.2 Card Slot (storage)": "22x80 slot (key M; NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "1x front and 1x rear USB 3.0; 2x rear USB 2.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "1/8\" line out", + "Integrated LAN": "Intel® i211-AT (10/100/1000 Mbps)", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 3168", + "Integrated Bluetooth": "Yes", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Chassis Dimensions": "154 x 108 x 32 mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999DKH", + "Ordering Code": "BKNUC8CCHKR5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999DKA": "PCN\n |\n MDDS", + "999DKC": "PCN\n |\n MDDS", + "999DKD": "PCN\n |\n MDDS", + "999DKF": "PCN\n |\n MDDS", + "999DKG": "PCN\n |\n MDDS", + "999DKH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly JUNE CANYON", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*", + "Board Number": "NUC7JYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Celeron® J4005 Processor (4M Cache, up to 2.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: Includes SDXC card slot, dual microphones", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "38.4 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x HDMI 2.0a", + "# of Displays Supported ‡": "2", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111H-CG", + "Integrated Wireless‡": "Intel® Wireless-AC 9462 + Bluetooth 5.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "961256", + "Ordering Code": "BOXNUC7CJYH5", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "961251": "PCN\n |\n MDDS", + "961252": "PCN\n |\n MDDS", + "961253": "PCN\n |\n MDDS", + "961254": "PCN\n |\n MDDS", + "961255": "PCN\n |\n MDDS", + "961256": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Gemini Lake", + "Vertical Segment": "Mobile", + "Processor Number": "J4005", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.70 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB", + "TDP": "10 W", + "Embedded Options Available": "No", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR4/LPDDR4 upto 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 600", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3185", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1090", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961644", + "Spec Code": "SR3S5", + "Ordering Code": "FH8068003067416", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G165612", + "US HTS": "8542310001", + "961644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Arches Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC6CAYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Celeron® Processor J3455 (2M Cache, up to 2.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot, dual microphones", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600/1866 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "14.9 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA (HDB15); HDMI 2.0", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x1 lane", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "22x30", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111HN", + "Integrated Wireless‡": "Intel® Wireless-AC 3168 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950798", + "Ordering Code": "BOXNUC6CAYHL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950798": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983222", + "Spec Code": "SREKK", + "Ordering Code": "FH8066802986102", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983222": "PCN\n |\n MDDS", + "951842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Arches Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC6CAYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "TDP": "10 W", + "DC Input Voltage Supported": "12-19 VDC", + "Pre-Installed Operating System": "Windows 10, 64-bit*", + "Processor Included": "Intel® Celeron® Processor J3455 (2M Cache, up to 2.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: 2GB DDR3L SO-DIMM; 32GB eMMC on-board; Windows® 10, 64-bit Home pre-installed. Includes SDXC card slot, dual microphones", + "Included Storage": "32GB eMMC", + "Included Memory": "1x 2GB DDR3L RAM", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600/1866 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "14.9 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA (HDB15); HDMI 2.0", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe x1 lane", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "22x30", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital; L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111HN", + "Integrated Wireless‡": "Intel® Wireless-AC 3168 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "CEC, 2x USB2.0, AUX_PWR, FRONT_PANEL", + "Chassis Dimensions": "115 x 111 x 51mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "950796", + "Ordering Code": "BOXNUC6CAYSAJ", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "950794": "PCN\n |\n MDDS", + "950796": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor J Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Desktop", + "Processor Number": "J3455", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "2 MB", + "TDP": "10 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "250 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983222", + "Spec Code": "SREKK", + "Ordering Code": "FH8066802986102", + "Shipping Media": "TRAY", + "Stepping": "F1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983222": "PCN\n |\n MDDS", + "951842": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Celeron® Processors", + "Code Name": "Products formerly Pinnacle Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 64-bit*, Windows 7, 64-bit*", + "Board Number": "NUC5CPYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "14 nm", + "TDP": "6 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Celeron® Processor N3060 (2M Cache, up to 2.48 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "Other features: Includes SDXC card slot", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "12.8 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA (HDB15); HDMI 1.4b", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "M.2 slot with PCIe X1 lane", + "Removable Memory Card Slot": "SDXC with UHS-I support", + "M.2 Card Slot (wireless)": "22x30", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital (HDMI); L+R+mic (F); L+R+TOSLINK (R)", + "Integrated LAN": "Realtek 8111HN", + "Integrated Wireless‡": "Intel® Wireless-AC 3165 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "S/PDIF Out Connector": "TOSLINK", + "Additional Headers": "2x USB2.0, AUX_PWR", + "Chassis Dimensions": "115 x 111 x 52mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "940289", + "Ordering Code": "BOXNUC5CPYH", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "940289": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Braswell", + "Vertical Segment": "Mobile", + "Processor Number": "N3060", + "Status": "Launched", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.48 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "320 MHz", + "Graphics Burst Frequency": "600 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4/2x2/1x2 + 2x1/4x1", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951881", + "Spec Code": "SR2ZN", + "Ordering Code": "FH8066501715949", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "951881": "PCN\n |\n MDDS", + "947022": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Kit with Intel® Atom® Processors", + "Code Name": "Products formerly Thin Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded 8 Standard*, Windows Embedded Standard 7*", + "Board Number": "DE3815TYKH", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "4 GB", + "Lithography": "22 nm", + "TDP": "5 W", + "DC Input Voltage Supported": "12-19 VDC", + "Back-to-BIOS Button": "No", + "Processor Included": "Intel Atom® Processor E3815 (512K Cache, 1.46 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Atom/Fanless/TPM/4GB-eMMC/HDMI/VGA/LAN/2.5” ready", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1066 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "8.53 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI, VGA, eDP", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "0", + "M.2 Card Slot (wireless)": "PCIe mini-card (half-length)", + "# of USB Ports": "6", + "USB Configuration": "1x front USB 3.0 and 2x rear USB 2.0; 3x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "2 3", + "USB 3.0 Configuration (External + Internal)": "1 (Front)", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Back panel headphone/microphone jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "Wireless antennas pre-assembled", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Max CPU Configuration": "1", + "Package Size": "190mm x 116mm x 40mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "Yes", + "TPM Version": "1.2", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3815", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Cache": "512 KB L2 Cache", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "400 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935360", + "Spec Code": "SR1XA", + "Ordering Code": "FH8065301567414", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932048": "PCN\n |\n MDDS", + "935360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Code Name": "Products formerly Forest Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "DN2820FYK", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "7.5 W", + "DC Input Voltage Supported": "12 VDC", + "Processor Included": "Intel® Celeron® Processor N2830 (1M Cache, up to 2.41 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "2.16 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1066/1333 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "10.7 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI 1.4a", + "# of Displays Supported ‡": "1", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe X1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "# of USB Ports": "3", + "USB Configuration": "1x front and 2x rear USB 2.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "2 + 0", + "USB 3.0 Configuration (External + Internal)": "1 + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Realtek 8111GN-CG", + "Integrated Wireless‡": "Intel® Wireless-N 7260 + Bluetooth 4.0", + "Integrated Bluetooth": "Yes", + "Consumer Infrared Rx Sensor": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Mobile", + "Processor Number": "N2830", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.41 GHz", + "Processor Base Frequency": "2.16 GHz", + "Cache": "1 MB", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1333", + "Max # of Memory Channels": "2", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "313 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Max Dynamic Frequency": "750 MHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4", + "Max # of PCI Express Lanes": "4", + "# of USB Ports": "5", + "USB Revision": "3.0 and 2.0", + "Total # of SATA Ports": "2", + "Sockets Supported": "FCBGA1170", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "25mm x 27mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Identity Protection Technology ‡": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "MM#": "934897", + "Spec Code": "SR1W4", + "Ordering Code": "FH8065301729602", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "934897": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D34010WYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-4010U Processor (3M Cache, 1.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "931822", + "Ordering Code": "BOXD34010WYK3", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "931574": "PCN", + "931576": "PCN", + "931820": "PCN", + "931822": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929013", + "Spec Code": "SR16Q", + "Ordering Code": "CL8064701478202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D34010WYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-4010U Processor (3M Cache, 1.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" SSD + mSATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "932428", + "Ordering Code": "BOXD34010WYKH3", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "932425": "PCN", + "932426": "PCN", + "932427": "PCN", + "932428": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929013", + "Spec Code": "SR16Q", + "Ordering Code": "CL8064701478202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D54250WYK", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-4250U Processor (3M Cache, up to 2.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "2.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "931824", + "Ordering Code": "BOXD54250WYK3", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "931577": "PCN", + "931578": "PCN", + "931823": "PCN", + "931824": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4250U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929010", + "Spec Code": "SR16M", + "Ordering Code": "CL8064701463101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D54250WYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-4250U Processor (3M Cache, up to 2.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "2.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" SSD + mSATA SSD (RAID-0 RAID-1)", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "932424", + "Ordering Code": "BOXD54250WYKH3", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "932421": "PCN", + "932422": "PCN", + "932423": "PCN", + "932424": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4250U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929010", + "Spec Code": "SR16M", + "Ordering Code": "CL8064701463101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Server 2012 R2*, Windows Web Server 2008 R2*", + "Board Number": "DC53427HYE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Processor Included": "Intel® Core™ i5-3427U Processor (3M Cache, up to 2.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Max Turbo Frequency": "2.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3-1333/1600 1.5V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2 x mDP/1 x HDMI", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB 2.0 Configuration (External + Internal)": "2 2", + "USB 3.0 Configuration (External + Internal)": "1 (Front)", + "Total # of SATA Ports": "0", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "0", + "Serial Port via Internal Header": "No", + "Audio (back channel + front channel)": "0 0", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Max CPU Configuration": "1", + "Package Size": "116.6mm x 112.0mm x 39.0mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "1.2", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Anti-Theft Technology": "Yes", + "MM#": "930170", + "Ordering Code": "BLKDC53427HYE", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "927920": "PCN\n |\n MDDS", + "930170": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3427U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919705", + "Spec Code": "SR0N7", + "Ordering Code": "AV8063801057801", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919705": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "DCCP847DYE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "32 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Celeron® Processor 847 (2M Cache, 1.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3-1333/1600 1.5V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB Revision": "2.0", + "USB 2.0 Configuration (External + Internal)": "3 2", + "USB 3.0 Configuration (External + Internal)": "0 + 0", + "Total # of SATA Ports": "0", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "0", + "Serial Port via Internal Header": "No", + "Audio (back channel + front channel)": "0 0", + "Integrated LAN": "10/100/1000", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Max CPU Configuration": "1", + "Package Size": "116.6mm x 112.0mm x 39.0mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "No", + "TPM Version": "None", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "No", + "Anti-Theft Technology": "Yes", + "MM#": "925743", + "Ordering Code": "BOXDCCP847DYE", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "925743": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "847", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "912341", + "Spec Code": "SR08N", + "Ordering Code": "AV8062700852800", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "DC3217BY", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Core™ i3-3217U Processor (3M Cache, 1.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3-1333/1600 1.5V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI Thunderbolt", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "3", + "USB Revision": "2.0", + "USB 2.0 Configuration (External + Internal)": "3 0", + "USB 3.0 Configuration (External + Internal)": "0 + 0", + "Total # of SATA Ports": "0", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "0", + "Serial Port via Internal Header": "No", + "Audio (back channel + front channel)": "0 0", + "Integrated LAN": "None", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Max CPU Configuration": "1", + "Package Size": "116.6mm x 112.0mm x 39.0mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "No", + "TPM Version": "None", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "No", + "Anti-Theft Technology": "Yes", + "MM#": "923299", + "Ordering Code": "BOXDC3217BY", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "923299": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Kits", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "DC3217IYE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Core™ i3-3217U Processor (3M Cache, 1.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3-1333/1600 1.5V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB Revision": "2.0", + "USB 2.0 Configuration (External + Internal)": "3 2", + "USB 3.0 Configuration (External + Internal)": "0 + 0", + "Total # of SATA Ports": "0", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "0", + "Serial Port via Internal Header": "No", + "Audio (back channel + front channel)": "0 0", + "Integrated LAN": "10/100/1000", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Max CPU Configuration": "1", + "Package Size": "116.6mm x 112.0mm x 39.0mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "No", + "TPM Version": "None", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "No", + "Anti-Theft Technology": "Yes", + "MM#": "930970", + "Ordering Code": "BOXDC3217IYR", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "924222": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A380", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Desktop", + "Status": "Launched", + "Launch Date": "Q2'22", + "Xe-cores": "8", + "Render Slices": "2", + "Ray Tracing Units": "8", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "128", + "Xe Vector Engines": "128", + "Graphics Base Clock": "2000 MHz", + "TDP": "75 W", + "Device ID": "0x5693", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "96 bit", + "Graphics Memory Bandwidth": "186 GB/s", + "Graphics Memory Speed": "15.5 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A770M", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Mobile", + "Status": "Launched", + "Launch Date": "Q2'22", + "Xe-cores": "32", + "Render Slices": "8", + "Ray Tracing Units": "32", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "512", + "Xe Vector Engines": "512", + "Graphics Base Clock": "1650 MHz", + "TGP": "120W-150W", + "PCI Express Configurations ‡": "Up to PCI Express 4.0 x16", + "Device ID": "0x5690", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "256 bit", + "Graphics Memory Bandwidth": "512 GB/s", + "Graphics Memory Speed": "16 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "Up to 4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 2880@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Dynamic Power Share‡": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A730M", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Mobile", + "Status": "Launched", + "Launch Date": "Q2'22", + "Xe-cores": "24", + "Render Slices": "6", + "Ray Tracing Units": "24", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "384", + "Xe Vector Engines": "384", + "Graphics Base Clock": "1100 MHz", + "TGP": "80W-120W", + "PCI Express Configurations ‡": "Up to PCI Express 4.0 x16", + "Device ID": "0x5691", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "192 bit", + "Graphics Memory Bandwidth": "336 GB/s", + "Graphics Memory Speed": "14 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "Up to 4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 2880@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Dynamic Power Share‡": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A550M", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Mobile", + "Status": "Launched", + "Launch Date": "Q2'22", + "Xe-cores": "16", + "Render Slices": "4", + "Ray Tracing Units": "16", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "256", + "Xe Vector Engines": "256", + "Graphics Base Clock": "900 MHz", + "TGP": "60W-80W", + "PCI Express Configurations ‡": "Up to PCI Express 4.0 x16", + "Device ID": "0x5692", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "128 bit", + "Graphics Memory Bandwidth": "224 GB/s", + "Graphics Memory Speed": "14 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "Up to 4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 2880@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Dynamic Power Share‡": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A370M", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Mobile", + "Status": "Launched", + "Launch Date": "Q1' 22", + "Xe-cores": "8", + "Render Slices": "2", + "Ray Tracing Units": "8", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "128", + "Xe Vector Engines": "128", + "Graphics Base Clock": "1550 MHz", + "TGP": "35-50W", + "PCI Express Configurations ‡": "Up to PCI Express 4.0 x8", + "Device ID": "0x5693", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "64 bit", + "Graphics Memory Bandwidth": "112 GB/s", + "Graphics Memory Speed": "14 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "Up to 4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 2880@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Dynamic Power Share‡": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Arc™ A-Series Graphics", + "Code Name": "Products formerly Alchemist", + "Model Number": "A350M", + "Microarchitecture": "Xe HPG", + "Lithography Type": "TSMC N6", + "Vertical Segment": "Mobile", + "Status": "Launched", + "Launch Date": "Q1' 22", + "Xe-cores": "6", + "Render Slices": "2", + "Ray Tracing Units": "6", + "Intel® Xe Matrix Extensions (Intel® XMX) Engines": "96", + "Xe Vector Engines": "96", + "Graphics Base Clock": "1150 MHz", + "TGP": "25-35W", + "PCI Express Configurations ‡": "Up to PCI Express 4.0 x8", + "Device ID": "0x5694", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Graphics Memory Interface": "64 bit", + "Graphics Memory Bandwidth": "112 GB/s", + "Graphics Memory Speed": "14 Gbps", + "Ray Tracing": "Yes", + "Variable Rate Shading (VRS)": "Yes", + "DirectX* Support": "DirectX 12 Ultimate", + "Vulkan* Support": "1.3", + "OpenGL* Support": "Up to 4.6", + "Multi-Format Codec Engines": "2", + "Adaptive Sync": "Yes", + "# of Displays Supported‡": "4", + "Graphics Output": "eDP* 1.4, DP 2.0 up to UHBR 10**, HDMI* 2.1, HDMI* 2.0b", + "Max Resolution (HDMI)‡": "4096 x 2160@60Hz", + "Max Resolution (DP)‡": "7680 x 4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 2880@60Hz", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes", + "AV1 Encode/Decode": "Yes", + "VP9 Bitstream & Decoding": "Yes", + "Intel® Deep Link Dynamic Power Share‡": "Yes", + "Intel® Deep Link Hyper Compute‡": "Yes", + "Intel® Deep Link Hyper Encode‡": "Yes", + "Intel® Deep Link Stream Assist‡": "Yes" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 200 Series", + "Code Name": "Products formerly Barlow Pass", + "Capacity": "128 GB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "1.9 oz", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999HGZ", + "Ordering Code": "NMB1XXD128GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999HGR": "PCN\n |\n MDDS", + "999HGZ": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 200 Series", + "Code Name": "Products formerly Barlow Pass", + "Capacity": "256 GB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "1.9 oz", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999HH1", + "Ordering Code": "NMB1XXD256GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999HH0": "PCN\n |\n MDDS", + "999HH1": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 200 Series", + "Code Name": "Products formerly Barlow Pass", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "Q2'20", + "Operating Temperature Range": "0°C to 85°C", + "Operating Temperature (Maximum)": "85 °C", + "Operating Temperature (Minimum)": "0 °C", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Weight": "1.9 oz", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999HH3", + "Ordering Code": "NMB1XXD512GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999HH2": "PCN\n |\n MDDS", + "999HH3": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 100 Series", + "Code Name": "Products formerly Apache Pass", + "Capacity": "128 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Operating Temperature (Maximum)": "85 °C", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999AVW", + "Ordering Code": "NMA1XXD128GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999AVV": "PCN\n |\n MDDS", + "999AVW": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 100 Series", + "Code Name": "Products formerly Apache Pass", + "Capacity": "256 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Operating Temperature (Maximum)": "85 °C", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999AVZ", + "Ordering Code": "NMA1XXD256GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999AVX": "PCN\n |\n MDDS", + "999AVZ": "PCN" + }, + { + "Product Collection": "Intel® Optane™ Persistent Memory 100 Series", + "Code Name": "Products formerly Apache Pass", + "Capacity": "512 GB", + "Status": "Launched", + "Launch Date": "Q2'19", + "Operating Temperature (Maximum)": "85 °C", + "Mean Time Between Failures (MTBF)": "2 million hours", + "Warranty Period": "5 yrs", + "Additional Information": "View now", + "Form Factor": "Persistent Memory Module (PMem)", + "Interface": "DDR-T", + "Hardware Encryption": "AES 256 bit", + "MM#": "999AW2", + "Ordering Code": "NMA1XXD512GPSUF", + "ECCN": "5A992CN3", + "CCATS": "G159019", + "US HTS": "8473301140", + "999AW1": "PCN\n |\n MDDS", + "999AW2": "PCN" + }, + { + "Product Collection": "Intel® Compute Card with 7th Generation Intel® Core™ Processors", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Linux*", + "Board Number": "CD1IV128MK", + "Socket": "Compute Card", + "Embedded Storage": "128 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V +/- 5%", + "Processor Included": "Intel® Core™ i5-7Y57 Processor (4M Cache, up to 3.30 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.20 GHz", + "Max Turbo Frequency": "3.30 GHz", + "Warranty Period": "3 yrs", + "Product Brief": "View now", + "Included Storage": "Intel® SSD Pro 6000p 128GB PCIe 3.0 x4", + "Included Memory": "8GB", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR3 1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DisplayPort 1.2 and HDMI 1.4b via DDI", + "# of Displays Supported ‡": "2", + "Audio (back channel + front channel)": "Digital Display Interface", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 vPro (IEEE 802.11ac 2x2)", + "Integrated Bluetooth": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Wake Technology": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "954851", + "Ordering Code": "BLKCD1IV128MK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "954851": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7Y57", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953349", + "Spec Code": "SR33Y", + "Ordering Code": "HE8067702739527", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Card with 7th Generation Intel® Core™ Processors", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Linux*", + "Board Number": "CD1M3128MK", + "Socket": "Compute Card", + "Embedded Storage": "128 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V +/- 5%", + "Processor Included": "Intel® Core™ m3-7Y30 Processor (4M Cache, 2.60 GHz )", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.00 GHz", + "Max Turbo Frequency": "2.60 GHz", + "Warranty Period": "3 yrs", + "Product Brief": "View now", + "Included Storage": "Intel® SSD 128GB PCIe 3.0 x4", + "Included Memory": "4GB", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DisplayPort 1.2 and HDMI 1.4b via DDI", + "# of Displays Supported ‡": "2", + "Audio (back channel + front channel)": "Digital Display Interface", + "Integrated Wireless‡": "Intel® Wireless-AC 8265 + Bluetooth 4.2", + "Integrated Bluetooth": "Yes", + "Intel® Remote Wake Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "954730", + "Ordering Code": "BLKCD1M3128MK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "954730": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-7Y30", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.75 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953358", + "Spec Code": "SR347", + "Ordering Code": "HE8067702739824", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953358": "PCN\n |\n MDDS", + "951961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Card with Intel® Pentium® Processors", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Linux*", + "Board Number": "CD1P64GK", + "Socket": "Compute Card", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V +/- 5%", + "Processor Included": "Intel® Pentium® Processor N4200 (2M Cache, up to 2.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Product Brief": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DisplayPort 1.2 and HDMI 1.4b via DDI", + "# of Displays Supported ‡": "2", + "Audio (back channel + front channel)": "Digital Display Interface", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Intel® Remote Wake Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "956387", + "Ordering Code": "BLKCD1P64GK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "956387": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Pentium® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N4200", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.50 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 505", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "750 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "18", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A84", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951483", + "Spec Code": "SR2Y9", + "Ordering Code": "FH8066802979703", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951483": "PCN\n |\n MDDS", + "951830": "PCN\n |\n MDDS", + "999N4L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Card with Intel® Celeron® Processors", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Linux*", + "Board Number": "CD1C32GK", + "Socket": "Compute Card", + "Embedded Storage": "32 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V +/- 5%", + "Processor Included": "Intel® Celeron® Processor N3350 (2M Cache, up to 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Product Brief": "View now", + "Included Storage": "32GB eMMC", + "Included Memory": "2GB", + "Max Memory Size (dependent on memory type)": "2 GB", + "Memory Types": "LPDDR3 1866 MHz", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DisplayPort 1.2 and HDMI 1.4b via DDI", + "# of Displays Supported ‡": "2", + "Audio (back channel + front channel)": "Digital Display Interface", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Intel® Remote Wake Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "980068", + "Ordering Code": "BLKCD1C32GK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "980068": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Card with Intel® Celeron® Processors", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Linux*", + "Board Number": "CD1C64GK", + "Socket": "Compute Card", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V +/- 5%", + "Processor Included": "Intel® Celeron® Processor N3450 (2M Cache, up to 2.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Product Brief": "View now", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB", + "Max Memory Size (dependent on memory type)": "4 GB", + "Memory Types": "LPDDR3 1866 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DisplayPort 1.2 and HDMI 1.4b via DDI", + "# of Displays Supported ‡": "2", + "Audio (back channel + front channel)": "Digital Display Interface", + "Integrated Wireless‡": "Intel® Dual Band Wireless-AC 7265", + "Integrated Bluetooth": "Yes", + "Intel® Remote Wake Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "956383", + "Ordering Code": "BLKCD1C64GK", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "956383": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3450", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "700 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951833", + "Spec Code": "SR2Z6", + "Ordering Code": "FH8066802979803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "951833": "PCN\n |\n MDDS", + "951484": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Card Docks", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Socket": "Compute Card", + "DC Input Voltage Supported": "19V", + "Warranty Period": "1 yrs", + "Description": "Other connections: HDMI type A, Mini DisplayPort. Dimensions: 151.76mm L x 145mm W x 20.5mm H.", + "Product Brief": "View now", + "Graphics Output": "HDMI, MiniDP", + "# of Displays Supported ‡": "2", + "# of USB Ports": "3", + "USB Revision": "3.0", + "USB 3.0 Configuration (External + Internal)": "3 + 0", + "Audio (back channel + front channel)": "HDMI, MiniDP", + "Integrated LAN": "10/100/1000", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "MM#": "954855", + "Ordering Code": "BLKDK132EPJL", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "954842": "PCN\n |\n MDDS", + "954854": "MDDS", + "954855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server GPU Series", + "Code Name": "Products formerly SG1", + "Status": "Launched", + "Launch Date": "Q4'20", + "Use Conditions": "Server/Enterprise", + "Graphics Max Dynamic Clock": "1100 MHz", + "Graphics Base Clock": "900 MHz", + "Graphics Memory Interface": "128 bit", + "Graphics Memory Bandwidth": "68 GB/s", + "Graphics Memory Speed": "2133 Gbps", + "OpenGL* Support": "OpenGLES 3.1", + "# of Displays Supported‡": "0", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 12-bit", + "MM#": "99A4N7", + "Spec Code": "SRK31", + "Ordering Code": "AV8071004382513", + "Stepping": "B0", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8542310001", + "99A4N7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900X", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s DMI3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "94 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "94°C", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999PNM", + "Spec Code": "SRGV7", + "Ordering Code": "BXC8069510900X", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999N0A": "PCN\n |\n MDDS", + "999PNG": "PCN\n |\n MDDS", + "999PNM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10920X", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s DMI3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "94 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "94°C", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999PNL", + "Spec Code": "SRGSJ", + "Ordering Code": "BXC8069510920X", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZG": "PCN\n |\n MDDS", + "999PNF": "PCN\n |\n MDDS", + "999PNL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10940X", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s DMI3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "94 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "86°C", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999PNK", + "Spec Code": "SRGSH", + "Ordering Code": "BXC8069510940X", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZF": "PCN\n |\n MDDS", + "999PND": "PCN\n |\n MDDS", + "999PNK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Cascade Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10980XE", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s DMI3", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "256 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "94 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "48", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "86°C", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999PNJ", + "Spec Code": "SRGSG", + "Ordering Code": "BXC8069510980XE", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LZD": "PCN\n |\n MDDS", + "999PNC": "PCN\n |\n MDDS", + "999PNJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9800X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16.5 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "95°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC3", + "Spec Code": "SREZ9", + "Ordering Code": "BX80673I79800X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986453": "PCN", + "999AC3": "PCN\n |\n MDDS", + "999ACM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9820X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.20 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "16.5 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "92°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC8", + "Spec Code": "SREZ8", + "Ordering Code": "BX80673I99820X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986452": "PCN", + "999AC8": "PCN\n |\n MDDS", + "999ACL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "92°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC5", + "Spec Code": "SREZ7", + "Ordering Code": "BX80673I99900X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986451": "PCN", + "999AC5": "PCN\n |\n MDDS", + "999ACK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9920X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "92°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC6", + "Spec Code": "SREZ6", + "Ordering Code": "BX80673I99920X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986450": "PCN", + "999AC6": "PCN\n |\n MDDS", + "999ACJ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9940X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "19.25 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "88°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC9", + "Spec Code": "SREZ5", + "Ordering Code": "BX80673I99940X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986449": "PCN", + "999AC9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9960X", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "22 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "85°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AC7", + "Spec Code": "SREZ4", + "Ordering Code": "BX80673I99960X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986448": "PCN", + "999AC7": "PCN\n |\n MDDS", + "999ACF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9980XE", + "Status": "Discontinued", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "24.75 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "84°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "999AD1", + "Spec Code": "SREZ3", + "Ordering Code": "BX80673I99980X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "986447": "PCN", + "999ACD": "PCN\n |\n MDDS", + "999AD1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-7940X", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "14", + "Total Threads": "28", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "19.25 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "102°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "962501", + "Spec Code": "SR3RQ", + "Ordering Code": "BX80673I97940X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961191": "PCN\n |\n MDDS", + "962501": "PCN\n |\n MDDS", + "962506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-7960X", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "16", + "Total Threads": "32", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "22 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "98°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "962502", + "Spec Code": "SR3RR", + "Ordering Code": "BX80673I97960X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961201": "PCN\n |\n MDDS", + "962502": "PCN\n |\n MDDS", + "962507": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-7980XE", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "18", + "Total Threads": "36", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "24.75 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "165 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "94°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "962509", + "Spec Code": "SR3RS", + "Ordering Code": "BX80673I97980X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961202": "PCN\n |\n MDDS", + "962508": "PCN\n |\n MDDS", + "962509": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-7920X", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "12", + "Total Threads": "24", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16.5 MB L3 Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "95°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "961170", + "Spec Code": "SR3NG", + "Ordering Code": "BX80673I97920X", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960064": "PCN\n |\n MDDS", + "961170": "PCN\n |\n MDDS", + "961171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7640X", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "112 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "100°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "959158", + "Spec Code": "SR3FR", + "Ordering Code": "BX80677I57640X", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957007": "PCN\n |\n MDDS", + "959158": "PCN\n |\n MDDS", + "959161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7740X", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "4.30 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "112 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "42 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "100°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® AES New Instructions": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "959157", + "Spec Code": "SR3FP", + "Ordering Code": "BX80677I77740X", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "957005": "PCN\n |\n MDDS", + "959157": "PCN\n |\n MDDS", + "959159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7800X", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8.25 MB L3 Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "77 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "100°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "960065", + "Spec Code": "SR3NH", + "Ordering Code": "CD8067303753400", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960065": "PCN", + "958962": "PCN\n |\n MDDS", + "959987": "PCN\n |\n MDDS", + "959991": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7820X", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "11 MB L3 Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "99°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "959988", + "Spec Code": "SR3L5", + "Ordering Code": "BX80673I77820X", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958963": "PCN\n |\n MDDS", + "959988": "PCN\n |\n MDDS", + "959993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-7900X", + "Status": "Discontinued", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "13.75 MB L3 Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "85 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "44", + "Sockets Supported": "FCLGA2066", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2017X", + "TJUNCTION": "95°C", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "MM#": "959986", + "Spec Code": "SR3L2", + "Ordering Code": "BX80673I97900X", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "958960": "PCN\n |\n MDDS", + "959986": "PCN\n |\n MDDS", + "959989": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Broadwell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6800K", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "15 MB Intel® Smart Cache", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4 2400/2133", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "67.2°", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950631", + "Spec Code": "SR2PD", + "Ordering Code": "BXC80671I76800K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948140": "PCN\n |\n MDDS", + "950627": "PCN\n |\n MDDS", + "950631": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Broadwell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6850K", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "15 MB", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4 2400/2133", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "67.2°", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950630", + "Spec Code": "SR2PC", + "Ordering Code": "BXC80671I76850K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948139": "PCN\n |\n MDDS", + "950626": "PCN\n |\n MDDS", + "950630": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Broadwell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6900K", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "20 MB", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4 2400/2133", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "67.2°", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950629", + "Spec Code": "SR2PB", + "Ordering Code": "BXC80671I76900K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948138": "PCN\n |\n MDDS", + "950625": "PCN\n |\n MDDS", + "950629": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Broadwell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6950X", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "25 MB", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4 2400/2133", + "Max # of Memory Channels": "4", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "67.3°", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950628", + "Spec Code": "SR2PA", + "Ordering Code": "BXC80671I76950X", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948137": "PCN\n |\n MDDS", + "950624": "PCN\n |\n MDDS", + "950628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5820K", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.8", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944190", + "Spec Code": "SR20S", + "Ordering Code": "BXC80648I75820K", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937042": "PCN\n |\n MDDS", + "937407": "PCN\n |\n MDDS", + "944190": "PCN" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5930K", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.8", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937406", + "Spec Code": "SR20R", + "Ordering Code": "BX80648I75930K", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937041": "PCN\n |\n MDDS", + "937406": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5960X", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "0 GT/s", + "TDP": "140 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 1600/1866/2133", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "68 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011-3", + "Max CPU Configuration": "1", + "TCASE": "66.8", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944189", + "Spec Code": "SR20Q", + "Ordering Code": "BXC80648I75960X", + "Shipping Media": "BOX", + "Stepping": "R2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937040": "PCN\n |\n MDDS", + "937405": "PCN\n |\n MDDS", + "944189": "PCN" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4940MX", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "57 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4820K", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3 1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931650", + "Spec Code": "SR1AU", + "Ordering Code": "BX80633I74820K", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930077": "PCN\n |\n MDDS", + "931650": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4930K", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3 1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931649", + "Spec Code": "SR1AT", + "Ordering Code": "BX80633I74930K", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930074": "PCN\n |\n MDDS", + "931649": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4960X", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3 1333/1600/1866", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "59.7 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931648", + "Spec Code": "SR1AS", + "Ordering Code": "BX80633I74960X", + "Shipping Media": "BOX", + "Stepping": "S1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930071": "PCN\n |\n MDDS", + "931648": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4930MX", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "57 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928039", + "Spec Code": "SR15M", + "Ordering Code": "CW8064701471101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928039": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Sandy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3970X", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Lithography": "32 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64.45 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "925088", + "Spec Code": "SR0WR", + "Ordering Code": "BX80619I73970X", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923033": "PCN\n |\n MDDS", + "925088": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3940XM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922204", + "Spec Code": "SR0US", + "Ordering Code": "AW8063801103501", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922204": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3920XM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921341", + "Spec Code": "SR0T2", + "Ordering Code": "AW8063801009607", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921341": "PCN\n |\n MDDS", + "919641": "MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Sandy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3820", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64.23 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919912", + "Spec Code": "SR0LD", + "Ordering Code": "BX80619I73820", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919260": "PCN\n |\n MDDS", + "919912": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Sandy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3930K", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Description": "This product includes VT-d support only on the C2 stepping. Stepping information can be viewed via the menu on the left.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64.23 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919887", + "Spec Code": "SR0KY", + "Ordering Code": "BX80619I73930K", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919202": "PCN\n |\n MDDS", + "919887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Core™ X-series Processors", + "Code Name": "Products formerly Sandy Bridge E", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3960X", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "15 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "130 W", + "Embedded Options Available": "No", + "Description": "This product includes VT-d support only on the C2 stepping. Stepping information can be viewed via the menu on the left.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "4", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "40", + "Sockets Supported": "FCLGA2011", + "Max CPU Configuration": "1", + "TCASE": "66.8°C", + "Package Size": "52.5mm x 45.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919886", + "Spec Code": "SR0KF", + "Ordering Code": "BX80619I73960X", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919058": "PCN\n |\n MDDS", + "919886": "PCN\n |\n MDDS" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-12900HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel vPro® Enterprise Platform Eligibility ‡": "No", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "No", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWL7", + "Spec Code": "SRLGK", + "Ordering Code": "CM8071504828107", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWL7": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-12950HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWKR", + "Spec Code": "SRLGG", + "Ordering Code": "CM8071504799712", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWKR": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900KS", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.50 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.30 GHz", + "Performance-core Max Turbo Frequency": "5.20 GHz", + "Efficient-core Max Turbo Frequency": "4.00 GHz", + "Performance-core Base Frequency": "3.40 GHz", + "Efficient-core Base Frequency": "2.50 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "150 W", + "Maximum Turbo Power": "241 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2022E", + "Intel® Thermal Velocity Boost Temperature": "50 °C", + "TJUNCTION": "90°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Adaptive Boost Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AZ4X", + "Spec Code": "SRLDD", + "Ordering Code": "BXC8071512900KS", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVFX": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.40 GHz", + "Efficient-core Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "202 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGR", + "Spec Code": "SRL4K", + "Ordering Code": "BXC8071512900", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVC": "PCN", + "99ARGF": "PCN", + "99ARGR": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-12900E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.30 GHz", + "Efficient-core Base Frequency": "1.70 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARAA", + "Spec Code": "SRL6B", + "Ordering Code": "CM8071504619020", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARAA": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900F", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "2.40 GHz", + "Efficient-core Base Frequency": "1.80 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "202 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGX", + "Spec Code": "SRL4L", + "Ordering Code": "BXC8071512900F", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVD": "PCN", + "99ARGM": "PCN", + "99ARGX": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-12900H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA7", + "Spec Code": "SRLD4", + "Ordering Code": "FJ8071504786411", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA7": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-12900HK", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "5.00 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA6", + "Spec Code": "SRLD3", + "Ordering Code": "FJ8071504786312", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA6": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "1.40 GHz", + "Efficient-core Base Frequency": "1.00 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "106 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMVF", + "Spec Code": "SRL4M", + "Ordering Code": "CM8071504549416", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVF": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-12900TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "1.10 GHz", + "Efficient-core Base Frequency": "1.00 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARAC", + "Spec Code": "SRL6C", + "Ordering Code": "CM8071504619115", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARAC": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900K", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Performance-core Max Turbo Frequency": "5.10 GHz", + "Efficient-core Max Turbo Frequency": "3.90 GHz", + "Performance-core Base Frequency": "3.20 GHz", + "Efficient-core Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "241 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.55 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APG5", + "Spec Code": "SRL4H", + "Ordering Code": "BXC8071512900K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMTT": "PCN\n |\n MDDS", + "99APFX": "PCN", + "99APG5": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-12900KF", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Performance-core Max Turbo Frequency": "5.10 GHz", + "Efficient-core Max Turbo Frequency": "3.90 GHz", + "Performance-core Base Frequency": "3.20 GHz", + "Efficient-core Base Frequency": "2.40 GHz", + "Cache": "30 MB Intel® Smart Cache", + "Total L2 Cache": "14 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "241 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APG8", + "Spec Code": "SRL4J", + "Ordering Code": "BXC8071512900KF", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMV4": "PCN\n |\n MDDS", + "99APG1": "PCN", + "99APG8": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11900H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF8", + "Spec Code": "SRKT7", + "Ordering Code": "FH8069004352617", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF8": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11950H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF7", + "Spec Code": "SRKT6", + "Ordering Code": "FH8069004352616", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-11980HK", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "65 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDW", + "Spec Code": "SRKSZ", + "Ordering Code": "FH8069004351114", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVT", + "Spec Code": "SRKNJ", + "Ordering Code": "BXC8070811900", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD11": "PCN\n |\n MDDS", + "99AFTW": "MDDS", + "99AFVT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900F", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV4", + "Spec Code": "SRKNK", + "Ordering Code": "BXC8070811900F", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD12": "PCN\n |\n MDDS", + "99AFPH": "MDDS", + "99AFV4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900K", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFW1", + "Spec Code": "SRKND", + "Ordering Code": "BXC8070811900K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD0N": "PCN\n |\n MDDS", + "99AFV2": "PCN\n |\n MDDS", + "99AFW1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900KF", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVC", + "Spec Code": "SRKNF", + "Ordering Code": "BXC8070811900KF", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD0T": "PCN\n |\n MDDS", + "99AFPF": "PCN\n |\n MDDS", + "99AFVC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-11900T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD1X", + "Spec Code": "SRKNQ", + "Ordering Code": "CM8070804488726", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD1X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10850K", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A750", + "Spec Code": "SRK51", + "Ordering Code": "BX8070110850KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5VJ": "PCN", + "99A6W4": "PCN\n |\n MDDS", + "99A6W5": "PCN\n |\n MDDS", + "99A750": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-10885H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999ZM8", + "Spec Code": "SRJ8J", + "Ordering Code": "CL8070104398814", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999ZM8": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A103", + "Spec Code": "SRH8Z", + "Ordering Code": "BXC8070110900", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXC": "PCN\n |\n MDDS", + "99A0V9": "PCN\n |\n MDDS", + "99A103": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-10900E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Thermal Velocity Boost Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A080", + "Spec Code": "SRJFD", + "Ordering Code": "CM8070104420408", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A080": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900F", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.20 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.20 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0W1", + "Spec Code": "SRH90", + "Ordering Code": "BXC8070110900F", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXJ": "PCN\n |\n MDDS", + "99A0VH": "PCN\n |\n MDDS", + "99A0W1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FX", + "Spec Code": "SRH91", + "Ordering Code": "BXC8070110900KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXM": "PCN\n |\n MDDS", + "99A0VA": "PCN\n |\n MDDS", + "99A0ZW": "PCN\n |\n MDDS", + "99A5FR": "PCN\n |\n MDDS", + "99A5FX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900KF", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.10 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.30 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "Intel® Thermal Velocity Boost Temperature": "70 °C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0W2", + "Spec Code": "SRH92", + "Ordering Code": "BXC8070110900KF", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WXR": "PCN\n |\n MDDS", + "99A0VJ": "PCN\n |\n MDDS", + "99A0W2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-10900T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WX5", + "Spec Code": "SRH8Y", + "Ordering Code": "CM8070104282515", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WX5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i9-10900TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "Total Threads": "20", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A07Z", + "Spec Code": "SRJFC", + "Ordering Code": "CM8070104420306", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A07Z": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-10980HK", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.30 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.30 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-up Base Frequency": "3.10 GHz", + "Configurable TDP-up": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMZ", + "Spec Code": "SRH8T", + "Ordering Code": "CL8070104502004", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900KS", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Warranty Period": "1 yrs", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "127 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H3Z", + "Spec Code": "SRG1Q", + "Ordering Code": "CM8068404170208", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3Z": "MDDS", + "999MGT": "MDDS", + "999MGV": "MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9880H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ6", + "Spec Code": "SRFD1", + "Ordering Code": "CL8068404069006", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J32", + "Spec Code": "SRG18", + "Ordering Code": "BXC80684I99900", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H39": "PCN\n |\n MDDS", + "999J2W": "PCN\n |\n MDDS", + "999J32": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H3D", + "Spec Code": "SRG1B", + "Ordering Code": "CM8068403874122", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-9980HK", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CZ5", + "Spec Code": "SRFD0", + "Ordering Code": "CL8068404068910", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CZ5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900KF", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DLF", + "Spec Code": "SRFAA", + "Ordering Code": "BXC80684I9990KF", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C3J": "PCN\n |\n MDDS", + "999DL9": "PCN\n |\n MDDS", + "999DLF": "PCN\n |\n MDDS", + "999H3C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i9-9900K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J34", + "Spec Code": "SRG19", + "Ordering Code": "BXC80684I99900K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H3A": "PCN\n |\n MDDS", + "999J2X": "PCN\n |\n MDDS", + "999J34": "PCN\n |\n MDDS", + "99A5N8": "PCN", + "983354": "PCN\n |\n MDDS", + "984503": "PCN\n |\n MDDS", + "999AGF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i9 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i9-8950HK", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975241", + "Spec Code": "SRCKN", + "Ordering Code": "CL8068403805708", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "975241": "PCN\n |\n MDDS" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12650HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel vPro® Enterprise Platform Eligibility ‡": "No", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "No", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWLG", + "Spec Code": "SRLGM", + "Ordering Code": "CM8071504828308", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWLG": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12800HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel vPro® Enterprise Platform Eligibility ‡": "No", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "No", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWLC", + "Spec Code": "SRLGL", + "Ordering Code": "CM8071504828207", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWLC": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12850HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "16", + "# of Performance-cores": "8", + "# of Efficient-cores": "8", + "Total Threads": "24", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWKT", + "Spec Code": "SRLGH", + "Ordering Code": "CM8071504799913", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWKT": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1265UE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Maximum Assured Power": "28 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AZFW", + "Spec Code": "SRLZH", + "Ordering Code": "FJ8071504826504", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AZFW": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1270PE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Performance-core Max Turbo Frequency": "4.50 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Maximum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVWH", + "Spec Code": "SRLE4", + "Ordering Code": "FJ8071504796516", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVWH": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1250U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46AA", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Sockets Supported": "FCBGA1781", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AXVW", + "Spec Code": "SRLWS", + "Ordering Code": "FJ8071505017000", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AXVW": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1255U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6M", + "Spec Code": "SRLFP", + "Ordering Code": "FJ8071504826607", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6M": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1260P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA9", + "Spec Code": "SRLD6", + "Ordering Code": "FJ8071504786607", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA9": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1260U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46AA", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1265U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6L", + "Spec Code": "SRLFN", + "Ordering Code": "FJ8071504826502", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6L": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1270P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVAA", + "Spec Code": "SRLD7", + "Ordering Code": "FJ8071504786708", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVAA": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1280P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA8", + "Spec Code": "SRLD5", + "Ordering Code": "FJ8071504786505", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA8": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12650H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "6", + "# of Efficient-cores": "4", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AV9X", + "Spec Code": "SRLD0", + "Ordering Code": "FJ8071504786006", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AV9X": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "180 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGT", + "Spec Code": "SRL4Q", + "Ordering Code": "BXC8071512700", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVR": "PCN", + "99ARGG": "PCN", + "99ARGT": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-12700E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARAD", + "Spec Code": "SRL6D", + "Ordering Code": "CM8071504619229", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARAD": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700F", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Efficient-core Base Frequency": "1.60 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "180 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARGZ", + "Spec Code": "SRL4R", + "Ordering Code": "BXC8071512700F", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMWC": "PCN", + "99ARGN": "PCN", + "99ARGZ": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12700H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.70 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA2", + "Spec Code": "SRLD1", + "Ordering Code": "FJ8071504786106", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA2": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.70 GHz", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Performance-core Base Frequency": "1.40 GHz", + "Efficient-core Base Frequency": "1.00 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "99 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AMWD", + "Spec Code": "SRL4S", + "Ordering Code": "CM8071504555117", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMWD": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-12700TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Efficient-core Max Turbo Frequency": "3.40 GHz", + "Performance-core Base Frequency": "1.40 GHz", + "Efficient-core Base Frequency": "1.00 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARAF", + "Spec Code": "SRL6E", + "Ordering Code": "CM8071504619317", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARAF": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-12800H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Efficient-core Max Turbo Frequency": "3.70 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVA5", + "Spec Code": "SRLD2", + "Ordering Code": "FJ8071504786205", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVA5": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-12800HE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "14", + "# of Performance-cores": "6", + "# of Efficient-cores": "8", + "Total Threads": "20", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Efficient-core Max Turbo Frequency": "3.50 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 mm x 25 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVWK", + "Spec Code": "SRLE6", + "Ordering Code": "FJ8071504797807", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVWK": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700K", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "4.90 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "3.60 GHz", + "Efficient-core Base Frequency": "2.70 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "190 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.50 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APG6", + "Spec Code": "SRL4N", + "Ordering Code": "BXC8071512700K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVK": "PCN\n |\n MDDS", + "99APFZ": "PCN", + "99APG6": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-12700KF", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "12", + "# of Performance-cores": "8", + "# of Efficient-cores": "4", + "Total Threads": "20", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Performance-core Max Turbo Frequency": "4.90 GHz", + "Efficient-core Max Turbo Frequency": "3.80 GHz", + "Performance-core Base Frequency": "3.60 GHz", + "Efficient-core Base Frequency": "2.70 GHz", + "Cache": "25 MB Intel® Smart Cache", + "Total L2 Cache": "12 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "190 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APG9", + "Spec Code": "SRL4P", + "Ordering Code": "BXC8071512700KF", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMVP": "PCN\n |\n MDDS", + "99APG3": "PCN", + "99APG9": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-11850HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "8", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7N", + "Spec Code": "SRKWZ", + "Ordering Code": "FH8069004638048", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11600H", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFFA", + "Spec Code": "SRKT9", + "Ordering Code": "FH8069004670407", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFFA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11390H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.40 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "2.90 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF37", + "Spec Code": "SRKSL", + "Ordering Code": "FH8069004675105", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF37": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1195G7", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF27", + "Spec Code": "SRKSC", + "Ordering Code": "FH8069004673401", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF27": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1195G7", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF22", + "Spec Code": "SRKSB", + "Ordering Code": "FH8069004673301", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF22": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11800H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF1", + "Spec Code": "SRKT3", + "Ordering Code": "FH8069004352018", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11850H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "24 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "50 x 26.5", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF2", + "Spec Code": "SRKT4", + "Ordering Code": "FH8069004352114", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVW", + "Spec Code": "SRKNS", + "Ordering Code": "BXC8070811700", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD23": "PCN\n |\n MDDS", + "99AFTZ": "PCN\n |\n MDDS", + "99AFVW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700F", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV5", + "Spec Code": "SRKNR", + "Ordering Code": "BXC8070811700F", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD1Z": "PCN\n |\n MDDS", + "99AFPK": "PCN\n |\n MDDS", + "99AFV5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700K", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.10 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVV", + "Spec Code": "SRKNL", + "Ordering Code": "BXC8070811700K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD13": "PCN\n |\n MDDS", + "99AFTX": "PCN\n |\n MDDS", + "99AFVV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700KF", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.10 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVD", + "Spec Code": "SRKNN", + "Ordering Code": "BXC8070811700KF", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD1T": "PCN\n |\n MDDS", + "99AFPJ": "PCN\n |\n MDDS", + "99AFVD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-11700T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD25", + "Spec Code": "SRKNT", + "Ordering Code": "CM8070804491314", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD25": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11370H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9C4", + "Spec Code": "SRKH5", + "Ordering Code": "FH8069004599910", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9C4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-11375H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.30 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "3.00 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9C2", + "Spec Code": "SRKH4", + "Ordering Code": "FH8069004599909", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9C2": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1180G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.20 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GC", + "Spec Code": "SRK0D", + "Ordering Code": "FH8069004532104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GC": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1185G7E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LH", + "Spec Code": "SRK0X", + "Ordering Code": "FH8069004541800", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-1185GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Extended Temp, Industrial Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267, In-Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LL", + "Spec Code": "SRK0Y", + "Ordering Code": "FH8069004541900", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1160G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GM", + "Spec Code": "SRK0E", + "Ordering Code": "FH8069004532205", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GM": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3CX", + "Spec Code": "SRK01", + "Ordering Code": "FH8069004529905", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3CX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10870H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HW", + "Spec Code": "SRK3Y", + "Ordering Code": "CL8070104399317", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10610U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7M", + "Spec Code": "SRJ7R", + "Ordering Code": "FJ8070104499900", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K46": "PCN\n |\n MDDS", + "999X7M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10810U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7L", + "Spec Code": "SRJ7Q", + "Ordering Code": "FJ8070104499800", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7L": "PCN\n |\n MDDS", + "999LH2": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1068NG7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A53", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1344", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H21", + "Spec Code": "SRG0U", + "Ordering Code": "FJ8068904334602", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H21": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0ZZ", + "Spec Code": "SRH6Y", + "Ordering Code": "BXC8070110700", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4A": "PCN\n |\n MDDS", + "99A0V6": "PCN\n |\n MDDS", + "99A0ZZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-10700E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A083", + "Spec Code": "SRJFJ", + "Ordering Code": "CM8070104498106", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700F", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0VX", + "Spec Code": "SRH70", + "Ordering Code": "BXC8070110700F", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4D": "PCN\n |\n MDDS", + "99A0VD": "PCN\n |\n MDDS", + "99A0VX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.50 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FW", + "Spec Code": "SRH72", + "Ordering Code": "BXC8070110700KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4G": "PCN\n |\n MDDS", + "99A0V7": "PCN\n |\n MDDS", + "99A100": "PCN\n |\n MDDS", + "99A5FP": "PCN\n |\n MDDS", + "99A5FW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700KF", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "5.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.50 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0VZ", + "Spec Code": "SRH74", + "Ordering Code": "BXC8070110700KF", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W4V": "PCN\n |\n MDDS", + "99A0VF": "PCN\n |\n MDDS", + "99A0VZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-10700T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W44", + "Spec Code": "SRH6U", + "Ordering Code": "CM8070104282215", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W44": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-10700TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A081", + "Spec Code": "SRJFG", + "Ordering Code": "CM8070104420905", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A081": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10750H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.00 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMV", + "Spec Code": "SRH8Q", + "Ordering Code": "CL8070104399315", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10850H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMR", + "Spec Code": "SRH8P", + "Ordering Code": "CL8070104399211", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10875H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "5.10 GHz", + "Intel® Thermal Velocity Boost Frequency": "5.10 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "16 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999Z5H", + "Spec Code": "SRJ8F", + "Ordering Code": "CL8070104399111", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999Z5H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10510U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7N", + "Spec Code": "SRJ7S", + "Ordering Code": "FJ8070104500000", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K47": "PCN\n |\n MDDS", + "999W5W": "PCN", + "999X7N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10510Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "400 MHz", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LTX", + "Spec Code": "SRGSC", + "Ordering Code": "FJ8068404190220", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999LTX": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-10710U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7K", + "Spec Code": "SRJ7P", + "Ordering Code": "FJ8070104499700", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7K": "PCN\n |\n MDDS", + "999LH3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1060G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A51", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1065G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A52", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H1T", + "Spec Code": "SRG0N", + "Ordering Code": "FJ8068904310403", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H1T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9700E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JAC", + "Spec Code": "SRGDX", + "Ordering Code": "CM8068404196203", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9700TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999JC3", + "Spec Code": "SRGE3", + "Ordering Code": "CM8068404311404", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JC3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9850HE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0A", + "Spec Code": "SRFED", + "Ordering Code": "CL8068404164800", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0A": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-9850HL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0G", + "Spec Code": "SRFEH", + "Ordering Code": "CL8068404165200", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J30", + "Spec Code": "SRG13", + "Ordering Code": "BXC80684I79700", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2F": "PCN\n |\n MDDS", + "999J2R": "PCN\n |\n MDDS", + "999J30": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700F", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J2K", + "Spec Code": "SRG14", + "Ordering Code": "BXC80684I79700F", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2G": "PCN\n |\n MDDS", + "999J25": "PCN\n |\n MDDS", + "999J2K": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H2L", + "Spec Code": "SRG17", + "Ordering Code": "CM8068403874912", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8M", + "Spec Code": "SRF6U", + "Ordering Code": "CL8068404121817", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999A8M": "PCN\n |\n MDDS", + "999CXN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9750HF", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H47", + "Spec Code": "SRG1T", + "Ordering Code": "CL8068404069421", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H47": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-9850H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999CXK", + "Spec Code": "SRFCN", + "Ordering Code": "CL8068404069311", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700KF", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DLH", + "Spec Code": "SRFAC", + "Ordering Code": "BXC80684I7970KF", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2J": "PCN\n |\n MDDS", + "999C3L": "PCN\n |\n MDDS", + "999DLA": "PCN\n |\n MDDS", + "999DLH": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-9700K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "8", + "Total Threads": "8", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "985083", + "Spec Code": "SRELT", + "Ordering Code": "BX80684I79700K", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "983355": "PCN\n |\n MDDS", + "984509": "PCN\n |\n MDDS", + "985083": "PCN\n |\n MDDS", + "999H2H": "PCN\n |\n MDDS", + "999J2T": "PCN\n |\n MDDS", + "999J31": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8557U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 645", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986444", + "Spec Code": "SREZ1", + "Ordering Code": "FH8068404166107", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986444": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-8665UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR3", + "Spec Code": "SRFDS", + "Ordering Code": "CL8068404148003", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8569U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986438", + "Spec Code": "SREYZ", + "Ordering Code": "FH8068404163006", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986438": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8500Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980666", + "Spec Code": "SRD21", + "Ordering Code": "HE8067702739858", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8565U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "982918", + "Spec Code": "SREJP", + "Ordering Code": "FJ8068404064405", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982918": "PCN\n |\n MDDS", + "999FF4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8706G", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ Pro WX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "978295", + "Spec Code": "SRCXS", + "Ordering Code": "FH8067703417418", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "978295": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8086K", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "5.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "5.00 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8559U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974938", + "Spec Code": "SRCK5", + "Ordering Code": "FH8068403419332", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977513", + "Spec Code": "SR3QS", + "Ordering Code": "BOC80684I78700", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977399": "PCN\n |\n MDDS", + "977513": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8700B", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976523", + "Spec Code": "SRCX2", + "Ordering Code": "CL8068403611210", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976523": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963506", + "Spec Code": "SR3WX", + "Ordering Code": "CM8068403358413", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963506": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8750H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963718", + "Spec Code": "SR3YY", + "Ordering Code": "CL8068403359524", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963718": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8850H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963719", + "Spec Code": "SR3YZ", + "Ordering Code": "CL8068403359725", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963719": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8705G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961154", + "Spec Code": "SR3RK", + "Ordering Code": "FH8067703417515", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961154": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8706G", + "Status": "Launched", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961153", + "Spec Code": "SR3RJ", + "Ordering Code": "FH8067703417418", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961153": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8709G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961162", + "Spec Code": "SR3RN", + "Ordering Code": "FH8067703419113", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8809G", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "100W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GH Graphics", + "Graphics Max Dynamic Clock": "1190 MHz", + "Graphics Base Clock": "1063 MHz", + "Compute Units": "24", + "Graphics Memory Bandwidth": "204.8 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961160", + "Spec Code": "SR3RL", + "Ordering Code": "FH8067703417615", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "961160": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700", + "Status": "Launched", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961574", + "Spec Code": "SR3QS", + "Ordering Code": "BXC80684I78700", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960618": "PCN\n |\n MDDS", + "961567": "PCN\n |\n MDDS", + "961574": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-8700K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961573", + "Spec Code": "SR3QR", + "Ordering Code": "BXC80684I78700K", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960617": "PCN\n |\n MDDS", + "961566": "PCN\n |\n MDDS", + "961573": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8550U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959163", + "Spec Code": "SR3LC", + "Ordering Code": "FJ8067703281816", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959163": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8650U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959152", + "Spec Code": "SR3L8", + "Ordering Code": "FJ8067703281718", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7560U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954111", + "Spec Code": "SR366", + "Ordering Code": "FH8067703037007", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954111": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7567U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7600U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953350", + "Spec Code": "SR33Z", + "Ordering Code": "FJ8067702739628", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953350": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7660U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954113", + "Spec Code": "SR368", + "Ordering Code": "FH8067703036924", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954113": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953654", + "Spec Code": "SR338", + "Ordering Code": "BX80677I77700", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953004": "PCN\n |\n MDDS", + "953654": "PCN\n |\n MDDS", + "953712": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7700HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952957", + "Spec Code": "SR32Q", + "Ordering Code": "CL8067702870109", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953655", + "Spec Code": "SR33A", + "Ordering Code": "BX80677I77700K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953006": "PCN\n |\n MDDS", + "953655": "PCN\n |\n MDDS", + "953713": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-7700T", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954229", + "Spec Code": "SR339", + "Ordering Code": "BXC80677I77700T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953005": "PCN\n |\n MDDS", + "954222": "PCN\n |\n MDDS", + "954229": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-7820EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953940", + "Spec Code": "SR34S", + "Ordering Code": "CL8067702998607", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953940": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7820HK", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952955", + "Spec Code": "SR32P", + "Ordering Code": "CL8067702870009", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952955": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7820HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952954", + "Spec Code": "SR32N", + "Ordering Code": "CL8067702869911", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952954": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7920HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952952", + "Spec Code": "SR32L", + "Ordering Code": "CL8067702869821", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952952": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7500U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953352", + "Spec Code": "SR341", + "Ordering Code": "FJ8067702739740", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953352": "PCN\n |\n MDDS", + "951958": "PCN\n |\n MDDS", + "951046": "MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-7Y75", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953348", + "Spec Code": "SR33X", + "Ordering Code": "HE8067702739526", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951956": "PCN\n |\n MDDS", + "953348": "PCN\n |\n MDDS", + "951044": "MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6785R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "8 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6660U", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946161", + "Spec Code": "SR2JL", + "Ordering Code": "FJ8066202499207", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946161": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6770HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948624", + "Spec Code": "SR2QY", + "Ordering Code": "JQ8066202195123", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6870HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948623", + "Spec Code": "SR2QX", + "Ordering Code": "JQ8066202195122", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948623": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6970HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948622", + "Spec Code": "SR2QW", + "Ordering Code": "JQ8066202195121", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6700TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947253", + "Spec Code": "SR2LP", + "Ordering Code": "CM8066201937801", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947253": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6820EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944028", + "Spec Code": "SR2DT", + "Ordering Code": "CL8066201939103", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944028": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i7-6822EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944047", + "Spec Code": "SR2DW", + "Ordering Code": "CL8066202302204", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944047": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6500U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944339", + "Spec Code": "SR2EZ", + "Ordering Code": "FJ8066201930408", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6560U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6600U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944341", + "Spec Code": "SR2F1", + "Ordering Code": "FJ8066201924950", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6650U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946722", + "Spec Code": "SR2KA", + "Ordering Code": "FJ8066202499212", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946722": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947566", + "Spec Code": "SR2L2", + "Ordering Code": "BXC80662I76700", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947202": "PCN\n |\n MDDS", + "947559": "PCN\n |\n MDDS", + "947566": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6700HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948855", + "Spec Code": "SR2SL", + "Ordering Code": "JQ8066202195126", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944368": "PCN\n |\n MDDS", + "948855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700T", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947203", + "Spec Code": "SR2L3", + "Ordering Code": "CM8066201920202", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945628": "MDDS", + "947203": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6820HK", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944356", + "Spec Code": "SR2FL", + "Ordering Code": "CL8066202194730", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944356": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6820HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944372", + "Spec Code": "SR2FU", + "Ordering Code": "CL8066202194731", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944372": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6920HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944371", + "Spec Code": "SR2FT", + "Ordering Code": "CL8066202194719", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944371": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i7-6700K", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TCASE": "64°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947565", + "Spec Code": "SR2L0", + "Ordering Code": "BXC80662I76700K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947200": "PCN\n |\n MDDS", + "947558": "PCN\n |\n MDDS", + "947565": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-6567U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3 - 1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946157", + "Spec Code": "SR2JH", + "Ordering Code": "FJ8066202499000", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946157": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-5700EQ", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944074", + "Spec Code": "SR2E6", + "Ordering Code": "FH8065802420402", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944074": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5700HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1612", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943450", + "Spec Code": "SR2BP", + "Ordering Code": "FH8065802491903", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943450": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5750HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943433", + "Spec Code": "SR2BL", + "Ordering Code": "FH8065802491802", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943433": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5775C", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943887", + "Spec Code": "SR2AG", + "Ordering Code": "BX80658I75775C", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "943363": "PCN\n |\n MDDS", + "943887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-5775R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943368", + "Spec Code": "SR2AL", + "Ordering Code": "FH8065802483601", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943368": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-5850EQ", + "Status": "Launched", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944076", + "Spec Code": "SR2E8", + "Ordering Code": "FH8065802420503", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944076": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5850HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943430", + "Spec Code": "SR2BH", + "Ordering Code": "FH8065802491501", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943430": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5950HQ", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943431", + "Spec Code": "SR2BJ", + "Ordering Code": "FH8065802491601", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943431": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5500U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939360", + "Spec Code": "SR23W", + "Ordering Code": "FH8065801620004", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5550U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939658", + "Spec Code": "SR26A", + "Ordering Code": "FH8065802063310", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939658": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5557U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939662", + "Spec Code": "SR26E", + "Ordering Code": "FH8065802063512", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939662": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5600U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939359", + "Spec Code": "SR23V", + "Ordering Code": "FH8065801618304", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939359": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-5650U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939655", + "Spec Code": "SR267", + "Ordering Code": "FH8065801974816", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939655": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4720HQ", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931971", + "Spec Code": "SR1Q8", + "Ordering Code": "CL8064701472207", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931971": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4722HQ", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931921", + "Spec Code": "SR1PY", + "Ordering Code": "CL8064701472605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931921": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4578U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936752", + "Spec Code": "SR1ZT", + "Ordering Code": "CL8064701954600", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936752": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4770HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936768", + "Spec Code": "SR1ZW", + "Ordering Code": "CL8064701956100", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4870HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936770", + "Spec Code": "SR1ZX", + "Ordering Code": "CL8064701956200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936770": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4980HQ", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936772", + "Spec Code": "SR1ZY", + "Ordering Code": "CL8064701956300", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "936772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Devil's Canyon", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790K", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "88 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "74.04°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937433", + "Spec Code": "SR219", + "Ordering Code": "BXC80646I74790K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937297": "PCN\n |\n MDDS", + "937428": "PCN\n |\n MDDS", + "937429": "PCN\n |\n MDDS", + "937433": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4785T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932006", + "Spec Code": "SR1QU", + "Ordering Code": "CM8064601561714", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934923", + "Spec Code": "SR1QF", + "Ordering Code": "BX80646I74790", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931976": "PCN\n |\n MDDS", + "934919": "PCN\n |\n MDDS", + "934923": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790S", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934925", + "Spec Code": "SR1QM", + "Ordering Code": "BX80646I74790S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931984": "PCN\n |\n MDDS", + "934925": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4790T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931999", + "Spec Code": "SR1QS", + "Ordering Code": "CM8064601561513", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931999": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4510U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930611", + "Spec Code": "SR1EB", + "Ordering Code": "CL8064701477301", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930611": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4710HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931920", + "Spec Code": "SR1PX", + "Ordering Code": "CL8064701472304", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931920": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4710MQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931913", + "Spec Code": "SR1PQ", + "Ordering Code": "CW8064701473404", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931913": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4712HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931922", + "Spec Code": "SR1PZ", + "Ordering Code": "CL8064701472704", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4712MQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931915", + "Spec Code": "SR1PS", + "Ordering Code": "CW8064701473804", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4760HQ", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930145", + "Spec Code": "SR1BM", + "Ordering Code": "CL8064701510601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930145": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4700EC", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "43 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934873", + "Spec Code": "SR1VZ", + "Ordering Code": "CL8064701830000", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "934873": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4702EC", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "27 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934875", + "Spec Code": "SR1W0", + "Ordering Code": "CL8064701830100", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "934875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4610M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (DP)‡": "30Hz at 4096x2160", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4810MQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931918", + "Spec Code": "SR1PV", + "Ordering Code": "CW8064701474405", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931918": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4860HQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930147", + "Spec Code": "SR1BP", + "Ordering Code": "CL8064701510800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930147": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4910MQ", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935039", + "Spec Code": "SR1PT", + "Ordering Code": "BX80647I74910MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931916": "PCN\n |\n MDDS", + "935039": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4600M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930777", + "Spec Code": "SR1H7", + "Ordering Code": "CW8064701486306", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930777": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4600U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930610", + "Spec Code": "SR1EA", + "Ordering Code": "CL8064701477000", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4610Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929316", + "Spec Code": "SR18D", + "Ordering Code": "CL8064701512303", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929316": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4771", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931234", + "Spec Code": "SR1BW", + "Ordering Code": "BXC80646I74771", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930209": "PCN\n |\n MDDS", + "931232": "PCN\n |\n MDDS", + "931234": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4960HQ", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930150", + "Spec Code": "SR1BS", + "Ordering Code": "CL8064701511001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930150": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4750HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929327", + "Spec Code": "SR18J", + "Ordering Code": "CL8064701510101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4850HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929326", + "Spec Code": "SR18H", + "Ordering Code": "CL8064701509800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4950HQ", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD26", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929325", + "Spec Code": "SR18G", + "Ordering Code": "CL8064701509700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4500U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929029", + "Spec Code": "SR16Z", + "Ordering Code": "CL8064701477202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929029": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4550U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928976", + "Spec Code": "SR16J", + "Ordering Code": "CL8064701462901", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "928976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4558U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929306", + "Spec Code": "SR188", + "Ordering Code": "CL8064701481303", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929306": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4650U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928975", + "Spec Code": "SR16H", + "Ordering Code": "CL8064701462800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "928975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "40", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929345", + "Spec Code": "SR18K", + "Ordering Code": "CL8064701508001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929345": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4700EQ", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929205", + "Spec Code": "SR17L", + "Ordering Code": "CL8064701483802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929205": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4700HQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928032", + "Spec Code": "SR15E", + "Ordering Code": "CL8064701470302", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4700MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928035", + "Spec Code": "SR15H", + "Ordering Code": "CW8064701470702", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4702HQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928033", + "Spec Code": "SR15F", + "Ordering Code": "CL8064701470403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4702MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928036", + "Spec Code": "SR15J", + "Ordering Code": "CW8064701470802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4765T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927966", + "Spec Code": "SR14Q", + "Ordering Code": "CM8064601466200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928641", + "Spec Code": "SR149", + "Ordering Code": "BXC80646I74770", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927928": "PCN\n |\n MDDS", + "928634": "PCN\n |\n MDDS", + "928641": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770K", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928552", + "Spec Code": "SR147", + "Ordering Code": "BXC80646I74770K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927924": "PCN\n |\n MDDS", + "928550": "PCN\n |\n MDDS", + "928551": "PCN\n |\n MDDS", + "928552": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770S", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928639", + "Spec Code": "SR14H", + "Ordering Code": "BX80646I74770S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927944": "PCN\n |\n MDDS", + "928639": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i7-4770T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927960", + "Spec Code": "SR14N", + "Ordering Code": "CM8064601465902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i7-4770TE", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm (LGA1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929231", + "Spec Code": "SR183", + "Ordering Code": "CM8064601538900", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929231": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4800MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928790", + "Spec Code": "SR15L", + "Ordering Code": "BX80647I74800MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928038": "PCN\n |\n MDDS", + "928790": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i7-4900MQ", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@30Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928789", + "Spec Code": "SR15K", + "Ordering Code": "BX80647I74900MQ", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928037": "PCN\n |\n MDDS", + "928789": "PCN\n |\n MDDS" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-12450HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "8", + "# of Performance-cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel vPro® Enterprise Platform Eligibility ‡": "No", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "No", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWLH", + "Spec Code": "SRLGN", + "Ordering Code": "CM8071504828408", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWLH": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-12600HX", + "Status": "Launched", + "Launch Date": "Q2'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Max Technology 3.0 Frequency ‡": "4.60 GHz", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "55 W", + "Maximum Turbo Power": "157 W", + "Minimum Assured Power": "45 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "OpenCL* Support": "3.0", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1964", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "No", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AWL2", + "Spec Code": "SRLGJ", + "Ordering Code": "CM8071504800011", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AWL2": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1245UE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Maximum Assured Power": "28 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AZG0", + "Spec Code": "SRLZJ", + "Ordering Code": "FJ8071504826903", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AZG0": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1250PE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Maximum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Crypto Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVWC", + "Spec Code": "SRLE3", + "Ordering Code": "FJ8071504796411", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVWC": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1230U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46AA", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Sockets Supported": "FCBGA1781", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AXVV", + "Spec Code": "SRLWR", + "Ordering Code": "FJ8071505016900", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AXVV": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1235U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6P", + "Spec Code": "SRLFR", + "Ordering Code": "FJ8071504826803", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6P": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1235U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6N", + "Spec Code": "SRLFQ", + "Ordering Code": "FJ8071504826802", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW6N": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1240P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVAD", + "Spec Code": "SRLD9", + "Ordering Code": "FJ8071504787907", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVAD": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1240U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46AA", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1245U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A8", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW6W", + "Spec Code": "SRLFS", + "Ordering Code": "FJ8071504826901", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AXXN": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1250P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVAC", + "Spec Code": "SRLD8", + "Ordering Code": "FJ8071504786907", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVAC": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12400", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Performance-core Base Frequency": "2.50 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "117 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692 / 0x4682", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJL", + "Spec Code": "SRL5Y", + "Ordering Code": "BXC8071512400", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMX2": "PCN", + "99ARGH": "PCN", + "99ARGV": "PCN", + "99APCR": "PCN", + "99ATJ6": "PCN", + "99ATJL": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12400F", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Performance-core Base Frequency": "2.50 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "117 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJT", + "Spec Code": "SRL5Z", + "Ordering Code": "BXC8071512400F", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMX3": "PCN", + "99ARGP": "PCN", + "99ARH0": "PCN", + "99APCT": "PCN", + "99ATJ7": "PCN", + "99ATJT": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12400T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.20 GHz", + "Performance-core Max Turbo Frequency": "4.20 GHz", + "Performance-core Base Frequency": "1.80 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "74 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APCP", + "Spec Code": "SRL5X", + "Ordering Code": "CM8071504650506", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCP": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-12450H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "8", + "# of Performance-cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "95 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AV9K", + "Spec Code": "SRLCX", + "Ordering Code": "FJ8071504785706", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AV9K": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12500", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Performance-core Base Frequency": "3.00 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "117 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJK", + "Spec Code": "SRL5V", + "Ordering Code": "BXC8071512500", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCM": "PCN", + "99ATJA": "PCN", + "99ATJK": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-12500E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Performance-core Max Turbo Frequency": "4.50 GHz", + "Performance-core Base Frequency": "2.90 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC6", + "Spec Code": "SRL6W", + "Ordering Code": "CM8071504654426", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC6": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-12500H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Performance-core Max Turbo Frequency": "4.50 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "95 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AV9L", + "Spec Code": "SRLCY", + "Ordering Code": "FJ8071504785804", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AV9L": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12500T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Performance-core Base Frequency": "2.00 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "74 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APCN", + "Spec Code": "SRL5W", + "Ordering Code": "CM8071504647706", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCN": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-12500TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Performance-core Max Turbo Frequency": "4.30 GHz", + "Performance-core Base Frequency": "1.90 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "No", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC5", + "Spec Code": "SRL6V", + "Ordering Code": "CM8071504654307", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC5": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12600", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Performance-core Max Turbo Frequency": "4.80 GHz", + "Performance-core Base Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "65 W", + "Maximum Turbo Power": "117 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJ8", + "Spec Code": "SRL5T", + "Ordering Code": "BX8071512600", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCK": "PCN", + "99ATJ8": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-12600H", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Max Turbo Frequency": "4.50 GHz", + "Performance-core Max Turbo Frequency": "4.50 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "95 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® Remote Platform Erase (RPE) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AV9N", + "Spec Code": "SRLCZ", + "Ordering Code": "FJ8071504785907", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AV9N": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-12600HE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "12", + "# of Performance-cores": "4", + "# of Efficient-cores": "8", + "Total Threads": "16", + "Performance-core Max Turbo Frequency": "4.50 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 mm x 25 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVWJ", + "Spec Code": "SRLE5", + "Ordering Code": "FJ8071504797709", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVWJ": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12600T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "6", + "# of Performance-cores": "6", + "# of Efficient-cores": "0", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Performance-core Max Turbo Frequency": "4.60 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Cache": "18 MB Intel® Smart Cache", + "Total L2 Cache": "7.5 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "74 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4690", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel vPro® Essentials Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APCL", + "Spec Code": "SRL5U", + "Ordering Code": "CM8071504647507", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCL": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12600K", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet, Workstation", + "Total Cores": "10", + "# of Performance-cores": "6", + "# of Efficient-cores": "4", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.90 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "3.70 GHz", + "Efficient-core Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Total L2 Cache": "9.5 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 770", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4680", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel vPro® Enterprise Platform Eligibility ‡": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Active Management Technology (AMT) ‡": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® One-Click Recovery ‡": "Yes", + "Intel® Hardware Shield Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption - Multi Key": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology with Redirect Protection (VT-rp) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APG7", + "Spec Code": "SRL4T", + "Ordering Code": "BXC8071512600K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMX0": "PCN\n |\n MDDS", + "99APG0": "PCN", + "99APG7": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-12600KF", + "Status": "Launched", + "Launch Date": "Q4'21", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "10", + "# of Performance-cores": "6", + "# of Efficient-cores": "4", + "Total Threads": "16", + "Max Turbo Frequency": "4.90 GHz", + "Performance-core Max Turbo Frequency": "4.90 GHz", + "Efficient-core Max Turbo Frequency": "3.60 GHz", + "Performance-core Base Frequency": "3.70 GHz", + "Efficient-core Base Frequency": "2.80 GHz", + "Cache": "20 MB Intel® Smart Cache", + "Total L2 Cache": "9.5 MB", + "Processor Base Power": "125 W", + "Maximum Turbo Power": "150 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020A", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APGA", + "Spec Code": "SRL4U", + "Ordering Code": "BXC8071512600KF", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AMX1": "PCN\n |\n MDDS", + "99APG4": "PCN", + "99APGA": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-11500HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "6", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH7P", + "Spec Code": "SRKX0", + "Ordering Code": "FH8069004638049", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH7P": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11320H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.20 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF2V", + "Spec Code": "SRKSK", + "Ordering Code": "FH8069004675002", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1155G7", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF2L", + "Spec Code": "SRKSF", + "Ordering Code": "FH8069004673602", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF2L": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1155G7", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics eligible", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AF2J", + "Spec Code": "SRKSD", + "Ordering Code": "FH8069004673502", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AF2J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11260H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDX", + "Spec Code": "SRKT0", + "Ordering Code": "FH8069004351513", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11400H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.20 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFDZ", + "Spec Code": "SRKT1", + "Ordering Code": "FH8069004351613", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFDZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11500H", + "Status": "Launched", + "Launch Date": "Q2'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "Configurable TDP-up Base Frequency": "2.90 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "51.2 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4, HDMI 2.0b", + "Execution Units": "32", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A60", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFF0", + "Spec Code": "SRKT2", + "Ordering Code": "FH8069004351711", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AFF0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11400", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8B", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVP", + "Spec Code": "SRKP0", + "Ordering Code": "BXC8070811400", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2K": "PCN\n |\n MDDS", + "99AFTV": "PCN\n |\n MDDS", + "99AFVP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11400F", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV7", + "Spec Code": "SRKP1", + "Ordering Code": "BXC8070811400F", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2L": "PCN\n |\n MDDS", + "99AFPT": "PCN\n |\n MDDS", + "99AFV7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11400T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8B", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD2M", + "Spec Code": "SRKP2", + "Ordering Code": "CM8070804497106", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11500", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVN", + "Spec Code": "SRKNY", + "Ordering Code": "BXC8070811500", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2H": "PCN\n |\n MDDS", + "99AFTT": "PCN\n |\n MDDS", + "99AFVN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11500T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.00 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD2J", + "Spec Code": "SRKNZ", + "Ordering Code": "CM8070804496907", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11600", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019C", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFW0", + "Spec Code": "SRKNW", + "Ordering Code": "BXC8070811600", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2F": "PCN\n |\n MDDS", + "99AFV1": "MDDS", + "99AFW0": "MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11600K", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.60 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVX", + "Spec Code": "SRKNU", + "Ordering Code": "BXC8070811600K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD27": "PCN\n |\n MDDS", + "99AFV0": "PCN\n |\n MDDS", + "99AFVX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11600KF", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.90 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.60 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019A", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV6", + "Spec Code": "SRKNV", + "Ordering Code": "BXC8070811600KF", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2D": "PCN\n |\n MDDS", + "99AFPL": "PCN\n |\n MDDS", + "99AFV6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Rocket Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-11600T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "50 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 750", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "64 GB", + "Execution Units": "32", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "5120 x 3200 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4C8A", + "OpenCL* Support": "3.0", + "Scalability": "1S Only", + "PCI Express Revision": "4.0", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2019D", + "TJUNCTION": "100°C", + "Package Size": "37.5 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AD2G", + "Spec Code": "SRKNX", + "Ordering Code": "CM8070804493811", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AD2G": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-11300H", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.10 GHz", + "Configurable TDP-up": "35 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A9CC", + "Spec Code": "SRKH6", + "Ordering Code": "FH8069004600005", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A9CC": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1140G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GP", + "Spec Code": "SRK0F", + "Ordering Code": "FH8069004532303", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GP": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1145G7E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LP", + "Spec Code": "SRK0Z", + "Ordering Code": "FH8069004542000", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-1145GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267, In-Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3LV", + "Spec Code": "SRK10", + "Ordering Code": "FH8069004542100", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3LV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1130G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A40", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3GX", + "Spec Code": "SRK0G", + "Ordering Code": "FH8069004532404", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3GX": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DD", + "Spec Code": "SRK04", + "Ordering Code": "FH8069004530601", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10505", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ6", + "Spec Code": "SRH38", + "Ordering Code": "CM8070104290316", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ6": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10500H", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HX", + "Spec Code": "SRK3Z", + "Ordering Code": "CL8070104409309", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10200H", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "12", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BA4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5HV", + "Spec Code": "SRK3X", + "Ordering Code": "CL8070104441108", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "99A5HV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10310U", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.20 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41,0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7P", + "Spec Code": "SRJ7T", + "Ordering Code": "FJ8070104500100", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7P": "PCN\n |\n MDDS", + "999K48": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1038NG7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A53", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1344", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H22", + "Spec Code": "SRG0V", + "Ordering Code": "FJ8068904334702", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999H22": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10400", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8 / 0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A102", + "Spec Code": "SRH78", + "Ordering Code": "BXC8070110400", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W51": "PCN\n |\n MDDS", + "99A0V8": "PCN\n |\n MDDS", + "99A102": "PCN\n |\n MDDS", + "999TJA": "PCN\n |\n MDDS", + "99A00D": "PCN\n |\n MDDS", + "99A00X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10400F", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0W0", + "Spec Code": "SRH79", + "Ordering Code": "BXC8070110400F", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W52": "PCN\n |\n MDDS", + "99A0VG": "PCN\n |\n MDDS", + "99A0W0": "PCN\n |\n MDDS", + "999TK0": "PCN\n |\n MDDS", + "99A00N": "PCN\n |\n MDDS", + "99A017": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10400T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.30 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TK3", + "Spec Code": "SRH3F", + "Ordering Code": "CM8070104290806", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10500", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A00W", + "Spec Code": "SRH3A", + "Ordering Code": "BXC8070110500", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ8": "PCN\n |\n MDDS", + "99A00C": "PCN\n |\n MDDS", + "99A00W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-10500E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A087", + "Spec Code": "SRJFL", + "Ordering Code": "CM8070104510607", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VWZ": "PCN\n |\n MDDS", + "99A087": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10500T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ9", + "Spec Code": "SRH3B", + "Ordering Code": "CM8070104290606", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-10500TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX0", + "Spec Code": "SRH6D", + "Ordering Code": "CM8070104422406", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A00V", + "Spec Code": "SRH37", + "Ordering Code": "BXC8070110600", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ5": "PCN\n |\n MDDS", + "99A00A": "PCN\n |\n MDDS", + "99A00V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600K", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.80 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC5", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A5FN", + "Spec Code": "SRH6R", + "Ordering Code": "BX8070110600KA", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W41": "PCN\n |\n MDDS", + "99A0V5": "PCN\n |\n MDDS", + "99A0ZX": "PCN\n |\n MDDS", + "99A5FN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600KF", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.80 GHz", + "Processor Base Frequency": "4.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "125 W", + "Configurable TDP-down Base Frequency": "3.80 GHz", + "Configurable TDP-down": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0VV", + "Spec Code": "SRH6S", + "Ordering Code": "BXC8070110600KF", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W42": "PCN\n |\n MDDS", + "99A0VC": "PCN\n |\n MDDS", + "99A0VV": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-10600T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TJ7", + "Spec Code": "SRH39", + "Ordering Code": "CM8070104290410", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TJ7": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10300H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999W76", + "Spec Code": "SRH84", + "Ordering Code": "CL8070104399510", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999W76": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10400H", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999WMW", + "Spec Code": "SRH8R", + "Ordering Code": "CL8070104399409", + "Shipping Media": "TRAY", + "Stepping": "R1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WMW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B21/0x9B41/0x9BAC/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7R", + "Spec Code": "SRJ7U", + "Ordering Code": "FJ8070104500200", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K4C": "PCN\n |\n MDDS", + "999WM1": "PCN\n |\n MDDS", + "999K49": "PCN\n |\n MDDS", + "999X7R": "PCN\n |\n MDDS", + "999WFD": "PCN", + "999W5T": "PCN", + "999N1N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10210Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LTZ", + "Spec Code": "SRGSD", + "Ordering Code": "FJ8068404190418", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K44": "PCN", + "999LTZ": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-10310Y", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.40 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K43", + "Spec Code": "SRGKS", + "Ordering Code": "FJ8068404190310", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K43": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1030G4", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "700 MHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.00 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5C", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1030G7", + "Status": "Discontinued", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-up Base Frequency": "1.10 GHz", + "Configurable TDP-up": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A51", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.20 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "700 MHz", + "Configurable TDP-down": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A56", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K41", + "Spec Code": "SRGKL", + "Ordering Code": "FJ8068904312402", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K2A": "PCN\n |\n MDDS", + "999K41": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G4", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5A", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K3Z", + "Spec Code": "SRGKK", + "Ordering Code": "FJ8068904312303", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K3Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1035G7", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A52", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K3X", + "Spec Code": "SRGKJ", + "Ordering Code": "FJ8068904312203", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K3X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-9500E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMP", + "Spec Code": "SRGQX", + "Ordering Code": "CM8068404404932", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-9500TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "128 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMW", + "Spec Code": "SRGQZ", + "Ordering Code": "CM8068404404726", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9300H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999A8R", + "Spec Code": "SRF6X", + "Ordering Code": "CL8068404121905", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999CXR": "PCN\n |\n MDDS", + "999A8R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9400H", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DM6", + "Spec Code": "SRFDM", + "Ordering Code": "CL8068404069511", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999DM6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9400T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963542", + "Spec Code": "SR3X8", + "Ordering Code": "CM8068403358915", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963542": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9500", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F9X", + "Spec Code": "SRF4B", + "Ordering Code": "BXC80684I59500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RP": "PCN\n |\n MDDS", + "999F9K": "PCN\n |\n MDDS", + "999F9X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9500F", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999J2G", + "Spec Code": "SRG10", + "Ordering Code": "BXC80684I59500F", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H2A": "PCN\n |\n MDDS", + "999J2A": "PCN\n |\n MDDS", + "999J2G": "PCN\n |\n MDDS", + "999A78": "PCN" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9500T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "9999RT", + "Spec Code": "SRF4D", + "Ordering Code": "CM8068403362510", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F9R", + "Spec Code": "SRF4H", + "Ordering Code": "BXC80684I59600", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999T0": "PCN\n |\n MDDS", + "999F9D": "PCN\n |\n MDDS", + "999F9R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "9999RW", + "Spec Code": "SRF4F", + "Ordering Code": "CM8068403358709", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "9999RW": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-9300HF", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s DMI", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999H62", + "Spec Code": "SRG26", + "Ordering Code": "CL8068404069607", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H62": "PCN" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9400", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0X3E98/x92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984511", + "Spec Code": "SRELV", + "Ordering Code": "BXC80684I59400", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963539": "PCN\n |\n MDDS", + "999H28": "PCN\n |\n MDDS", + "983357": "PCN\n |\n MDDS", + "984507": "PCN\n |\n MDDS", + "984511": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9400F", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C3T", + "Spec Code": "SRFAH", + "Ordering Code": "CM8068403875509", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999H29": "PCN\n |\n MDDS", + "999A75": "PCN\n |\n MDDS", + "999CVM": "PCN\n |\n MDDS", + "999CVN": "PCN\n |\n MDDS", + "999C3T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600KF", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DLJ", + "Spec Code": "SRFAD", + "Ordering Code": "BXC80684I5960KF", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999C3M": "PCN\n |\n MDDS", + "999DLC": "PCN\n |\n MDDS", + "999DLJ": "PCN\n |\n MDDS", + "999H2D": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-9600K", + "Status": "Launched", + "Launch Date": "Q4'18", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Description": "View now", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "984505", + "Spec Code": "SRELU", + "Ordering Code": "BX80684I59600K", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "983356": "PCN\n |\n MDDS", + "984505": "PCN\n |\n MDDS", + "984512": "PCN", + "999H2C": "PCN\n |\n MDDS", + "999J2P": "PCN\n |\n MDDS", + "999J2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8260U", + "Status": "Launched", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L1Z", + "Spec Code": "SRGMM", + "Ordering Code": "FH8068404163208", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L1Z": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8257U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 645", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA6", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986446", + "Spec Code": "SREZ2", + "Ordering Code": "FH8068404163204", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986446": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-8365UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR5", + "Spec Code": "SRFDU", + "Ordering Code": "CL8068404149404", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8279U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "986441", + "Spec Code": "SREZ0", + "Ordering Code": "FH8068404166004", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "986441": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8310Y", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 617", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87C0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983288", + "Spec Code": "SREKP", + "Ordering Code": "HE8067702739888", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992C", + "CCATS": "G158870", + "US HTS": "8542310001", + "983288": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8210Y", + "Status": "Discontinued", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 617", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87C0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "983289", + "Spec Code": "SREKQ", + "Ordering Code": "HE8067702739889", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "983289": "PCN\n |\n MDDS", + "983287": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8200Y", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980667", + "Spec Code": "SRD22", + "Ordering Code": "HE8067702739846", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8265U", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "3EA0, 3EA1", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Deep Learning Boost (Intel® DL Boost)": "No", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FFA", + "Spec Code": "SRFFY", + "Ordering Code": "CL8068404064610", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "982922": "PCN\n |\n MDDS", + "982921": "PCN\n |\n MDDS", + "999FFA": "PCN", + "999FF9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8305G", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ Pro WX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979456", + "Spec Code": "SRD0X", + "Ordering Code": "FH8067703417715", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979456": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8259U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975759", + "Spec Code": "SRCUU", + "Ordering Code": "FH8068403419527", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975759": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8269U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974943", + "Spec Code": "SRCKA", + "Ordering Code": "FH8068403419614", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "974943": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8300H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963720", + "Spec Code": "SR3Z0", + "Ordering Code": "CL8068403373522", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963720": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977518", + "Spec Code": "SR3QT", + "Ordering Code": "BO80684I58400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977514": "PCN\n |\n MDDS", + "977518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8400B", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976531", + "Spec Code": "SRCX4", + "Ordering Code": "CL8068403612408", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8400H", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.00 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963721", + "Spec Code": "SR3Z1", + "Ordering Code": "CL8068403373614", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963721": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963540", + "Spec Code": "SR3X6", + "Ordering Code": "CM8068403358913", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963540": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975871", + "Spec Code": "SR3XE", + "Ordering Code": "BXC80684I58500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963598": "PCN\n |\n MDDS", + "974957": "PCN\n |\n MDDS", + "975871": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Included Items": "Intel(R) Optane(TM) Memory: 16GB, M.2 22x80mm, PCIe NVMe 3.0 x2, 3D Xpoint", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "977519", + "Spec Code": "SR3XE", + "Ordering Code": "BO80684I58500", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "977515": "PCN\n |\n MDDS", + "977519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8500B", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "976526", + "Spec Code": "SRCX3", + "Ordering Code": "CL8068403612509", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "976526": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8500T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963592", + "Spec Code": "SR3XD", + "Ordering Code": "CM8068403362509", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963592": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975870", + "Spec Code": "SR3X0", + "Ordering Code": "BXC80684I58600", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963534": "PCN\n |\n MDDS", + "974956": "PCN\n |\n MDDS", + "975870": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963537", + "Spec Code": "SR3X3", + "Ordering Code": "CM8068403358708", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963537": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake G", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8305G", + "Status": "Announced", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "Embedded Options Available": "No", + "Description": "65W Package TDP", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Name‡": "Radeon™ RX Vega M GL Graphics", + "Graphics Max Dynamic Clock": "1011 MHz", + "Graphics Base Clock": "931 MHz", + "Compute Units": "20", + "Graphics Memory Bandwidth": "179.2 GB/s", + "Graphics Memory Interface": "1024 bit", + "Graphics Output": "eDP 1.4, DP 1.2, HDMI 1.4, DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160 @30Hz", + "Max Resolution (DP)‡": "4096 x 2160 @60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2160 @60Hz", + "DirectX* Support": "12", + "Vulkan* Support": "1", + "OpenGL* Support": "4.4", + "H.264 Hardware Encode/Decode": "Yes", + "H.265 (HEVC) Hardware Encode/Decode": "Yes, 10-bit", + "# of Displays Supported‡": "6", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x8, 2x4", + "Max # of PCI Express Lanes": "8", + "Sockets Supported": "BGA2270", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "31mm x 58.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8400", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961575", + "Spec Code": "SR3QT", + "Ordering Code": "BXC80684I58400", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960619": "PCN\n |\n MDDS", + "961568": "PCN\n |\n MDDS", + "961575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-8600K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "6", + "Total Threads": "6", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "9 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961576", + "Spec Code": "SR3QU", + "Ordering Code": "BXC80684I58600K", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960620": "PCN\n |\n MDDS", + "961570": "PCN\n |\n MDDS", + "961576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8250U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.80 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959160", + "Spec Code": "SR3LA", + "Ordering Code": "FJ8067703282221", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8350U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959155", + "Spec Code": "SR3L9", + "Ordering Code": "FJ8067703282016", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959155": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7260U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954108", + "Spec Code": "SR363", + "Ordering Code": "FH8067703037209", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954108": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7267U", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7287U", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952959", + "Spec Code": "SR32S", + "Ordering Code": "CL8067702870309", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7360U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 640", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954110", + "Spec Code": "SR365", + "Ordering Code": "FH8067703037109", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "954110": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7400", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953681", + "Spec Code": "SR32W", + "Ordering Code": "BX80677I57400", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952986": "PCN\n |\n MDDS", + "953681": "PCN\n |\n MDDS", + "953701": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7400T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954225", + "Spec Code": "SR332", + "Ordering Code": "BXC80677I57400T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952998": "PCN\n |\n MDDS", + "954219": "PCN\n |\n MDDS", + "954225": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-7440EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953941", + "Spec Code": "SR34T", + "Ordering Code": "CL8067702998810", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953941": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7440HQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-7442EQ", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953942", + "Spec Code": "SR34U", + "Ordering Code": "CL8067702998909", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7500", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953683", + "Spec Code": "SR335", + "Ordering Code": "BX80677I57500", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953001": "PCN\n |\n MDDS", + "953683": "PCN\n |\n MDDS", + "953703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7500T", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954228", + "Spec Code": "SR337", + "Ordering Code": "BXC80677I57500T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953003": "PCN\n |\n MDDS", + "954221": "PCN\n |\n MDDS", + "954228": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.10 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953702", + "Spec Code": "SR334", + "Ordering Code": "BXC80677I57600", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953000": "PCN\n |\n MDDS", + "953682": "PCN\n |\n MDDS", + "953702": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953700", + "Spec Code": "SR32V", + "Ordering Code": "BXC80677I57600K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952985": "PCN\n |\n MDDS", + "953680": "PCN\n |\n MDDS", + "953700": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-7600T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "1.80 GHz", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "80°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954227", + "Spec Code": "SR336", + "Ordering Code": "BXC80677I57600T", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953002": "PCN\n |\n MDDS", + "954220": "PCN\n |\n MDDS", + "954227": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7Y57", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953349", + "Spec Code": "SR33Y", + "Ordering Code": "HE8067702739527", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7200U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953353", + "Spec Code": "SR342", + "Ordering Code": "FJ8067702739739", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953353": "PCN\n |\n MDDS", + "951957": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7Y54", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953356", + "Spec Code": "SR345", + "Ordering Code": "HE8067702739826", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953356": "PCN\n |\n MDDS", + "951960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6585R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6685R", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6350HQ", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 580", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x193B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948625", + "Spec Code": "SR2QZ", + "Ordering Code": "JQ8066202195125", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948625": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6402P", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948518", + "Spec Code": "SR2NJ", + "Ordering Code": "BXC80662I56402P", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947992": "PCN", + "948516": "PCN\n |\n MDDS", + "948518": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6440EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944037", + "Spec Code": "SR2DU", + "Ordering Code": "CL8066201939503", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6442EQ", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944051", + "Spec Code": "SR2DY", + "Ordering Code": "CL8066202400005", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944051": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i5-6500TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947257", + "Spec Code": "SR2LR", + "Ordering Code": "CM8066201938000", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947257": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6200U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944338", + "Spec Code": "SR2EY", + "Ordering Code": "FJ8066201930409", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944338": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6260U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946143", + "Spec Code": "SR2JC", + "Ordering Code": "FJ8066202496511", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6267U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946160", + "Spec Code": "SR2JK", + "Ordering Code": "FJ8066202499002", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946160": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6287U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946159", + "Spec Code": "SR2JJ", + "Ordering Code": "FJ8066202499001", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6300HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948853", + "Spec Code": "SR2SK", + "Ordering Code": "JQ8066202195132", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944367": "PCN\n |\n MDDS", + "948853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6300U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944340", + "Spec Code": "SR2F0", + "Ordering Code": "FJ8066201924931", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944340": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6360U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 540", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1926", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42x24x1.3", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946162", + "Spec Code": "SR2JM", + "Ordering Code": "FJ8066202499208", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946162": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6400", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947570", + "Spec Code": "SR2L7", + "Ordering Code": "BXC80662I56400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947207": "PCN", + "947563": "PCN\n |\n MDDS", + "947570": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6400T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947201", + "Spec Code": "SR2L1", + "Ordering Code": "CM8066201920000", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947201": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-6440HQ", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944370", + "Spec Code": "SR2FS", + "Ordering Code": "CL8066202194729", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944370": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6500", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947569", + "Spec Code": "SR2L6", + "Ordering Code": "BXC80662I56500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947206": "PCN\n |\n MDDS", + "947562": "PCN\n |\n MDDS", + "947569": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6500T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947208", + "Spec Code": "SR2L8", + "Ordering Code": "CM8066201920600", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947208": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "71°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947568", + "Spec Code": "SR2L5", + "Ordering Code": "BXC80662I56600", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947205": "PCN", + "947561": "PCN\n |\n MDDS", + "947568": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947209", + "Spec Code": "SR2L9", + "Ordering Code": "CM8066201920601", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947209": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i5-6600K", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Product Brief": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TCASE": "64°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947567", + "Spec Code": "SR2L4", + "Ordering Code": "BXC80662I56600K", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947204": "PCN\n |\n MDDS", + "947560": "PCN\n |\n MDDS", + "947567": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5350H", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1600/1866 LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 32mm x 1.8mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "MM#": "943432", + "Spec Code": "SR2BK", + "Ordering Code": "FH8065802491703", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943432": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5575R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943367", + "Spec Code": "SR2AK", + "Ordering Code": "FH8065802483402", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943367": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5675C", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Configurable TDP-down Base Frequency": "2.10 GHz", + "Configurable TDP-down": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944548", + "Spec Code": "SR2FX", + "Ordering Code": "BX80658I55675C", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944383": "PCN\n |\n MDDS", + "944548": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-5675R", + "Status": "Discontinued", + "Launch Date": "Q2'15", + "Lithography": "14 nm", + "Total Cores": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L-1333/1600/1866 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.86 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 6200", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1622", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCA 2013D", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943366", + "Spec Code": "SR2AJ", + "Ordering Code": "FH8065802483401", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "943366": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5200U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939362", + "Spec Code": "SR23Y", + "Ordering Code": "FH8065801620204", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5250U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939660", + "Spec Code": "SR26C", + "Ordering Code": "FH8065802063410", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5257U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939672", + "Spec Code": "SR26K", + "Ordering Code": "FH8065802064111", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939672": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5287U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939670", + "Spec Code": "SR26H", + "Ordering Code": "FH8065802064011", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939670": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5300U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939361", + "Spec Code": "SR23X", + "Ordering Code": "FH8065801620104", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5350U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "9.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 6000", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1626", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939656", + "Spec Code": "SR268", + "Ordering Code": "FH8065802063212", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210H", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931923", + "Spec Code": "SR1Q0", + "Ordering Code": "CL8064701473003", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931923": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4278U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936756", + "Spec Code": "SR1ZV", + "Ordering Code": "CL8064701954800", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936756": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4308U", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333, 1600; LPDDR3-1333, 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "936754", + "Spec Code": "SR1ZU", + "Ordering Code": "CL8064701954700", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "936754": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Devil's Canyon", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690K", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "88 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Execution Units": "20", + "Max Resolution (HDMI)‡": "3840x2160@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937434", + "Spec Code": "SR21A", + "Ordering Code": "BXC80646I54690K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "937298": "PCN\n |\n MDDS", + "937430": "PCN\n |\n MDDS", + "937431": "PCN\n |\n MDDS", + "937434": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935299", + "Spec Code": "SR1QK", + "Ordering Code": "BXC80646I54460", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931982": "PCN\n |\n MDDS", + "935297": "PCN\n |\n MDDS", + "935299": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460S", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "940135", + "Spec Code": "SR1QQ", + "Ordering Code": "BXC80646I54460S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931997": "PCN\n |\n MDDS", + "940135": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4460T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932362", + "Spec Code": "SR1S7", + "Ordering Code": "CM8064601561827", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934961", + "Spec Code": "SR1QJ", + "Ordering Code": "BX80646I54590", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931979": "PCN\n |\n MDDS", + "934958": "PCN", + "934961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590S", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934962", + "Spec Code": "SR1QN", + "Ordering Code": "BX80646I54590S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931994": "PCN\n |\n MDDS", + "934962": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4590T", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932361", + "Spec Code": "SR1S6", + "Ordering Code": "CM8064601561826", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934924", + "Spec Code": "SR1QH", + "Ordering Code": "BX80646I54690", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931978": "PCN\n |\n MDDS", + "934920": "PCN\n |\n MDDS", + "934924": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690S", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934926", + "Spec Code": "SR1QP", + "Ordering Code": "BX80646I54690S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931995": "PCN\n |\n MDDS", + "934926": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4690T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932003", + "Spec Code": "SR1QT", + "Ordering Code": "CM8064601561613", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932003": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931062", + "Spec Code": "SR1L4", + "Ordering Code": "CW8064701486601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931062": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930615", + "Spec Code": "SR1EF", + "Ordering Code": "CL8064701477802", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930615": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4220Y", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930488", + "Spec Code": "SR1DB", + "Ordering Code": "CL8064701570400", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4260U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929018", + "Spec Code": "SR16T", + "Ordering Code": "CL8064701476801", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929018": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4410E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932853", + "Spec Code": "SR1T4", + "Ordering Code": "CL8064701589205", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4422E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932847", + "Spec Code": "SR1T1", + "Ordering Code": "CL8064701588605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932847": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4402EC", + "Status": "Launched", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "27 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Graphics Video Max Memory": "1.7 GB", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934877", + "Spec Code": "SR1W1", + "Ordering Code": "CL8064701830200", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "934877": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4310M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4310U", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930614", + "Spec Code": "SR1EE", + "Ordering Code": "CL8064701477600", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930614": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4340M", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931058", + "Spec Code": "SR1L0", + "Ordering Code": "CW8064701486401", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931058": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4360U", + "Status": "Discontinued", + "Launch Date": "Q1'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200H", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "47 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928034", + "Spec Code": "SR15G", + "Ordering Code": "CL8064701470601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "928034": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930780", + "Spec Code": "SR1HA", + "Ordering Code": "CW8064701486606", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930780": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4202Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929528", + "Spec Code": "SR190", + "Ordering Code": "CL8064701558401", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929528": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4210Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.90 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929529", + "Spec Code": "SR191", + "Ordering Code": "CL8064701558501", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929529": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931887", + "Spec Code": "SR1H9", + "Ordering Code": "BX80647I54300M", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930779": "PCN\n |\n MDDS", + "931887": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930613", + "Spec Code": "SR1ED", + "Ordering Code": "CL8064701477400", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4300Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929531", + "Spec Code": "SR192", + "Ordering Code": "CL8064701558601", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4302Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4330M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "3", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930778", + "Spec Code": "SR1H8", + "Ordering Code": "CW8064701486406", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930778": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4400E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929206", + "Spec Code": "SR17M", + "Ordering Code": "CL8064701483902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929206": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4402E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "1.7 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929209", + "Spec Code": "SR17Q", + "Ordering Code": "CL8064701528501", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929209": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4440", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931233", + "Spec Code": "SR14F", + "Ordering Code": "BXC80646I54440", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927940": "PCN\n |\n MDDS", + "931230": "PCN\n |\n MDDS", + "931233": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4440S", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931231", + "Spec Code": "SR14L", + "Ordering Code": "BX80646I54440S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927956": "PCN\n |\n MDDS", + "931231": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929032", + "Spec Code": "SR170", + "Ordering Code": "CL8064701477702", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929032": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4200Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "1.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929508", + "Spec Code": "SR18T", + "Ordering Code": "CL8064701557900", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929508": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4250U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929010", + "Spec Code": "SR16M", + "Ordering Code": "CL8064701463101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4258U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929308", + "Spec Code": "SR18A", + "Ordering Code": "CL8064701481503", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929308": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4288U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929307", + "Spec Code": "SR189", + "Ordering Code": "CL8064701481403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929307": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4350U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929000", + "Spec Code": "SR16L", + "Ordering Code": "CL8064701463001", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929349", + "Spec Code": "SR18P", + "Ordering Code": "CL8064701508603", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Crystal Well", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670R", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 and DDR3L 1333/1600 at 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Pro Graphics 5200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xD22", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 32mm x 1.65mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929347", + "Spec Code": "SR18M", + "Ordering Code": "CL8064701508403", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929347": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4430", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928644", + "Spec Code": "SR14G", + "Ordering Code": "BXC80646I54430", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927942": "PCN\n |\n MDDS", + "928637": "PCN\n |\n MDDS", + "928644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4430S", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927958", + "Spec Code": "SR14M", + "Ordering Code": "CM8064601465803", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928643", + "Spec Code": "SR14E", + "Ordering Code": "BXC80646I54570", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927938": "PCN\n |\n MDDS", + "928636": "PCN\n |\n MDDS", + "928643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570S", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928640", + "Spec Code": "SR14J", + "Ordering Code": "BX80646I54570S", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927951": "PCN\n |\n MDDS", + "928640": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4570T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931498", + "Spec Code": "SR1CA", + "Ordering Code": "BXC80646I54570T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927968": "PCN\n |\n MDDS", + "930388": "PCN\n |\n MDDS", + "931496": "PCN\n |\n MDDS", + "931498": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i5-4570TE", + "Status": "Launched", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.35°C", + "Package Size": "37.5mm x 37.5mm (LGA 1150)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929226", + "Spec Code": "SR17Z", + "Ordering Code": "CM8064601484301", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "929226": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928642", + "Spec Code": "SR14D", + "Ordering Code": "BXC80646I54670", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927936": "PCN\n |\n MDDS", + "928635": "PCN\n |\n MDDS", + "928642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670K", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "84 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013D", + "TCASE": "72.72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "928665", + "Spec Code": "SR14A", + "Ordering Code": "BXC80646I54670K", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927930": "PCN\n |\n MDDS", + "928663": "PCN\n |\n MDDS", + "928664": "PCN\n |\n MDDS", + "928665": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670S", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "71.35°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927953", + "Spec Code": "SR14K", + "Ordering Code": "CM8064601465703", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927953": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i5-4670T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013B", + "TCASE": "71.45°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927963", + "Spec Code": "SR14P", + "Ordering Code": "CM8064601466003", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "927963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1215UE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "6", + "# of Performance-cores": "2", + "# of Efficient-cores": "4", + "Total Threads": "8", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Maximum Assured Power": "28 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AZG1", + "Spec Code": "SRLZK", + "Ordering Code": "FJ8071504827102", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AZG1": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1220PE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "# of Performance-cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "12", + "Performance-core Max Turbo Frequency": "4.20 GHz", + "Efficient-core Max Turbo Frequency": "3.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Maximum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AVWL", + "Spec Code": "SRLE7", + "Ordering Code": "FJ8071504797912", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AVWL": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1210U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "6", + "# of Performance-cores": "2", + "# of Efficient-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Processor Base Power": "9 W", + "Maximum Turbo Power": "29 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46C3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "14", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "28.5 x 19", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "No", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1215U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "6", + "# of Performance-cores": "2", + "# of Efficient-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW76", + "Spec Code": "SRLFU", + "Ordering Code": "FJ8071504827101", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW76": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1215U", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "6", + "# of Performance-cores": "2", + "# of Efficient-cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "10 MB Intel® Smart Cache", + "Processor Base Power": "15 W", + "Maximum Turbo Power": "55 W", + "Minimum Assured Power": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW75", + "Spec Code": "SRLFT", + "Ordering Code": "FJ8071504827100", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW75": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1220P", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Total Cores": "10", + "# of Performance-cores": "2", + "# of Efficient-cores": "8", + "Total Threads": "12", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "28 W", + "Maximum Turbo Power": "64 W", + "Minimum Assured Power": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 12th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "64", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46B3", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 25", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® QuickAssist Software Acceleration": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AW7A", + "Spec Code": "SRLFY", + "Ordering Code": "FJ8071504827402", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AW7A": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-12100", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Performance-core Max Turbo Frequency": "4.30 GHz", + "Performance-core Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "60 W", + "Maximum Turbo Power": "89 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJM", + "Spec Code": "SRL62", + "Ordering Code": "BXC8071512100", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCX": "PCN", + "99ATJC": "PCN", + "99ATJM": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-12100E", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Performance-core Max Turbo Frequency": "4.20 GHz", + "Performance-core Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "60 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC4", + "Spec Code": "SRL6U", + "Ordering Code": "CM8071504654209", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC4": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-12100F", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Performance-core Max Turbo Frequency": "4.30 GHz", + "Performance-core Base Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "58 W", + "Maximum Turbo Power": "89 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ATJV", + "Spec Code": "SRL63", + "Ordering Code": "BXC8071512100F", + "Shipping Media": "BOX", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCZ": "PCN", + "99ATJG": "PCN", + "99ATJV": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-12100T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Performance-core Max Turbo Frequency": "4.10 GHz", + "Performance-core Base Frequency": "2.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APD0", + "Spec Code": "SRL64", + "Ordering Code": "CM8071504651106", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APD0": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-12100TE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Performance-core Max Turbo Frequency": "4.00 GHz", + "Performance-core Base Frequency": "2.10 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.40 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99ARC3", + "Spec Code": "SRL6T", + "Ordering Code": "CM8071504654106", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99ARC3": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-12300", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Performance-core Max Turbo Frequency": "4.40 GHz", + "Performance-core Base Frequency": "3.50 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "60 W", + "Maximum Turbo Power": "89 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020C", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APCW", + "Spec Code": "SRL61", + "Ordering Code": "CM8071504650906", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCW": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-12300HE", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "8", + "# of Performance-cores": "4", + "# of Efficient-cores": "4", + "Total Threads": "12", + "Performance-core Max Turbo Frequency": "4.30 GHz", + "Efficient-core Max Turbo Frequency": "3.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Processor Base Power": "45 W", + "Maximum Turbo Power": "115 W", + "Minimum Assured Power": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s Up to LPDDR5 5200 MT/s Up to LPDDR4x 4267 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096 x 2304 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304 @ 120Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x46A6", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "28", + "Sockets Supported": "FCBGA1744", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 mm x 25 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.2", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99C14T", + "Spec Code": "SRM2P", + "Ordering Code": "FJ8071504798008", + "Shipping Media": "TRAY", + "Stepping": "L0", + "ECCN": "5A992C", + "CCATS": "G167599", + "US HTS": "8542310001", + "99C14T": "PCN" + }, + { + "Product Collection": "12th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Alder Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-12300T", + "Status": "Launched", + "Launch Date": "Q1'22", + "Lithography": "Intel 7", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "# of Performance-cores": "4", + "# of Efficient-cores": "0", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Performance-core Max Turbo Frequency": "4.20 GHz", + "Performance-core Base Frequency": "2.30 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Total L2 Cache": "5 MB", + "Processor Base Power": "35 W", + "Maximum Turbo Power": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "Up to DDR5 4800 MT/s Up to DDR4 3200 MT/s", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "76.8 GB/s", + "Processor Graphics ‡": "Intel® UHD Graphics 730", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.45 GHz", + "Graphics Output": "eDP 1.4b, DP 1.4a, HDMI 2.1", + "Execution Units": "24", + "Max Resolution (HDMI)‡": "4096 x 2160 @ 60Hz", + "Max Resolution (DP)‡": "7680 x 4320 @ 60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200 @ 120Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x4692", + "OpenCL* Support": "2.1", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "Scalability": "1S Only", + "PCI Express Revision": "5.0 and 4.0", + "PCI Express Configurations ‡": "Up to 1x16+4, 2x8+4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCLGA1700", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2020D", + "TJUNCTION": "100°C", + "Package Size": "45.0 mm x 37.5 mm", + "Intel® Gaussian & Neural Accelerator": "3.0", + "Intel® Thread Director": "No", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel® Threat Detection Technology (TDT)": "Yes", + "Intel® Standard Manageability (ISM) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99APCV", + "Spec Code": "SRL60", + "Ordering Code": "CM8071504650806", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99APCV": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-11100HE", + "Status": "Launched", + "Launch Date": "Q3'21", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "45 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-3200", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "16", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A68", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "PCI Express Configurations ‡": "Up to 1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1787", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50 x 26.5", + "Operating Temperature (Maximum)": "100 °C", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "# of AVX-512 FMA Units": "4", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AH80", + "Spec Code": "SRKX2", + "Ordering Code": "FH8069004638051", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99AH80": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1115G4E", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "0°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "0 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3M2", + "Spec Code": "SRK12", + "Ordering Code": "FH8069004542300", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3M2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-1115GRE", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Use Conditions": "Industrial Extended Temp, Embedded Broad Market Extended Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733, In -Band ECC", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "2.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Operating Temperature Range": "-40°C to 100°C", + "Operating Temperature (Maximum)": "100 °C", + "Package Size": "46.5x25", + "Operating Temperature (Minimum)": "-40 °C", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3M9", + "Spec Code": "SRK13", + "Ordering Code": "FH8069004542400", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3M9": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1120G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78R", + "Spec Code": "SRK8T", + "Ordering Code": "FH8069004532506", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78R": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1125G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78N", + "Spec Code": "SRK8S", + "Ordering Code": "FH8069004531606", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78N": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1125G4", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A78J", + "Spec Code": "SRK8R", + "Ordering Code": "FH8069004531506", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A78J": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1110G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "2 GT/s", + "Configurable TDP-up Base Frequency": "2.50 GHz", + "Configurable TDP-up": "15 W", + "Configurable TDP-down Base Frequency": "1.50 GHz", + "Configurable TDP-down": "7 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1598", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5x18.5", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3H5", + "Spec Code": "SRK0H", + "Ordering Code": "FH8069004532502", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3H5": "PCN" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DL", + "Spec Code": "SRK07", + "Ordering Code": "FH8069004531502", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVM", + "Spec Code": "SRH3P", + "Ordering Code": "BXC8070110105", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKH": "PCN\n |\n MDDS", + "99AFTR": "PCN\n |\n MDDS", + "99AFVM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10105F", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFV3", + "Spec Code": "SRH8V", + "Ordering Code": "BXC8070110105F", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WPP": "PCN", + "99AFPR": "PCN\n |\n MDDS", + "99AFV3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10105T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKL", + "Spec Code": "SRH3R", + "Ordering Code": "CM8070104291414", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKL": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10305", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.50 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVL", + "Spec Code": "SRH3K", + "Ordering Code": "BXC8070110305", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKC": "PCN\n |\n MDDS", + "99AFTP": "MDDS", + "99AFVL": "MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10305T", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.00 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKF", + "Spec Code": "SRH3M", + "Ordering Code": "CM8070104291214", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKF": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10325", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.70 GHz", + "Processor Base Frequency": "3.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99AFVK", + "Spec Code": "SRH3H", + "Ordering Code": "BXC8070110325", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK6": "PCN\n |\n MDDS", + "99AFTN": "MDDS", + "99AFVK": "MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10100Y", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10100F", + "Status": "Launched", + "Launch Date": "Q4'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A32C", + "Spec Code": "SRH8U", + "Ordering Code": "BXC8070110100F", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999WPA": "PCN\n |\n MDDS", + "99A32A": "PCN\n |\n MDDS", + "99A32C": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10100", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A012", + "Spec Code": "SRH3N", + "Ordering Code": "BXC8070110100", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKG": "PCN\n |\n MDDS", + "99A00J": "PCN\n |\n MDDS", + "99A012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-10100E", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX1", + "Spec Code": "SRH6E", + "Ordering Code": "CM8070104423605", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10100T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKK", + "Spec Code": "SRH3Q", + "Ordering Code": "CM8070104291412", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-10100TE", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999VX2", + "Spec Code": "SRH6F", + "Ordering Code": "CM8070104423707", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999VX2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10300", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A011", + "Spec Code": "SRH3J", + "Ordering Code": "BXC8070110300", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKA": "PCN\n |\n MDDS", + "99A00G": "PCN\n |\n MDDS", + "99A011": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10300T", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015B", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999TKD", + "Spec Code": "SRH3L", + "Ordering Code": "CM8070104291212", + "Shipping Media": "TRAY", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TKD": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-10320", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "3.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "41.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9BC8", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1200", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A010", + "Spec Code": "SRH3G", + "Ordering Code": "BXC8070110320", + "Shipping Media": "BOX", + "Stepping": "G1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999TK4": "PCN\n |\n MDDS", + "99A00F": "PCN\n |\n MDDS", + "99A010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Comet Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110U", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Description": "Refer to datasheet for details on TDP spec and LPDDR support differences.", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666, LPDDR3-2133, LPDDR4-2933", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "45.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x9B41/0x9BCA/0x9BCC", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999X7T", + "Spec Code": "SRJ7V", + "Ordering Code": "FJ8070104500300", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X7T": "PCN\n |\n MDDS", + "999K4G": "PCN", + "999LHD": "PCN\n |\n MDDS", + "999K4F": "PCN\n |\n MDDS" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "i3-10110Y", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.00 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "7 W", + "Configurable TDP-up Base Frequency": "1.50 GHz", + "Configurable TDP-up": "9 W", + "Configurable TDP-down Base Frequency": "700 MHz", + "Configurable TDP-down": "5.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-2133, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.33 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "3840 x 2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840 x 2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x87CA", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "UTFCBGA1377", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "26.5mm x 18.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K45", + "Spec Code": "SRGKU", + "Ordering Code": "FJ8068404190521", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999K45": "PCN" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1000G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A58", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1000G4", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "9 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A5C", + "PCI Express Revision": "3.0", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "26.5 mm x 18.5 mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "10th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Ice Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1005G1", + "Status": "Launched", + "Launch Date": "Q3'19", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4-3733", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "58.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 10th Gen Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "4096 x 2304@60Hz", + "Max Resolution (DP)‡": "5120 x 3200@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "5120 x 3200@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.6", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x8A56", + "PCI Express Revision": "3.0", + "Sockets Supported": "FCBGA1526", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "50mm x 25mm", + "Intel® Gaussian & Neural Accelerator": "1.0", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999K24", + "Spec Code": "SRGKF", + "Ordering Code": "FJ8068904310007", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999K24": "PCN\n |\n MDDS", + "999H1Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100E", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMT", + "Spec Code": "SRGQY", + "Ordering Code": "CM8068404404829", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999JAL": "PCN\n |\n MDDS", + "999LMT": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100HL", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F0J", + "Spec Code": "SRFEK", + "Ordering Code": "CL8068404165400", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999F0J": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-9100TE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2160@30Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E98", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999LMZ", + "Spec Code": "SRGR0", + "Ordering Code": "CM8068404404629", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999LMZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9100", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX2", + "Spec Code": "SRCZV", + "Ordering Code": "BXC80684I39100", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979139": "PCN\n |\n MDDS", + "999FRK": "PCN\n |\n MDDS", + "999FX2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9100F", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F3N", + "Spec Code": "SRF6N", + "Ordering Code": "BXC80684I39100F", + "Shipping Media": "BOX", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999APT": "PCN", + "999J4X": "PCN", + "999J51": "PCN", + "999A76": "PCN\n |\n MDDS", + "999F3M": "PCN\n |\n MDDS", + "999F3N": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9100T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979143", + "Spec Code": "SRCZX", + "Ordering Code": "CM8068403377425", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979143": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9300", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.30 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX1", + "Spec Code": "SRCZU", + "Ordering Code": "BXC80684I39300", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979136": "PCN\n |\n MDDS", + "999FRJ": "PCN\n |\n MDDS", + "999FX1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9300T", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "979141", + "Spec Code": "SRCZW", + "Ordering Code": "CM8068403377222", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979141": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9320", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.40 GHz", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX3", + "Spec Code": "SRF7X", + "Ordering Code": "BXC80684I39320", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999APV": "PCN\n |\n MDDS", + "999FRL": "PCN\n |\n MDDS", + "999FX3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9350K", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999FX0", + "Spec Code": "SRCZT", + "Ordering Code": "BXC80684I39350K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "979134": "PCN\n |\n MDDS", + "999FRH": "PCN\n |\n MDDS", + "999FX0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "9th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-9350KF", + "Status": "Launched", + "Launch Date": "Q1'19", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "4.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.60 GHz", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999F4R", + "Spec Code": "SRF7V", + "Ordering Code": "BXC80684I3935KF", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "999APR": "PCN", + "999F4L": "PCN\n |\n MDDS", + "999F4R": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8140U", + "Status": "Discontinued", + "Launch Date": "Q4'19", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s OPI", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA9", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999L21", + "Spec Code": "SRGMN", + "Ordering Code": "FH8068404208005", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999L21": "PCN" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-8145UE", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Included Items": "Premium PCH", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "1.60 GHz", + "Configurable TDP-down": "12.5 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "Execution Units": "23", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46 x 24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999DR4", + "Spec Code": "SRFDT", + "Ordering Code": "CL8068404149204", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999DR4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8100B", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E9B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "981451", + "Spec Code": "SRDEC", + "Ordering Code": "CL8068404111901", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "981451": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8100H", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "45 W", + "Configurable TDP-down Base Frequency": "2.60 GHz", + "Configurable TDP-down": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2666", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963727", + "Spec Code": "SR3Z7", + "Ordering Code": "CL8068403359228", + "Shipping Media": "TRAY", + "Stepping": "U0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963727": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8100T", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963660", + "Spec Code": "SR3Y8", + "Ordering Code": "CM8068403377415", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963660": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8109U", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "1.90 GHz", + "Configurable TDP-down": "20 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 655", + "Graphics Base Frequency": "300 MHz", + "Graphics Burst Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "128 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA5", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "975758", + "Spec Code": "SRCUT", + "Ordering Code": "FH8068403419433", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "975758": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8300", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "62 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "974959", + "Spec Code": "SR3XY", + "Ordering Code": "BX80684I38300", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963643": "PCN\n |\n MDDS", + "974959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8300T", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "82°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963646", + "Spec Code": "SR3Y1", + "Ordering Code": "CM8068403377212", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "963646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8130U", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "963178", + "Spec Code": "SR3W0", + "Ordering Code": "FJ8067703282227", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "963178": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8100", + "Status": "Launched", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91/x92", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961084", + "Spec Code": "SR3N5", + "Ordering Code": "BXC80684I38100", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960012": "PCN\n |\n MDDS", + "961060": "PCN\n |\n MDDS", + "961084": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Coffee Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-8350K", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "91 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® UHD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3E91", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961083", + "Spec Code": "SR3N4", + "Ordering Code": "BXC80684I38350K", + "Shipping Media": "BOX", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "960011": "PCN\n |\n MDDS", + "961059": "PCN\n |\n MDDS", + "961083": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7020U", + "Status": "Launched", + "Launch Date": "Q2'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356, FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "961968", + "Spec Code": "SR3TK", + "Ordering Code": "FJ8067702739769", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959164": "PCN\n |\n MDDS", + "960019": "PCN\n |\n MDDS", + "961968": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7130U", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "958406", + "Spec Code": "SR3JY", + "Ordering Code": "FJ8067702739765", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "958406": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7100", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954811", + "Spec Code": "SR35C", + "Ordering Code": "BX80677I37100", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954033": "PCN\n |\n MDDS", + "954811": "PCN\n |\n MDDS", + "954819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-7100E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953943", + "Spec Code": "SR34V", + "Ordering Code": "CL8067702999007", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953943": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100H", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952960", + "Spec Code": "SR32T", + "Ordering Code": "CL8067702870511", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7100T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.40 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955327", + "Spec Code": "SR35P", + "Ordering Code": "BXC80677I37100T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954047": "PCN\n |\n MDDS", + "955325": "PCN\n |\n MDDS", + "955327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7101E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L-1600, DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952995", + "Spec Code": "SR32Z", + "Ordering Code": "CM8067702867060", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7101TE", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR3L-1600, DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "TJUNCTION": "88°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "952996", + "Spec Code": "SR330", + "Ordering Code": "CM8067702867061", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "952996": "MDDS", + "955013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-7102E", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16,2x8,1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953944", + "Spec Code": "SR34W", + "Ordering Code": "CL8067702999106", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "953944": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7167U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Plus Graphics 650", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@30Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7300", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954809", + "Spec Code": "SR359", + "Ordering Code": "BX80677I37300", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954023": "PCN\n |\n MDDS", + "954809": "PCN\n |\n MDDS", + "954817": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7300T", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Configurable TDP-down Base Frequency": "2.50 GHz", + "Configurable TDP-down": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TJUNCTION": "92°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "955326", + "Spec Code": "SR35M", + "Ordering Code": "BXC80677I37300T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954045": "PCN\n |\n MDDS", + "955324": "PCN\n |\n MDDS", + "955326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7320", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954808", + "Spec Code": "SR358", + "Ordering Code": "BX80677I37320", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954022": "PCN\n |\n MDDS", + "954808": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-7350K", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Included Items": "Please note: The boxed product does not include a fan or heat sink", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "4.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "# of QPI Links": "0", + "TDP": "60 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133/2400, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 630", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015D (130W)", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "954818", + "Spec Code": "SR35B", + "Ordering Code": "BXC80677I37350K", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "954030": "PCN\n |\n MDDS", + "954810": "PCN\n |\n MDDS", + "954818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6006U", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "950664", + "Spec Code": "SR2UW", + "Ordering Code": "FJ8066201931106", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "950664": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6157U", + "Status": "Discontinued", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951298", + "Spec Code": "SR2XA", + "Ordering Code": "FJ8066202498907", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951298": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6098P", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB", + "Bus Speed": "8 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 510", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "ox1902", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "948520", + "Spec Code": "SR2NN", + "Ordering Code": "BXC80662I36098P", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "948062": "PCN", + "948517": "PCN\n |\n MDDS", + "948520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6100E", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944045", + "Spec Code": "SR2DV", + "Ordering Code": "CL8066201939604", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944045": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6100TE", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "947268", + "Spec Code": "SR2LS", + "Ordering Code": "CM8066201938603", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "947268": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Embedded", + "Processor Number": "i3-6102E", + "Status": "Launched", + "Launch Date": "Q4'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944050", + "Spec Code": "SR2DX", + "Ordering Code": "CL8066202400105", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944050": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6100", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945918", + "Spec Code": "SR2HG", + "Ordering Code": "BXC80662I36100", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945208": "PCN\n |\n MDDS", + "945911": "PCN\n |\n MDDS", + "945918": "PCN" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100H", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191B", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1440", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm x 28mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944369", + "Spec Code": "SR2FR", + "Ordering Code": "CL8066202194634", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "944369": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6100T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "FHS Part #E98290-001", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945917", + "Spec Code": "SR2HE", + "Ordering Code": "BXC80662I36100T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945206": "PCN", + "945910": "PCN\n |\n MDDS", + "945917": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6100U", + "Status": "Launched", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 520", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944334", + "Spec Code": "SR2EU", + "Ordering Code": "FJ8066201931104", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-6167U", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "28 W", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 550", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "eDRAM": "64 MB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1927", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946152", + "Spec Code": "SR2JF", + "Ordering Code": "FJ8066202498901", + "Shipping Media": "TRAY", + "Stepping": "K1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "946152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6300", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945914", + "Spec Code": "SR2HA", + "Ordering Code": "BXC80662I36300", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945193": "PCN", + "945908": "PCN\n |\n MDDS", + "945914": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6300T", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E98290", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015A (35W)", + "TCASE": "66°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945909", + "Spec Code": "SR2HD", + "Ordering Code": "BX80662I36300T", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945205": "PCN", + "945909": "PCN\n |\n MDDS", + "945915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Desktop", + "Processor Number": "i3-6320", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Included Items": "Thermal Solution - E97379", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "8 GT/s", + "TDP": "51 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-1866/2133, DDR3L-1333/1600 @ 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 530", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "64 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1912", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1151", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2015C (65W)", + "TCASE": "65°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "946089", + "Spec Code": "SR2H9", + "Ordering Code": "BX80662I36320", + "Shipping Media": "BOX", + "Stepping": "S0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "945192": "PCN", + "946089": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5015U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939369", + "Spec Code": "SR245", + "Ordering Code": "FH8065801884007", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939369": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5020U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939364", + "Spec Code": "SR240", + "Ordering Code": "FH8065801620407", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5005U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939368", + "Spec Code": "SR244", + "Ordering Code": "FH8065801884006", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939368": "PCN\n |\n MDDS", + "940707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5157U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "23 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1600/1866", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® Iris® Graphics 6100", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162B", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939674", + "Spec Code": "SR26M", + "Ordering Code": "FH8065802064212", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939674": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4170", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943022", + "Spec Code": "SR1PL", + "Ordering Code": "BX80646I34170", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931903": "PCN\n |\n MDDS", + "943018": "PCN\n |\n MDDS", + "943022": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4170T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932978", + "Spec Code": "SR1TC", + "Ordering Code": "CM8064601483551", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932978": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4370T", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932976", + "Spec Code": "SR1TB", + "Ordering Code": "CM8064601481979", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4160", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "937629", + "Spec Code": "SR1PK", + "Ordering Code": "BXC80646I34160", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931900": "PCN\n |\n MDDS", + "937628": "PCN\n |\n MDDS", + "937629": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4160T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "945262", + "Spec Code": "SR1PH", + "Ordering Code": "BXC80646I34160T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931898": "PCN\n |\n MDDS", + "945262": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4360T", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931889", + "Spec Code": "SR1PB", + "Ordering Code": "CM8064601481958", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931889": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4370", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "943844", + "Spec Code": "SR1PD", + "Ordering Code": "BXC80646I34370", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931891": "PCN\n |\n MDDS", + "937627": "PCN\n |\n MDDS", + "943844": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4150", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934922", + "Spec Code": "SR1PJ", + "Ordering Code": "BX80646I34150", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931899": "PCN\n |\n MDDS", + "934918": "PCN\n |\n MDDS", + "934922": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4150T", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "940388", + "Spec Code": "SR1PG", + "Ordering Code": "BXC80646I34150T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931897": "PCN\n |\n MDDS", + "940388": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4340TE", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "# of QPI Links": "0", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932855", + "Spec Code": "SR1T5", + "Ordering Code": "CM8064601618605", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4350", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "07/14/2017", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934993", + "Spec Code": "SR1PF", + "Ordering Code": "BX80646I34350", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931896": "PCN\n |\n MDDS", + "934993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4350T", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931888", + "Spec Code": "SR1PA", + "Ordering Code": "CM8064601481957", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931888": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4360", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "934992", + "Spec Code": "SR1PC", + "Ordering Code": "BX80646I34360", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931890": "PCN\n |\n MDDS", + "934992": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4025U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930624", + "Spec Code": "SR1EQ", + "Ordering Code": "CL8064701553401", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930624": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4030U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930622", + "Spec Code": "SR1EN", + "Ordering Code": "CL8064701552900", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4030Y", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930491", + "Spec Code": "SR1DD", + "Ordering Code": "CL8064701570500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930491": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4110E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932849", + "Spec Code": "SR1T2", + "Ordering Code": "CL8064701589005", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4110M", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "Scalability": "1S Only", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931065", + "Spec Code": "SR1L7", + "Ordering Code": "CW8064701486708", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931065": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4112E", + "Status": "Launched", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "932845", + "Spec Code": "SR1T0", + "Ordering Code": "CL8064701588505", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "932845": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4120U", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930623", + "Spec Code": "SR1EP", + "Ordering Code": "CL8064701553300", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930623": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4000M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930782", + "Spec Code": "SR1HC", + "Ordering Code": "CW8064701486802", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "930782": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4005U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 1x4, 1x2", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930619", + "Spec Code": "SR1EK", + "Ordering Code": "CL8064701478404", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930619": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4012Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "4.5 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930343", + "Spec Code": "SR1C7", + "Ordering Code": "CL8064701573500", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930343": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4020Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930489", + "Spec Code": "SR1DC", + "Ordering Code": "CL8064701512402", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "930489": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4100E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929207", + "Spec Code": "SR17N", + "Ordering Code": "CL8064701484002", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929207": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4100M", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "37 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Max Resolution (HDMI)‡": "3840x2160@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "2880x1800@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 or 2x8 or 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA946", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm x 4.7mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930781", + "Spec Code": "SR1HB", + "Ordering Code": "CW8064701486707", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930781": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4102E", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "400 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/VGA", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1364", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 32mm x 1.6mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929210", + "Spec Code": "SR17R", + "Ordering Code": "CL8064701528601", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929210": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4130", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931867", + "Spec Code": "SR1NP", + "Ordering Code": "BXC80646I34130", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931588": "PCN\n |\n MDDS", + "931865": "PCN\n |\n MDDS", + "931867": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4130T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x41E", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4 C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931866", + "Spec Code": "SR1NN", + "Ordering Code": "BXC80646I34130T", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931587": "PCN\n |\n MDDS", + "931864": "PCN", + "931866": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4330", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931873", + "Spec Code": "SR1NM", + "Ordering Code": "BXC80646I34330", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931586": "PCN\n |\n MDDS", + "931871": "PCN\n |\n MDDS", + "931873": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4330T", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "66.4 C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931584", + "Spec Code": "SR1NK", + "Ordering Code": "CM8064601481930", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931584": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Embedded", + "Processor Number": "i3-4330TE", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "View now", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "1.7 GB", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Scalability": "1S Only", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8/2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013A", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929227", + "Spec Code": "SR180", + "Ordering Code": "CM8064601484402", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "929227": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Desktop", + "Processor Number": "i3-4340", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "54 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3-1333/1600, DDR3L-1333/1600 @ 1.5V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4600", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI/DVI/VGA", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "1920x1200@60Hz", + "DirectX* Support": "11.1/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x412", + "Scalability": "1S Only", + "PCI Express Revision": "Up to 3.0", + "PCI Express Configurations ‡": "Up to 1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1150", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "PCG 2013C", + "TCASE": "66.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931872", + "Spec Code": "SR1NL", + "Ordering Code": "BXC80646I34340", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "931585": "PCN\n |\n MDDS", + "931870": "PCN", + "931872": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929013", + "Spec Code": "SR16Q", + "Ordering Code": "CL8064701478202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010Y", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "6 W", + "TDP": "11.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4200", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2561x1600@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x402", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929318", + "Spec Code": "SR18F", + "Ordering Code": "CL8064701512503", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4100U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x416", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929012", + "Spec Code": "SR16P", + "Ordering Code": "CL8064701476302", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929012": "PCN\n |\n MDDS" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4158U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "28 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Graphics 5100", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA2E", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929309", + "Spec Code": "SR18B", + "Ordering Code": "CL8064701526902", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929309": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Amber Lake Y", + "Vertical Segment": "Mobile", + "Processor Number": "m3-8100Y", + "Status": "Launched", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "8 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "33.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591C", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980672", + "Spec Code": "SRD23", + "Ordering Code": "HE8067702739859", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "980672": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-7Y32", + "Status": "Launched", + "Launch Date": "Q2'17", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.75 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953357", + "Spec Code": "SR346", + "Ordering Code": "HE8067702739830", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953357": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-7Y30", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.60 GHz", + "Configurable TDP-up": "7 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.75 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 615", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x591E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20.5mm X 16.5mm", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953358", + "Spec Code": "SR347", + "Ordering Code": "HE8067702739824", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953358": "PCN\n |\n MDDS", + "951961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M3-6Y30", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.20 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.8 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944326", + "Spec Code": "SR2EN", + "Ordering Code": "HE8066201930521", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M5-6Y54", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944325", + "Spec Code": "SR2EM", + "Ordering Code": "HE8066201930524", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944325": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M5-6Y57", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944320", + "Spec Code": "SR2EG", + "Ordering Code": "HE8066201922876", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944320": "PCN\n |\n MDDS" + }, + { + "Product Collection": "6th Generation Intel® Core™ m Processors", + "Code Name": "Products formerly Skylake", + "Vertical Segment": "Mobile", + "Processor Number": "M7-6Y75", + "Status": "Discontinued", + "Launch Date": "Q3'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "4.5 W", + "Configurable TDP-up": "7 W", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "29.8 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 515", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096@2304@24Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "3840x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x191E", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "10", + "Sockets Supported": "FCBGA1515", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "20mm X 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "944321", + "Spec Code": "SR2EH", + "Ordering Code": "HE8066201922875", + "Shipping Media": "TRAY", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "944321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10c", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.00 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939310", + "Spec Code": "SR23C", + "Ordering Code": "FH8065802062002", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939310": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y31", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "900 MHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.10 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939314", + "Spec Code": "SR23G", + "Ordering Code": "FH8065802061902", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939314": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y51", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.30 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939327", + "Spec Code": "SR23L", + "Ordering Code": "FH8065802061802", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939327": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y71", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB", + "Scenario Design Power (SDP)": "3.5 W", + "TDP": "4.5 W", + "Configurable TDP-up Base Frequency": "1.40 GHz", + "Configurable TDP-up": "6 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "3.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1234", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939331", + "Spec Code": "SR23Q", + "Ordering Code": "FH8065802061602", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939331": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y10a", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "LPDDR3 1333/1600; DDR3L/DDR3L-RS 1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1 (6), x2 (4), x4 (3)", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95 C", + "Package Size": "30mm x 16.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ M Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "5Y70", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "TDP": "4.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5300", + "Graphics Base Frequency": "100 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "2560x1600@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x161E", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Max CPU Configuration": "1", + "TJUNCTION": "95°C", + "Package Size": "30mm x 16.5mm x 1.05mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lakefield", + "Vertical Segment": "Mobile", + "Processor Number": "i3-L13G4", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Total Cores": "5", + "Total Threads": "5", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "800 MHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "Scenario Design Power (SDP)": "7 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR4X 4267 POP Memory", + "Maximum Memory Speed": "4267 MHz", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Execution Units": "48", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "DX12", + "OpenGL* Support": "OpenGL4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "9941", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x2, 1x2 + 2x1", + "Max # of PCI Express Lanes": "6", + "Sockets Supported": "FC-CSP1016", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "12mm x 12mm", + "Intel® Deep Learning Boost (Intel® DL Boost)": "No", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0GH", + "Spec Code": "SRJGC", + "Ordering Code": "NW8069103800806", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999V1X": "PCN", + "99A0GH": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lakefield", + "Vertical Segment": "Mobile", + "Processor Number": "i5-L16G7", + "Status": "Launched", + "Launch Date": "Q2'20", + "Lithography": "10 nm", + "Total Cores": "5", + "Total Threads": "5", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "4 MB", + "Bus Speed": "4 GT/s", + "Scenario Design Power (SDP)": "7 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "LPDDR4X 4267 POP Memory", + "Maximum Memory Speed": "4267 MHz", + "Max Memory Bandwidth": "34 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Execution Units": "64", + "4K Support": "Yes, at 60Hz", + "DirectX* Support": "DX12", + "OpenGL* Support": "OpenGL4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "9940", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x2, 1x2 + 2x1", + "Max # of PCI Express Lanes": "6", + "Sockets Supported": "FC-CSP1016", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "12mm x 12mm", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Memory Protection Extensions (Intel® MPX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A0GF", + "Spec Code": "SRJGA", + "Ordering Code": "NW8069103800804", + "Stepping": "B3", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "999V1T": "PCN", + "99A0GF": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "i3-3115C", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/DDR3L 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 & 1x4, 2x8 & 1x4 or 1x8 & 3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCBGA1284", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "930889", + "Spec Code": "SR1J2", + "Ordering Code": "CN8063801307703", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "930889": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3340", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931501", + "Spec Code": "SR0YZ", + "Ordering Code": "BX80637I53340", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923857": "PCN\n |\n MDDS", + "931499": "PCN\n |\n MDDS", + "931501": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3340S", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "931500", + "Spec Code": "SR0YH", + "Ordering Code": "BX80637I53340S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923835": "PCN\n |\n MDDS", + "931500": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3245", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929495", + "Spec Code": "SR0YL", + "Ordering Code": "BX80637I33245", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923838": "PCN\n |\n MDDS", + "929495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3250", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929486", + "Spec Code": "SR0YX", + "Ordering Code": "BX80637I33250", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923854": "PCN\n |\n MDDS", + "929482": "PCN", + "929486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3250T", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923853", + "Spec Code": "SR0YW", + "Ordering Code": "CM8063701391800", + "Shipping Media": "TRAY", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923853": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3130M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923704", + "Spec Code": "SR0XD", + "Ordering Code": "AV8063801111900", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923704": "PCN\n |\n MDDS", + "923703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3210", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926166", + "Spec Code": "SR0YY", + "Ordering Code": "BX80637I33210", + "Shipping Media": "BOX", + "Stepping": "P0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923855": "PCN\n |\n MDDS", + "926157": "PCN", + "926166": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3227U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923708", + "Spec Code": "SR0XF", + "Ordering Code": "AV8063801119500", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923708": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3230M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923667", + "Spec Code": "SR0WX", + "Ordering Code": "AV8063801110901", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3230M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923668", + "Spec Code": "SR0WY", + "Ordering Code": "AW8063801208001", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923668": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3337U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923714", + "Spec Code": "SR0XL", + "Ordering Code": "AV8063801129900", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923714": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3340M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927186", + "Spec Code": "SR0XA", + "Ordering Code": "BX80638I53340M", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923702": "PCN\n |\n MDDS", + "923701": "PCN\n |\n MDDS", + "927186": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3380M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "927185", + "Spec Code": "SR0X7", + "Ordering Code": "BX80638I53380M", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923700": "PCN\n |\n MDDS", + "923691": "PCN\n |\n MDDS", + "927185": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3437U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923705", + "Spec Code": "SR0XE", + "Ordering Code": "AV8063801119300", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923705": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3537U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923709", + "Spec Code": "SR0XG", + "Ordering Code": "AV8063801119700", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923709": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3540M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923699", + "Spec Code": "SR0X8", + "Ordering Code": "AV8063801109800", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923699": "PCN\n |\n MDDS", + "923690": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3687U", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923711", + "Spec Code": "SR0XH", + "Ordering Code": "AV8063801119903", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923711": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3229Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926930", + "Spec Code": "SR12P", + "Ordering Code": "AV8063801378000", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "926930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3339Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.00 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926933", + "Spec Code": "SR12S", + "Ordering Code": "AV8063801433100", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926933": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3439Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926931", + "Spec Code": "SR12Q", + "Ordering Code": "AV8063801378103", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926931": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3689Y", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB", + "Bus Speed": "5 GT/s", + "Scenario Design Power (SDP)": "7 W", + "TDP": "13 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "926932", + "Spec Code": "SR12R", + "Ordering Code": "AV8063801378203", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "926932": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2348M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2375M", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921892", + "Spec Code": "SR0U4", + "Ordering Code": "AV8062701313100", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921892": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3120M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921876", + "Spec Code": "SR0TX", + "Ordering Code": "AW8063801111700", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921876": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3630QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922209", + "Spec Code": "SR0UX", + "Ordering Code": "AW8063801106200", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922209": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3632QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3632QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922212", + "Spec Code": "SR0V0", + "Ordering Code": "AW8063801152800", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922212": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3635QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3740QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923336", + "Spec Code": "SR0UV", + "Ordering Code": "BX80638I73740QM", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922207": "PCN\n |\n MDDS", + "923336": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3840QM", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922205", + "Spec Code": "SR0UT", + "Ordering Code": "AW8063801103800", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "922205": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3220", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921364", + "Spec Code": "SR0RG", + "Ordering Code": "BXC80637I33220", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920964": "PCN\n |\n MDDS", + "921327": "PCN\n |\n MDDS", + "921364": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3220T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921366", + "Spec Code": "SR0RE", + "Ordering Code": "BXC80637I33220T", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920955": "PCN\n |\n MDDS", + "921333": "PCN\n |\n MDDS", + "921366": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3225", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921375", + "Spec Code": "SR0RF", + "Ordering Code": "BX80637I33225", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920962": "PCN\n |\n MDDS", + "921363": "PCN", + "921375": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3240", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "65.3°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921334", + "Spec Code": "SR0RH", + "Ordering Code": "BXC80637I33240", + "Shipping Media": "BOX", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920965": "PCN\n |\n MDDS", + "921288": "PCN\n |\n MDDS", + "921334": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-3240T", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011A", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Secure Key": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920967", + "Spec Code": "SR0RK", + "Ordering Code": "CM8063701194400", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "920967": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3330", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921407", + "Spec Code": "SR0RQ", + "Ordering Code": "BX80637I53330", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921119": "PCN\n |\n MDDS", + "921407": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3330S", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921120", + "Spec Code": "SR0RR", + "Ordering Code": "CM8063701159804", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921120": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3350P", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "69 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.23 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923748", + "Spec Code": "SR0WS", + "Ordering Code": "BX80637I53350P", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "923142": "PCN\n |\n MDDS", + "923572": "PCN\n |\n MDDS", + "923748": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2328M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921411", + "Spec Code": "SR0TC", + "Ordering Code": "FF8062701275100", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921411": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2365M", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921891", + "Spec Code": "SR0U3", + "Ordering Code": "AV8062701313000", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "921891": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-3120ME", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC support on BGA package only", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "No", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923001", + "Spec Code": "SR0WM", + "Ordering Code": "AW8063801117902", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923001": "PCN\n |\n MDDS", + "923000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-3217UE", + "Status": "Launched", + "Launch Date": "Q3'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "923002", + "Spec Code": "SR0WN", + "Ordering Code": "AV8063801149502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "923002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2377M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915521", + "Spec Code": "SR0CW", + "Ordering Code": "AV8062701048004", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915521": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3110M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "90C (PGA); 105C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921352", + "Spec Code": "SR0T4", + "Ordering Code": "AW8063801211101", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919700": "PCN\n |\n MDDS", + "919699": "PCN\n |\n MDDS", + "921352": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i5-3610ME", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Description": "ECC memory support only on BGA package", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mmx 37.5mm PGA", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920312", + "Spec Code": "SR0QJ", + "Ordering Code": "AW8063801115901", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920313": "PCN\n |\n MDDS", + "920312": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3517UE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Product Brief": "yes", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921368", + "Spec Code": "SR0T6", + "Ordering Code": "AV8063801149402", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921368": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3555LE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3/DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "550 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "No", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921365", + "Spec Code": "SR0T5", + "Ordering Code": "AV8063801116903", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921365": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3210M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919698", + "Spec Code": "SR0N0", + "Ordering Code": "AV8063801032502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919698": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3210M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919697", + "Spec Code": "SR0MZ", + "Ordering Code": "AW8063801032301", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3317U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919706", + "Spec Code": "SR0N8", + "Ordering Code": "AV8063801058002", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919706": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3320M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921380", + "Spec Code": "SR0MX", + "Ordering Code": "BX80638I53320M", + "Shipping Media": "BOX", + "Stepping": "L2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919672": "PCN\n |\n MDDS", + "919671": "PCN\n |\n MDDS", + "921380": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3360M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921379", + "Spec Code": "SR0MV", + "Ordering Code": "BX80638I53360M", + "Shipping Media": "BOX", + "Stepping": "L2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919670": "PCN\n |\n MDDS", + "919669": "PCN\n |\n MDDS", + "921379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-3427U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919705", + "Spec Code": "SR0N7", + "Ordering Code": "AV8063801057801", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919705": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921372", + "Spec Code": "SR0T8", + "Ordering Code": "CM8063701093302", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921372": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921374", + "Spec Code": "SR0TA", + "Ordering Code": "CM8063701094000", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921374": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3470T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "65.0", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920966", + "Spec Code": "SR0RJ", + "Ordering Code": "CM8063701159502", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920966": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3475S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919996", + "Spec Code": "SR0PP", + "Ordering Code": "CM8063701212000", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919996": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "922461", + "Spec Code": "SR0T7", + "Ordering Code": "BX80637I53570", + "Shipping Media": "BOX", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921371": "PCN\n |\n MDDS", + "922461": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "921373", + "Spec Code": "SR0T9", + "Ordering Code": "CM8063701093901", + "Shipping Media": "TRAY", + "Stepping": "N0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "921373": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3517U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0mm x 24.0mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919704", + "Spec Code": "SR0N6", + "Ordering Code": "AV8063801057605", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919704": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3520M", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919668", + "Spec Code": "SR0MU", + "Ordering Code": "AV8063801028803", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919668": "PCN\n |\n MDDS", + "919667": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3667U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919703", + "Spec Code": "SR0N5", + "Ordering Code": "AV8063801057405", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919703": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gladden", + "Vertical Segment": "Embedded", + "Processor Number": "i3-2115C", + "Status": "Launched", + "Launch Date": "Q2'12", + "Use Conditions": "Communications", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16 1x4 or 2x8 1x4 or 1x8 3x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1284", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5 mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919918", + "Spec Code": "SR0NV", + "Ordering Code": "AV8062701064700", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919918": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3450", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920877", + "Spec Code": "SR0PF", + "Ordering Code": "BXC80637I53450", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919972": "PCN\n |\n MDDS", + "920526": "PCN\n |\n MDDS", + "920877": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3450S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920531", + "Spec Code": "SR0P2", + "Ordering Code": "BX80637I53450S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919959": "PCN\n |\n MDDS", + "920531": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3550", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920872", + "Spec Code": "SR0P0", + "Ordering Code": "BXC80637I53550", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919957": "PCN\n |\n MDDS", + "920521": "PCN\n |\n MDDS", + "920872": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3550S", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919960", + "Spec Code": "SR0P3", + "Ordering Code": "CM8063701095203", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919960": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570K", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920515", + "Spec Code": "SR0PM", + "Ordering Code": "BX80637I53570K", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919978": "PCN\n |\n MDDS", + "920515": "PCN\n |\n MDDS", + "920865": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-3570T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2500", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x152", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919958", + "Spec Code": "SR0P1", + "Ordering Code": "CM8063701094903", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3610QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32.23 GB", + "Memory Types": "DDR3 1067/1333/1600, DDR3L 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0 (16), 2.0 (1x4 lanes)", + "PCI Express Configurations ‡": "1x16 2x8 1X8 2x4 1x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5mmx 37.5mm PGA", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919875", + "Spec Code": "SR0NP", + "Ordering Code": "AW8063801118306", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3610QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919646", + "Spec Code": "SR0MN", + "Ordering Code": "AW8063801013511", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919646": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3612QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.11 GB", + "Memory Types": "DDR3/DDR3L 1067/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm (BGA 1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919819", + "Spec Code": "SR0ND", + "Ordering Code": "AV8063801149203", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919819": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3612QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919652", + "Spec Code": "SR0MR", + "Ordering Code": "AV8063801130704", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919652": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3612QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919651", + "Spec Code": "SR0MQ", + "Ordering Code": "AW8063801130504", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919651": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-3615QE", + "Status": "Launched", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.11 GB", + "Memory Types": "DDR3/DDR3L 1067/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16 2x8 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "31mm x 24mm (BGA 1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "No", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919818", + "Spec Code": "SR0NC", + "Ordering Code": "AV8063801117503", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3615QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919647", + "Spec Code": "SR0MP", + "Ordering Code": "AV8063801013612", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919647": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3720QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919645", + "Spec Code": "SR0MM", + "Ordering Code": "AV8063801013210", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919645": "PCN\n |\n MDDS", + "919644": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "TJUNCTION": "105°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920501", + "Spec Code": "SR0PK", + "Ordering Code": "BX80637I73770", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919976": "PCN\n |\n MDDS", + "920501": "PCN\n |\n MDDS", + "920818": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770K", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "77 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011D", + "TCASE": "67.4°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920492", + "Spec Code": "SR0PL", + "Ordering Code": "BX80637I73770K", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919977": "PCN\n |\n MDDS", + "920492": "PCN\n |\n MDDS", + "920800": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770S", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011C", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920503", + "Spec Code": "SR0PN", + "Ordering Code": "BX80637I73770S", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919995": "PCN\n |\n MDDS", + "920503": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-3770T", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x162", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "up to 1x16, 2x8, 1x8 & 2x4", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "Thermal Solution Specification": "2011B", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919997", + "Spec Code": "SR0PQ", + "Ordering Code": "CM8063701212200", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919997": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-3820QM", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919643", + "Spec Code": "SR0MK", + "Ordering Code": "AV8063801012807", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "919643": "PCN\n |\n MDDS", + "919642": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2380P", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920963", + "Spec Code": "SR0G2", + "Ordering Code": "BXC80623I52380P", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917717": "PCN", + "920960": "PCN\n |\n MDDS", + "920963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2450P", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920961", + "Spec Code": "SR0G1", + "Ordering Code": "BX80623I52450P", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "917715": "PCN", + "920961": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2550K", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "No", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "920954", + "Spec Code": "SR0QH", + "Ordering Code": "BX80623I52550K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "920237": "PCN", + "920954": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2370M", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916670", + "Spec Code": "SR0DP", + "Ordering Code": "FF8062700996006", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916670": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2450M", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915343", + "Spec Code": "SR0CH", + "Ordering Code": "FF8062700995606", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "910489": "MDDS", + "915343": "PCN\n |\n MDDS", + "911106": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2700K", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "3.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919177", + "Spec Code": "SR0DG", + "Ordering Code": "BX80623I72700K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "916537": "PCN", + "919177": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2350M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916669", + "Spec Code": "SR0DN", + "Ordering Code": "FF8062700995906", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "916669": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2367M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915520", + "Spec Code": "SR0CV", + "Ordering Code": "AV8062701047904", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "915520": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2430M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910486", + "Spec Code": "SR04W", + "Ordering Code": "FF8062700995505", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2435M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911105", + "Spec Code": "SR06Y", + "Ordering Code": "AV8062700995706", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911105": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2670QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5 (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910247", + "Spec Code": "SR02N", + "Ordering Code": "FF8062701065500", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2675QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910242", + "Spec Code": "SR02S", + "Ordering Code": "AV8062701065600", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910242": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2120T", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917963", + "Spec Code": "SR060", + "Ordering Code": "BXC80623I32120T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910593": "PCN", + "917721": "PCN\n |\n MDDS", + "917963": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2125", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917757", + "Spec Code": "SR0AY", + "Ordering Code": "BXC80623I32125", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912514": "PCN", + "917704": "PCN\n |\n MDDS", + "917757": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2130", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917807", + "Spec Code": "SR05W", + "Ordering Code": "BXC80623I32130", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910589": "PCN", + "917720": "PCN\n |\n MDDS", + "917807": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2320", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "917684", + "Spec Code": "SR02L", + "Ordering Code": "BX80623I52320", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909899": "PCN", + "917683": "PCN\n |\n MDDS", + "917684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2640M", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910455", + "Spec Code": "SR043", + "Ordering Code": "AV8062700839107", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910397": "PCN\n |\n MDDS", + "910455": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2760QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910246", + "Spec Code": "SR02W", + "Ordering Code": "FF8062701065300", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910246": "PCN\n |\n MDDS", + "910241": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2860QM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.60 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910255", + "Spec Code": "SR02X", + "Ordering Code": "FF8062701065100", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910255": "PCN\n |\n MDDS", + "910240": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2960XM", + "Status": "Discontinued", + "Launch Date": "Q4'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909772", + "Spec Code": "SR02F", + "Ordering Code": "FF8062700834603", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909772": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gulftown", + "Vertical Segment": "Desktop", + "Processor Number": "i7-980", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "3", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "68.8°C", + "Package Size": "45mm x 42.5mm", + "Processing Die Size": "239 mm2", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "916326", + "Spec Code": "SLBYU", + "Ordering Code": "BX80613I7980", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909579": "PCN\n |\n MDDS", + "916326": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2330E", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16 1x4, 2x8 1x4, 1x8 3x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910245", + "Spec Code": "SR02V", + "Ordering Code": "FF8062700849000", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910245": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2330M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.20 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910470", + "Spec Code": "SR04L", + "Ordering Code": "AV8062700846806", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910468": "PCN\n |\n MDDS", + "910470": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-2340UE", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C (BGA)", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911600", + "Spec Code": "SR074", + "Ordering Code": "AV8062700849710", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "911600": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2357M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "100C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2467M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915947", + "Spec Code": "SR0D6", + "Ordering Code": "AV8062701047504", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915947": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2557M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915517", + "Spec Code": "SR0CS", + "Ordering Code": "AV8062701047204", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915517": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2637M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.80 GHz", + "Processor Base Frequency": "1.70 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915745", + "Spec Code": "SR0D3", + "Ordering Code": "AV8062701041105", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915745": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2677M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915744", + "Spec Code": "SR0D2", + "Ordering Code": "AV8062701041005", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "915744": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2310", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.90 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915575", + "Spec Code": "SR02K", + "Ordering Code": "BX80623I52310", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909897": "PCN", + "915574": "PCN\n |\n MDDS", + "915575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2405S", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155, FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914621", + "Spec Code": "SR0BB", + "Ordering Code": "BX80623I52405S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "912781": "PCN", + "914621": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2102", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "915248", + "Spec Code": "SR05D", + "Ordering Code": "BX80623I32102", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910683": "PCN", + "915248": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2105", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q4'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "914937", + "Spec Code": "SR0BA", + "Ordering Code": "BX80623I32105", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912779": "PCN", + "914936": "PCN\n |\n MDDS", + "914937": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2312M", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "TJUNCTION": "85 C", + "Package Size": "37.5mm x 37.5mm *rPGA988B);", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "912382", + "Spec Code": "SR09S", + "Ordering Code": "FF8062701084601", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912382": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2610UE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.40 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "850 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911599", + "Spec Code": "SR079", + "Ordering Code": "AV8062700849607", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911599": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2655LE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911598", + "Spec Code": "SR078", + "Ordering Code": "AV8062700849508", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911598": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2100", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911251", + "Spec Code": "SR05C", + "Ordering Code": "BXC80623I32100", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910673": "PCN", + "911243": "PCN\n |\n MDDS", + "911251": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2100T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911250", + "Spec Code": "SR05Z", + "Ordering Code": "BXC80623I32100T", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910592": "PCN", + "911242": "PCN\n |\n MDDS", + "911250": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i3-2120", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911249", + "Spec Code": "SR05Y", + "Ordering Code": "BXC80623I32120", + "Shipping Media": "BOX", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910591": "PCN", + "911241": "PCN\n |\n MDDS", + "911249": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-2310M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "85C (PGA); 100C (BGA)", + "Package Size": "37.5mm x 37.5mm *rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910495", + "Spec Code": "SR04S", + "Ordering Code": "AV8062700999605", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910495": "PCN\n |\n MDDS", + "910494": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2390T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q3'2013", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1155", + "Max CPU Configuration": "1", + "TCASE": "65.0°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910564", + "Spec Code": "SR065", + "Ordering Code": "CM8062301002115", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910564": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2410M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mmx37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910466", + "Spec Code": "SR04G", + "Ordering Code": "AV8062700845406", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "910466": "PCN\n |\n MDDS", + "910464": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2510E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910244", + "Spec Code": "SR02U", + "Ordering Code": "FF8062700853304", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910244": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i5-2515E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911601", + "Spec Code": "SR075", + "Ordering Code": "AV8062700853208", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911601": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2520M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910460", + "Spec Code": "SR048", + "Ordering Code": "FF8062700840017", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910460": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2537M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.30 GHz", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24 mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910402", + "Spec Code": "SR03W", + "Ordering Code": "AV8062701047107", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910402": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i5-2540M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PPGA988, FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911159", + "Spec Code": "SR044", + "Ordering Code": "BX80627I52540M", + "Shipping Media": "BOX", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910458": "PCN\n |\n MDDS", + "910456": "PCN\n |\n MDDS", + "911159": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2617M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "950 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910399", + "Spec Code": "SR03T", + "Ordering Code": "AV8062701040904", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910399": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2620M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023, PPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988B); 31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910454", + "Spec Code": "SR041", + "Ordering Code": "AV8062700839009", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910396": "PCN\n |\n MDDS", + "910454": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2629M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910474", + "Spec Code": "SR04D", + "Ordering Code": "AV8062700851111", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910474": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2649M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.20 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910472", + "Spec Code": "SR04N", + "Ordering Code": "AV8062700850010", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910472": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2657M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.70 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.01 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910398", + "Spec Code": "SR03S", + "Ordering Code": "AV8062701040804", + "Shipping Media": "TRAY", + "Stepping": "J1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910398": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gulftown", + "Vertical Segment": "Desktop", + "Processor Number": "i7-990X", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45.0mm", + "Processing Die Size": "239 mm2", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911081", + "Spec Code": "SLBVZ", + "Ordering Code": "BX80613I7990X", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909572": "PCN\n |\n MDDS", + "911081": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2300", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'2012", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.10 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.10 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910682", + "Spec Code": "SR00D", + "Ordering Code": "BXC80623I52300", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909490": "PCN", + "910677": "PCN\n |\n MDDS", + "910682": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2400", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "3.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910684", + "Spec Code": "SR00Q", + "Ordering Code": "BXC80623I52400", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909492": "PCN\n |\n MDDS", + "910678": "PCN\n |\n MDDS", + "910684": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2400S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910885", + "Spec Code": "SR00S", + "Ordering Code": "BX80623I52400S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909494": "PCN", + "910885": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911288", + "Spec Code": "SR00T", + "Ordering Code": "BX80623I52500", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909496": "PCN", + "911284": "PCN\n |\n MDDS", + "911288": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500K", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "3.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910685", + "Spec Code": "SR008", + "Ordering Code": "BXC80623I52500K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909498": "PCN", + "910679": "PCN\n |\n MDDS", + "910685": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.70 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.70 GHz", + "Processor Base Frequency": "2.70 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909500", + "Spec Code": "SR009", + "Ordering Code": "CM8062300835501", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909500": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i5-2500T", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'13", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909512", + "Spec Code": "SR00A", + "Ordering Code": "CM8062301001910", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909512": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910686", + "Spec Code": "SR00B", + "Ordering Code": "BXC80623I72600", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909528": "PCN", + "910680": "PCN\n |\n MDDS", + "910686": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600K", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "3.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x112", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910681", + "Spec Code": "SR00C", + "Ordering Code": "BX80623I72600K", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909542": "PCN", + "910681": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Desktop", + "Processor Number": "i7-2600S", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'2013", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.80 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.80 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "65 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 2000", + "Graphics Base Frequency": "850 MHz", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "Device ID": "0x102", + "PCI Express Revision": "2.0", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1155", + "Max CPU Configuration": "1", + "TCASE": "69.1°C", + "Package Size": "37.5mm x 37.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "918078", + "Spec Code": "SR00E", + "Ordering Code": "BX80623I72600S", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909566": "PCN", + "918078": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2630QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5 (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910294", + "Spec Code": "SR02Y", + "Ordering Code": "FF8062700837005", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910294": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2635QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224", + "TJUNCTION": "100 C", + "Package Size": "31.0mm x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910296", + "Spec Code": "SR030", + "Ordering Code": "AV8062700837205", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910296": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2710QE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16+1x4, 2x8+1x4, 1x8+3x4", + "Max # of PCI Express Lanes": "20", + "Sockets Supported": "FCPGA988", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA988)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "910243", + "Spec Code": "SR02T", + "Ordering Code": "FF8062700841002", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "910243": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i7-2715QE", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.00 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.00 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.20 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "TJUNCTION": "100 C", + "Package Size": "31mm x 24mm (FCBGA1023)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911594", + "Spec Code": "SR076", + "Ordering Code": "AV8062700843908", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "911594": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2720QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.30 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.30 GHz", + "Processor Base Frequency": "2.20 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1224, FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909673", + "Spec Code": "SR014", + "Ordering Code": "FF8062700835817", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909673": "PCN\n |\n MDDS", + "909664": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2820QM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.40 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.40 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "Device ID": "0x116", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988, FCBGA1224", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5 x 37.5mm (rPGA988B); 31.0 x 24.0mm (BGA1224)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911079", + "Spec Code": "SR012", + "Ordering Code": "BX80627I72820QM", + "Shipping Media": "BOX", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909661": "PCN\n |\n MDDS", + "909671": "PCN\n |\n MDDS", + "911079": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i7-2920XM", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.50 GHz", + "Cache": "8 MB Intel® Smart Cache", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3 1066/1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCPGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100 C", + "Package Size": "37.5mm x 37.5mm (rPGA998)", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909762", + "Spec Code": "SR02E", + "Ordering Code": "FF8062700834406", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "909762": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Embedded", + "Processor Number": "i3-2310E", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB Intel® Smart Cache", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics 3000", + "Graphics Base Frequency": "650 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8+2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100C (BGA)", + "Package Size": "31mm x 24mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "911597", + "Spec Code": "SR077", + "Ordering Code": "AV8062700849116", + "Shipping Media": "TRAY", + "Stepping": "D2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "911597": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-390M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909956", + "Spec Code": "SLC25", + "Ordering Code": "CP80617005487AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909956": "PCN\n |\n MDDS", + "909926": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-480M", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "909958", + "Spec Code": "SLC27", + "Ordering Code": "CP80617005487AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "909958": "PCN\n |\n MDDS", + "909927": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-380UM", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908626", + "Spec Code": "SLBSL", + "Ordering Code": "CN80617005190AF", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908626": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-470UM", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.86 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908633", + "Spec Code": "SLBXP", + "Ordering Code": "CN80617005190AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908633": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-560", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908874", + "Spec Code": "SLBY2", + "Ordering Code": "BXC80616I3560", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908584": "PCN\n |\n MDDS", + "908873": "PCN\n |\n MDDS", + "908874": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i5-760", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908721", + "Spec Code": "SLBRP", + "Ordering Code": "BXC80605I5760", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "907372": "PCN\n |\n MDDS", + "908720": "PCN\n |\n MDDS", + "908721": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-370M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908000", + "Spec Code": "SLBUK", + "Ordering Code": "CP80617004119AL", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908000": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-380M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908607", + "Spec Code": "SLBZX", + "Ordering Code": "CP80617004116AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908607": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-460M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908636", + "Spec Code": "SLC22", + "Ordering Code": "CN80617004116AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908611": "PCN\n |\n MDDS", + "908636": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-560M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908632", + "Spec Code": "SLBTT", + "Ordering Code": "CN80617005487AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908632": "PCN\n |\n MDDS", + "908608": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-560UM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908627", + "Spec Code": "SLBSN", + "Ordering Code": "CN80617005190AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908627": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-580M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908637", + "Spec Code": "SLC29", + "Ordering Code": "CN80617005487AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908637": "PCN\n |\n MDDS", + "908613": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640M", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908634", + "Spec Code": "SLBZU", + "Ordering Code": "CN80617006936AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908634": "PCN\n |\n MDDS", + "908610": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660LM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-680UM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "1.46 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908628", + "Spec Code": "SLBST", + "Ordering Code": "CN80617004860AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908628": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-740QM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908124", + "Spec Code": "SLBQG", + "Ordering Code": "BX80607I7740QM", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "907363": "PCN\n |\n MDDS", + "908124": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-840QM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "1.86 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908125", + "Spec Code": "SLBMP", + "Ordering Code": "BX80607I7840QM", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "Varies By Product", + "CCATS": "Varies By Product", + "US HTS": "8542310001", + "907355": "PCN\n |\n MDDS", + "908125": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-940XM", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907352", + "Spec Code": "SLBSC", + "Ordering Code": "BY80607002526AE", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992", + "CCATS": "TXT", + "US HTS": "8542310001", + "907352": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gulftown", + "Vertical Segment": "Desktop", + "Processor Number": "i7-970", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45.0mm", + "Processing Die Size": "239 mm2", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908321", + "Spec Code": "SLBVF", + "Ordering Code": "BX80613I7970", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907379": "PCN\n |\n MDDS", + "908321": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-550", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908035", + "Spec Code": "SLBUD", + "Ordering Code": "BX80616I3550", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907936": "PCN\n |\n MDDS", + "908035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-655K", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908019", + "Spec Code": "SLBXL", + "Ordering Code": "BX80616I5655K", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907947": "PCN\n |\n MDDS", + "908019": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-875K", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907829", + "Spec Code": "SLBS2", + "Ordering Code": "BX80605I7875K", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907388": "PCN\n |\n MDDS", + "907829": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-880", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907373", + "Spec Code": "SLBPS", + "Ordering Code": "BV80605002505AG", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907373": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907981", + "Spec Code": "SLBUG", + "Ordering Code": "CN80617006042AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907981": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-430UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.73 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907984", + "Spec Code": "SLBVS", + "Ordering Code": "CN80617006042AE", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907984": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-540UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.00 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907983", + "Spec Code": "SLBUJ", + "Ordering Code": "CN80617006042AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907983": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660UM", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907969", + "Spec Code": "SLBSS", + "Ordering Code": "CN80617005187AB", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907969": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-450M", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.66 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907995", + "Spec Code": "SLBTZ", + "Ordering Code": "CP80617004119AI", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907995": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-680", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.86 GHz", + "Processor Base Frequency": "3.60 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908036", + "Spec Code": "SLBTM", + "Ordering Code": "BX80616I5680", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907935": "PCN\n |\n MDDS", + "908036": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-870S", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "82 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907386", + "Spec Code": "SLBQ7", + "Ordering Code": "BV80605004494AB", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "907386": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Gulftown", + "Vertical Segment": "Desktop", + "Processor Number": "i7-980X", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "6", + "Total Threads": "12", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm X 45.0mm", + "Processing Die Size": "239 mm2", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907397", + "Spec Code": "SLBUZ", + "Ordering Code": "BX80613I7980X", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907376": "PCN\n |\n MDDS", + "907397": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-530", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.93 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907938", + "Spec Code": "SLBX7", + "Ordering Code": "CM80616003180AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904341": "PCN\n |\n MDDS", + "904852": "PCN\n |\n MDDS", + "907938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i3-540", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "3.06 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908519", + "Spec Code": "SLBTD", + "Ordering Code": "BXC80616I3540", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "904344": "PCN\n |\n MDDS", + "904853": "PCN\n |\n MDDS", + "904859": "PCN\n |\n MDDS", + "907927": "PCN\n |\n MDDS", + "908511": "PCN\n |\n MDDS", + "908519": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Embedded", + "Processor Number": "i5-520E", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908571", + "Spec Code": "SLBXK", + "Ordering Code": "CN80617004461AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908571": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-520M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.3 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988, BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908568", + "Spec Code": "SLBU3", + "Ordering Code": "BX80617I5520M", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907996": "PCN\n |\n MDDS", + "908568": "PCN\n |\n MDDS", + "904375": "PCN\n |\n MDDS", + "905171": "PCN\n |\n MDDS", + "904440": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-520UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "1.87 GHz", + "Processor Base Frequency": "1.07 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905037", + "Spec Code": "SLBQP", + "Ordering Code": "CN80617005352AA", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "905037": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-540M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.07 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908641", + "Spec Code": "SLC2D", + "Ordering Code": "CN80617007218AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904408": "PCN\n |\n MDDS", + "905206": "PCN\n |\n MDDS", + "908641": "PCN\n |\n MDDS", + "904439": "PCN\n |\n MDDS", + "907994": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-650", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908520", + "Spec Code": "SLBTJ", + "Ordering Code": "BXC80616I5650", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907932": "PCN\n |\n MDDS", + "908512": "PCN\n |\n MDDS", + "908520": "PCN\n |\n MDDS", + "904340": "PCN\n |\n MDDS", + "904854": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-660", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907933", + "Spec Code": "SLBTK", + "Ordering Code": "CM80616003177AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907933": "PCN\n |\n MDDS", + "904343": "PCN\n |\n MDDS", + "904855": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-661", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "87 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.38 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "900 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "69.8°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908514", + "Spec Code": "SLBTB", + "Ordering Code": "BX80616I5661", + "Shipping Media": "BOX", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907925": "PCN\n |\n MDDS", + "908514": "PCN\n |\n MDDS", + "904349": "PCN\n |\n MDDS", + "904942": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarkdale", + "Vertical Segment": "Desktop", + "Processor Number": "i5-670", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.73 GHz", + "Processor Base Frequency": "3.46 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "73 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16.6 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "733 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCLGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.6°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904856", + "Spec Code": "SLBLT", + "Ordering Code": "BX80616I5670", + "Shipping Media": "BOX", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904342": "PCN\n |\n MDDS", + "904856": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i5-750S", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "82 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "76.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905198", + "Spec Code": "SLBLH", + "Ordering Code": "BX80605I5750S", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903600": "PCN\n |\n MDDS", + "905198": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-610E", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908575", + "Spec Code": "SLBXX", + "Ordering Code": "CN80617005745AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "905473": "PCN\n |\n MDDS", + "908575": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Embedded", + "Processor Number": "i7-620LE", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908574", + "Spec Code": "SLBXH", + "Ordering Code": "CN80617004455AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908574": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620LM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907970", + "Spec Code": "SLBSU", + "Ordering Code": "CN80617003879AD", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904409": "PCN\n |\n MDDS", + "907970": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907993", + "Spec Code": "SLBTQ", + "Ordering Code": "CP80617003981AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "907993": "PCN\n |\n MDDS", + "904373": "PCN\n |\n MDDS", + "904438": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Embedded", + "Processor Number": "i7-620UE", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.06 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "1", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908569", + "Spec Code": "SLBXJ", + "Ordering Code": "CN80617004458AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908569": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-620UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.13 GHz", + "Processor Base Frequency": "1.06 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904436", + "Spec Code": "SLBMN", + "Ordering Code": "CN80617003882AE", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904436": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640LM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "25 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "266 MHz", + "Graphics Max Dynamic Frequency": "566 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904411", + "Spec Code": "SLBMK", + "Ordering Code": "CN80617003885AE", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904411": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-640UM", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.27 GHz", + "Processor Base Frequency": "1.20 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mm x 28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904437", + "Spec Code": "SLBMM", + "Ordering Code": "CN80617003888AD", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "904437": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-860S", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "2.53 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "82 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905197", + "Spec Code": "SLBLG", + "Ordering Code": "BX80605I7860S", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903599": "PCN\n |\n MDDS", + "905197": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330E", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA,105°C for BGA", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908570", + "Spec Code": "SLBXW", + "Ordering Code": "CN80617004467AH", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908570": "PCN\n |\n MDDS", + "905472": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-330M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908003", + "Spec Code": "SLBVT", + "Ordering Code": "CP80617004122AG", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "908003": "PCN\n |\n MDDS", + "904441": "PCN\n |\n MDDS", + "904379": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i3-350M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "667 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "90°C for rPGA, 105°C for BGA", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "907997", + "Spec Code": "SLBU5", + "Ordering Code": "CP80617004161AC", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904442": "PCN\n |\n MDDS", + "904381": "PCN\n |\n MDDS", + "907997": "PCN\n |\n MDDS", + "907979": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i5-430M", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.53 GHz", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "35 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "17.1 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "500 MHz", + "Graphics Max Dynamic Frequency": "766 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288, PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "rPGA 37.5mmx 37.5mm, BGA 34mmx28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "904443", + "Spec Code": "SLBPM", + "Ordering Code": "CN80617004161AD", + "Shipping Media": "TRAY", + "Stepping": "C2", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904398": "PCN\n |\n MDDS", + "904443": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Arrandale", + "Vertical Segment": "Mobile", + "Processor Number": "i7-660UE", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "32 nm", + "Use Conditions": "Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.40 GHz", + "Processor Base Frequency": "1.33 GHz", + "Cache": "4 MB", + "Bus Speed": "2.5 GT/s", + "TDP": "18 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8.79 GB", + "Memory Types": "DDR3 800", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "12.8 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Previous Generation Intel® Processors", + "Graphics Base Frequency": "166 MHz", + "Graphics Max Dynamic Frequency": "500 MHz", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1X16, 2X8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "BGA1288", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "BGA 34mmX28mm", + "Processing Die Size": "81 mm2", + "# of Processing Die Transistors": "382 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "908576", + "Spec Code": "SLBWV", + "Ordering Code": "CN80617006204AA", + "Shipping Media": "TRAY", + "Stepping": "K0", + "ECCN": "5A992C", + "CCATS": "G077159", + "US HTS": "8542310001", + "908576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-930", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "902494", + "Spec Code": "SLBKP", + "Ordering Code": "AT80601000897AA", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902494": "PCN\n |\n MDDS", + "905476": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-960", + "Status": "Discontinued", + "Launch Date": "Q4'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "905477", + "Spec Code": "SLBEU", + "Ordering Code": "BX80601960", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900855": "PCN\n |\n MDDS", + "905477": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-720QM", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.80 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903938", + "Spec Code": "SLBLY", + "Ordering Code": "BX80607I7720QM", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "903591": "PCN\n |\n MDDS", + "903938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-820QM", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.06 GHz", + "Processor Base Frequency": "1.73 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "45 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903590", + "Spec Code": "SLBLX", + "Ordering Code": "BY80607002904AK", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903590": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Clarksfield", + "Vertical Segment": "Mobile", + "Processor Number": "i7-920XM", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "55 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "PGA988", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903589", + "Spec Code": "SLBLW", + "Ordering Code": "BY80607002529AF", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992", + "CCATS": "NA", + "US HTS": "8542310001", + "903589": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i5-750", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "4", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903877", + "Spec Code": "SLBLC", + "Ordering Code": "BX80605I5750", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903603": "PCN\n |\n MDDS", + "903877": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-860", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Use Conditions": "Server/Enterprise", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "2.80 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903876", + "Spec Code": "SLBJJ", + "Ordering Code": "BX80605I7860", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903601": "PCN\n |\n MDDS", + "903876": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Lynnfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-870", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "2.5 GT/s", + "TDP": "95 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "LGA1156", + "Max CPU Configuration": "1", + "TCASE": "72.7°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "296 mm2", + "# of Processing Die Transistors": "774 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "903875", + "Spec Code": "SLBJG", + "Ordering Code": "BX80605I7870", + "Shipping Media": "BOX", + "Stepping": "B1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "903597": "PCN\n |\n MDDS", + "903875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9505", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "904174", + "Spec Code": "SLGYY", + "Ordering Code": "BX80580Q9505", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904017": "PCN\n |\n MDDS", + "904174": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9505S", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "904020", + "Spec Code": "SLGYZ", + "Ordering Code": "AT80580AJ0736MG", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "904020": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P7570", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903045", + "Spec Code": "SLGLW", + "Ordering Code": "AW80577SH0513ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "903045": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T6670", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900792", + "Spec Code": "SLGLK", + "Ordering Code": "AW80577GG0492MH", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900792": "PCN\n |\n MDDS", + "900791": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P7550", + "Status": "Discontinued", + "Launch Date": "Q3'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "25 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "90°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900154", + "Spec Code": "SLGF8", + "Ordering Code": "AW80577SH0513MA", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900154": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T6500", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "Embedded Options Available": "No", + "TJUNCTION": "105°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-950", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.33 GHz", + "Processor Base Frequency": "3.06 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "902255", + "Spec Code": "SLBEN", + "Ordering Code": "BX80601950", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900815": "PCN\n |\n MDDS", + "902255": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-975", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.60 GHz", + "Processor Base Frequency": "3.33 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "902257", + "Spec Code": "SLBEQ", + "Ordering Code": "BX80601975", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900813": "PCN\n |\n MDDS", + "902257": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E7600", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.06 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903061", + "Spec Code": "SLGTD", + "Ordering Code": "BX80571E7600", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902621": "PCN\n |\n MDDS", + "903061": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P8800", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "25 W", + "VID Voltage Range": "1.00V-1.25V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "902289", + "Spec Code": "SLGLR", + "Ordering Code": "BX80577P8800", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900803": "PCN\n |\n MDDS", + "902289": "PCN\n |\n MDDS", + "900786": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P9700", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "28 W", + "VID Voltage Range": "1.012V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901930", + "Spec Code": "SLGQS", + "Ordering Code": "AW80576SH0726MG", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901930": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9900", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.06 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "TDP": "35 W", + "VID Voltage Range": "1.050V-1.2125V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA479, PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900461", + "Spec Code": "SLGKH", + "Ordering Code": "AV80576GH0836MG", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900449": "PCN\n |\n MDDS", + "900461": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q8400", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902938", + "Spec Code": "SLGT6", + "Ordering Code": "BX80580Q8400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902314": "PCN\n |\n MDDS", + "902938": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q8400S", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903232", + "Spec Code": "SLGT7", + "Ordering Code": "BX80580Q8400S", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902313": "PCN\n |\n MDDS", + "903232": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU3500", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "100°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899770", + "Spec Code": "SLGFM", + "Ordering Code": "AV80585UG0133M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899770": "MDDS", + "899746": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SL9600", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899767", + "Spec Code": "SLGEQ", + "Ordering Code": "AV80576LH0466M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899767": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SP9600", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.53 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899768", + "Spec Code": "SLGER", + "Ordering Code": "AV80576SH0616M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899739": "MDDS", + "899768": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU9600", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899769", + "Spec Code": "SLGFN", + "Ordering Code": "AV80577UG0253M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899769": "PCN\n |\n MDDS", + "899747": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU3500", + "Status": "Discontinued", + "Launch Date": "Q2'09", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901878", + "Spec Code": "SLGFM", + "Ordering Code": "AV80585UG0173M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901878": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E7500", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903984", + "Spec Code": "SLGTE", + "Ordering Code": "BX80571E7500", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902622": "PCN\n |\n MDDS", + "903984": "PCN\n |\n MDDS", + "898340": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q8200S", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "901849", + "Spec Code": "SLG9T", + "Ordering Code": "BX80580Q8200S", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899123": "PCN\n |\n MDDS", + "901849": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9400S", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901850", + "Spec Code": "SLG9U", + "Ordering Code": "BX80580Q9400S", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "899124": "PCN\n |\n MDDS", + "901850": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9550S", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "76.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901958", + "Spec Code": "SLGAE", + "Ordering Code": "BX80569Q9550S", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "899177": "PCN\n |\n MDDS", + "901958": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P7450", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "90°C", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897724", + "Spec Code": "SLB54", + "Ordering Code": "AW80577SH0463M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897724": "PCN\n |\n MDDS", + "897722": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T6400", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "TDP": "35 W", + "VID Voltage Range": "1.000V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "900471", + "Spec Code": "SLGJ4", + "Ordering Code": "AW80577GG0412MA", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900471": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T6600", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.00V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "90°C", + "Package Size": "35 mm x 35 mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899866", + "Spec Code": "SLGF5", + "Ordering Code": "AW80577GG0492ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899866": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SL9380", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "Communications", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899185", + "Spec Code": "SLGAD", + "Ordering Code": "AV80576LG0336M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899185": "PCN\n |\n MDDS", + "899130": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P8700", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.00V - 1.25V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA479, PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899830", + "Spec Code": "SLGFE", + "Ordering Code": "AW80577SH0613MG", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899830": "PCN\n |\n MDDS", + "899788": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P9600", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V-1.212V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899697", + "Spec Code": "SLGE6", + "Ordering Code": "AW80576SH0676MG", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899697": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9550", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.050V-1.212V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA479, PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899722", + "Spec Code": "SLGEL", + "Ordering Code": "AV80576GH0676MG", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899722": "PCN\n |\n MDDS", + "899695": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9800", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899720", + "Spec Code": "SLGEP", + "Ordering Code": "AV80576GH0776MG", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899694": "PCN\n |\n MDDS", + "899720": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "Q9000", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "45 W", + "VID Voltage Range": "1.050V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "901592", + "Spec Code": "SLGEJ", + "Ordering Code": "BX80581Q9000", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899707": "PCN\n |\n MDDS", + "901592": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q8300", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903883", + "Spec Code": "SLGUR", + "Ordering Code": "BX80580Q8300", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898378": "PCN\n |\n MDDS", + "900465": "PCN\n |\n MDDS", + "902513": "PCN\n |\n MDDS", + "903883": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-920", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "2.93 GHz", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "902258", + "Spec Code": "SLBEJ", + "Ordering Code": "BX80601920", + "Shipping Media": "BOX", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900054": "PCN\n |\n MDDS", + "900252": "PCN\n |\n MDDS", + "900817": "PCN\n |\n MDDS", + "902258": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-940", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.20 GHz", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4.8 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "900251", + "Spec Code": "SLBCK", + "Ordering Code": "BX80601940", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900053": "PCN\n |\n MDDS", + "900251": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Bloomfield", + "Vertical Segment": "Desktop", + "Processor Number": "i7-965", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "3.46 GHz", + "Processor Base Frequency": "3.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "6.4 GT/s", + "# of QPI Links": "1", + "TDP": "130 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "24 GB", + "Memory Types": "DDR3 800/1066", + "Max # of Memory Channels": "3", + "Max Memory Bandwidth": "25.6 GB/s", + "Physical Address Extensions": "36-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "FCLGA1366", + "Max CPU Configuration": "1", + "TCASE": "67.9°C", + "Package Size": "42.5mm x 45.0mm", + "Processing Die Size": "263 mm2", + "# of Processing Die Transistors": "731 million", + "Intel® Turbo Boost Technology ‡": "1.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "900250", + "Spec Code": "SLBCJ", + "Ordering Code": "BX80601965", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "900042": "PCN\n |\n MDDS", + "900250": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E7400", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "903983", + "Spec Code": "SLGW3", + "Ordering Code": "BX80571E7400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "901862": "PCN\n |\n MDDS", + "898339": "PCN\n |\n MDDS", + "900516": "PCN\n |\n MDDS", + "902977": "PCN\n |\n MDDS", + "903983": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P7370", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.00V-1.25V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899860", + "Spec Code": "SLGF9", + "Ordering Code": "AW80577SH0413ML", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899860": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T5800", + "Status": "Discontinued", + "Launch Date": "Q4'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "85°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897848", + "Spec Code": "SLB6E", + "Ordering Code": "LF80537GG041F", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897848": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q8200", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "902305", + "Spec Code": "SLG9S", + "Ordering Code": "BX80580Q8200", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898065": "PCN\n |\n MDDS", + "899651": "PCN\n |\n MDDS", + "899122": "PCN\n |\n MDDS", + "902305": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SL9300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900241", + "Spec Code": "SLGHC", + "Ordering Code": "AV80576LH0256M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899189": "PCN\n |\n MDDS", + "900241": "MDDS", + "898587": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SL9400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "1.050V - 1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900242", + "Spec Code": "SLGHD", + "Ordering Code": "AV80576LH0366M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899188": "PCN\n |\n MDDS", + "898586": "PCN\n |\n MDDS", + "900242": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SP9300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.26 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V - 1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899187", + "Spec Code": "SLGAF", + "Ordering Code": "AV80576SH0516M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898585": "PCN\n |\n MDDS", + "899187": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SP9400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "900244", + "Spec Code": "SLGHG", + "Ordering Code": "AV80576SH0566M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898263": "PCN\n |\n MDDS", + "900244": "MDDS", + "899186": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU9300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899334", + "Spec Code": "SLGAL", + "Ordering Code": "AV80577UG0093M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899088": "PCN\n |\n MDDS", + "899334": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU9400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "105°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "902114", + "Spec Code": "SLGS5", + "Ordering Code": "AV80577UG0173M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "902114": "PCN\n |\n MDDS", + "899333": "PCN\n |\n MDDS", + "899087": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "QX9300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.53 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "45 W", + "VID Voltage Range": "1.050V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "898576", + "Spec Code": "SLB5J", + "Ordering Code": "AW80581ZH061003", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898576": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "Q9100", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.26 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "45 W", + "VID Voltage Range": "1.050V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899149", + "Spec Code": "SLB5G", + "Ordering Code": "AW80581GH051003", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899149": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "SU3300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA956", + "TJUNCTION": "100°C", + "Package Size": "22mm x 22mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "No", + "MM#": "899272", + "Spec Code": "SLGAJ", + "Ordering Code": "AV80585UG0093M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899272": "PCN\n |\n MDDS", + "899271": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E7300", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899438", + "Spec Code": "SLGA9", + "Ordering Code": "BX80571E7300", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899438": "MDDS", + "893548": "PCN\n |\n MDDS", + "899349": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8600", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.33 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899033", + "Spec Code": "SLB9L", + "Ordering Code": "BX80570E8600", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898840": "PCN\n |\n MDDS", + "899033": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899303", + "Spec Code": "SLB6B", + "Ordering Code": "BX80580Q9400", + "Shipping Media": "BOX", + "Stepping": "R0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "898380": "PCN\n |\n MDDS", + "899303": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9650", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899134", + "Spec Code": "SLB8W", + "Ordering Code": "BX80569Q9650", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "898652": "PCN\n |\n MDDS", + "899134": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P8400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.26 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35 mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899858", + "Spec Code": "SLGFC", + "Ordering Code": "AW80577SH0513M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897624": "PCN\n |\n MDDS", + "899622": "MDDS", + "897659": "MDDS", + "899620": "MDDS", + "898998": "MDDS", + "897696": "PCN\n |\n MDDS", + "897766": "PCN\n |\n MDDS", + "899618": "MDDS", + "899617": "MDDS", + "897611": "PCN\n |\n MDDS", + "898503": "PCN\n |\n MDDS", + "899792": "PCN\n |\n MDDS", + "899858": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P8600", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.050V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35 mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899834", + "Spec Code": "SLGFD", + "Ordering Code": "AW80577SH0563M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899496": "MDDS", + "899790": "PCN\n |\n MDDS", + "899137": "MDDS", + "897695": "PCN\n |\n MDDS", + "899834": "PCN\n |\n MDDS", + "897765": "PCN\n |\n MDDS", + "897612": "PCN\n |\n MDDS", + "898502": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P9500", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.53 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899772", + "Spec Code": "SLGE8", + "Ordering Code": "AW80576SH0616M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899698": "MDDS", + "899772": "PCN\n |\n MDDS", + "897753": "PCN\n |\n MDDS", + "897704": "MDDS", + "897772": "PCN\n |\n MDDS", + "898460": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9400", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "2.53 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.050V-1.162V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899771", + "Spec Code": "SLGE5", + "Ordering Code": "AW80576GH0616M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899721": "MDDS", + "899753": "PCN\n |\n MDDS", + "897767": "PCN\n |\n MDDS", + "899771": "PCN\n |\n MDDS", + "897705": "MDDS", + "897845": "PCN\n |\n MDDS", + "897703": "PCN\n |\n MDDS", + "898459": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9600", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.05V-1.2125V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA479, PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899755", + "Spec Code": "SLG9F", + "Ordering Code": "AW80576GH0726M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "898635": "MDDS", + "899719": "MDDS", + "899752": "PCN\n |\n MDDS", + "897702": "PCN\n |\n MDDS", + "897768": "PCN\n |\n MDDS", + "899015": "MDDS", + "899755": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "X9100", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.06 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "44 W", + "VID Voltage Range": "1.05-1.2625V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35 mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899780", + "Spec Code": "SLGE7", + "Ordering Code": "AW80576ZH0836M", + "Shipping Media": "TRAY", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899780": "PCN\n |\n MDDS", + "897701": "MDDS", + "899002": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "P7350", + "Status": "Discontinued", + "Launch Date": "Q3'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "25 W", + "VID Voltage Range": "1.062V-1.150V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899791", + "Spec Code": "SLGE3", + "Ordering Code": "AV80577SH0413M", + "Shipping Media": "TRAY", + "Stepping": "R0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897721": "PCN\n |\n MDDS", + "899498": "MDDS", + "899791": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E7200", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.53 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "74.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "82 mm2", + "# of Processing Die Transistors": "228 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897971", + "Spec Code": "SLAPC", + "Ordering Code": "BX80571E7200", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "896076": "PCN\n |\n MDDS", + "897829": "PCN\n |\n MDDS", + "893550": "PCN\n |\n MDDS", + "897971": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8300", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.83 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "893559", + "Spec Code": "SLAPN", + "Ordering Code": "EU80570PJ0736M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893559": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T5670", + "Status": "Discontinued", + "Launch Date": "Q2'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.0375V-1.30V", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX9775", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "No", + "TDP": "150 W", + "VID Voltage Range": "0.850V-1.3500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA771", + "TCASE": "63°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "895880", + "Spec Code": "SLANY", + "Ordering Code": "BX80574QX9775", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893489": "PCN\n |\n MDDS", + "894961": "MDDS", + "894962": "MDDS", + "895880": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX9770", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.20 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1600 MHz", + "FSB Parity": "No", + "TDP": "136 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "55.5°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897362", + "Spec Code": "SLAWM", + "Ordering Code": "BX80569QX9770", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "896573": "PCN\n |\n MDDS", + "897362": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9300", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "164 mm2", + "# of Processing Die Transistors": "456 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "897360", + "Spec Code": "SLAWE", + "Ordering Code": "BX80580Q9300", + "Shipping Media": "BOX", + "Stepping": "M1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "896627": "PCN\n |\n MDDS", + "897360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9450", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "897364", + "Spec Code": "SLAWR", + "Ordering Code": "BX80569Q9450", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "896572": "PCN\n |\n MDDS", + "897364": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q9550", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.83 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "95 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "71.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899133", + "Spec Code": "SLB8V", + "Ordering Code": "BX80569Q9550", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "898645": "PCN\n |\n MDDS", + "899133": "PCN\n |\n MDDS", + "896490": "PCN\n |\n MDDS", + "897363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8190", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "893766", + "Spec Code": "SLAQR", + "Ordering Code": "EU80570PJ0676MN", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893766": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8200", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "895734", + "Spec Code": "SLAPP", + "Ordering Code": "BX80570E8200", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "895698": "MDDS", + "893560": "PCN\n |\n MDDS", + "894370": "MDDS", + "895734": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8400", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899035", + "Spec Code": "SLB9J", + "Ordering Code": "BX80570E8400", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "895696": "MDDS", + "893557": "PCN\n |\n MDDS", + "894369": "MDDS", + "895733": "PCN\n |\n MDDS", + "898841": "PCN\n |\n MDDS", + "899035": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Wolfdale", + "Vertical Segment": "Desktop", + "Processor Number": "E8500", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.16 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "72.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "899034", + "Spec Code": "SLB9K", + "Ordering Code": "BX80570E8500", + "Shipping Media": "BOX", + "Stepping": "E0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "895697": "MDDS", + "893556": "PCN\n |\n MDDS", + "894368": "MDDS", + "895732": "PCN\n |\n MDDS", + "898838": "PCN\n |\n MDDS", + "899034": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T8100", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.000V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897279", + "Spec Code": "SLAYP", + "Ordering Code": "BX80577T8100", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "896670": "PCN\n |\n MDDS", + "893716": "PCN\n |\n MDDS", + "895741": "PCN\n |\n MDDS", + "897184": "PCN\n |\n MDDS", + "895040": "PCN\n |\n MDDS", + "896002": "PCN\n |\n MDDS", + "897133": "PCN\n |\n MDDS", + "897279": "PCN\n |\n MDDS", + "897124": "PCN\n |\n MDDS", + "895505": "PCN\n |\n MDDS", + "893666": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T8300", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.000V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897280", + "Spec Code": "SLAYQ", + "Ordering Code": "BX80577T8300", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897185": "PCN\n |\n MDDS", + "897135": "PCN\n |\n MDDS", + "897280": "PCN\n |\n MDDS", + "895039": "PCN\n |\n MDDS", + "893717": "PCN\n |\n MDDS", + "895743": "PCN\n |\n MDDS", + "893665": "PCN\n |\n MDDS", + "896955": "MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9300", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.50 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.000V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478, BGA479", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897266", + "Spec Code": "SLAYY", + "Ordering Code": "BX80576T9300", + "Shipping Media": "BOX", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897186": "PCN\n |\n MDDS", + "893750": "PCN\n |\n MDDS", + "893760": "PCN\n |\n MDDS", + "895742": "PCN\n |\n MDDS", + "897120": "PCN\n |\n MDDS", + "897266": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "T9500", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.000V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "BGA479, PPGA478, PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897745", + "Spec Code": "SLB3BW", + "Ordering Code": "AV80576SH0616M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "897745": "MDDS", + "897121": "PCN\n |\n MDDS", + "897744": "MDDS", + "897743": "MDDS", + "893751": "PCN\n |\n MDDS", + "893761": "PCN\n |\n MDDS", + "897187": "PCN\n |\n MDDS", + "897733": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Penryn", + "Vertical Segment": "Mobile", + "Processor Number": "X9000", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "45 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "6 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "44 W", + "VID Voltage Range": "1.000V-1.275V", + "Embedded Options Available": "No", + "Sockets Supported": "PGA478", + "TJUNCTION": "105°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "107 mm2", + "# of Processing Die Transistors": "410 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897122", + "Spec Code": "SLAZ3", + "Ordering Code": "FF80576ZG0726M", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "895363": "PCN\n |\n MDDS", + "897122": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U7700", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "0.800V-0.975V", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E4700", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "896021", + "Spec Code": "SLALT", + "Ordering Code": "BX80557E4700", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "892986": "PCN\n |\n MDDS", + "896021": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T5750", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "TJUNCTION": "85°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yorkfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX9650", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "45 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "12 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "Yes", + "TDP": "130 W", + "VID Voltage Range": "0.8500V-1.3625V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "64.5°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "214 mm2", + "# of Processing Die Transistors": "820 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "897412", + "Spec Code": "SLAWN", + "Ordering Code": "BX80569QX9650", + "Shipping Media": "BOX", + "Stepping": "C1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "893496": "PCN\n |\n MDDS", + "894493": "PCN\n |\n MDDS", + "896591": "PCN\n |\n MDDS", + "897412": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E4600", + "Status": "Discontinued", + "Launch Date": "Q4'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "893266", + "Spec Code": "SLA94", + "Ordering Code": "BX80557E4600", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890239": "PCN\n |\n MDDS", + "893266": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "L7700", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "0.90V-1.20V", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7250", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.175V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892606", + "Spec Code": "SLA49", + "Ordering Code": "BX80537T7250", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888464": "PCN\n |\n MDDS", + "892606": "PCN\n |\n MDDS", + "888487": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7800", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V-1.250V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA479, PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891445", + "Spec Code": "SLAF6", + "Ordering Code": "LF80537GG0644ML", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891311": "PCN\n |\n MDDS", + "891445": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U2100", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.06 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "0.80V-1.00V", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U2200", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "1", + "Processor Base Frequency": "1.20 GHz", + "Cache": "1 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "5.5 W", + "VID Voltage Range": "0.80V-1.00V", + "Embedded Options Available": "No", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "X7900", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.80 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "44 W", + "VID Voltage Range": "1.100V-1.375V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891447", + "Spec Code": "SLAF4", + "Ordering Code": "LF80537GG0724ML", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891447": "PCN\n |\n MDDS", + "888427": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E4500", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891563", + "Spec Code": "SLA95", + "Ordering Code": "BX80557E4500", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890241": "PCN\n |\n MDDS", + "891563": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6540", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890509", + "Spec Code": "SLAA5", + "Ordering Code": "HH80557PJ0534M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890509": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6550", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "892992", + "Spec Code": "SLA9X", + "Ordering Code": "BX80557E6550R", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890508": "PCN\n |\n MDDS", + "891191": "PCN\n |\n MDDS", + "892992": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6750", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "891189", + "Spec Code": "SLA9V", + "Ordering Code": "BX80557E6750", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890439": "PCN\n |\n MDDS", + "891189": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6850", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "3.00 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "72°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "891188", + "Spec Code": "SLA9U", + "Ordering Code": "BX80557E6850", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "890642": "PCN\n |\n MDDS", + "891188": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX6850", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "3.00 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1333 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "64.5°C", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891959", + "Spec Code": "SLAFN", + "Ordering Code": "BX80562QX6850", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891344": "PCN\n |\n MDDS", + "891959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q6700", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "105 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "62.2°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891332", + "Spec Code": "SLACQ", + "Ordering Code": "BX80562Q6700", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891046": "PCN\n |\n MDDS", + "891332": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "X7800", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.60 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "44 W", + "VID Voltage Range": "1.100V-1.375V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "889794", + "Spec Code": "SLA6Z", + "Ordering Code": "LF80537GG0644M", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "889794": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7600", + "Status": "Discontinued", + "Launch Date": "Q3'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "34 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.0375V-1.300V", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884607", + "Spec Code": "SL9SD", + "Ordering Code": "BX80537T7600", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884334": "PCN\n |\n MDDS", + "884330": "PCN\n |\n MDDS", + "884607": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "L7300", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.40 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "0.975V-1.062V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888429", + "Spec Code": "SLA3S", + "Ordering Code": "LE80537LG0174M", + "Shipping Media": "TRAY", + "Stepping": "E1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888429": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "L7500", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.60 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "0.975V - 1.062V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891454", + "Spec Code": "SLAET", + "Ordering Code": "LE80537LG0254M", + "Shipping Media": "TRAY", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888433": "PCN\n |\n MDDS", + "891454": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7100", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890084", + "Spec Code": "SLA4A", + "Ordering Code": "BX80537T7100", + "Shipping Media": "BOX", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888465": "PCN\n |\n MDDS", + "890084": "PCN\n |\n MDDS", + "888488": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7300", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890087", + "Spec Code": "SLA45", + "Ordering Code": "BX80537T7300", + "Shipping Media": "BOX", + "Stepping": "E1", + "ECCN": "Varies By Product", + "CCATS": "NA", + "US HTS": "8542310001", + "888431": "PCN\n |\n MDDS", + "888442": "PCN\n |\n MDDS", + "890087": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7500", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.20 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "VID Voltage Range": "1.075V - 1.250V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "894485", + "Spec Code": "SLAF8", + "Ordering Code": "BX80537T7500", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891316": "PCN\n |\n MDDS", + "888430": "PCN\n |\n MDDS", + "888440": "PCN\n |\n MDDS", + "890086": "PCN\n |\n MDDS", + "891304": "PCN\n |\n MDDS", + "894485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7700", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "35 W", + "Embedded Options Available": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "894486", + "Spec Code": "SLAF7", + "Ordering Code": "BX80537T7700", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888434": "PCN\n |\n MDDS", + "890085": "PCN\n |\n MDDS", + "891312": "PCN\n |\n MDDS", + "888428": "PCN\n |\n MDDS", + "891085": "PCN\n |\n MDDS", + "894486": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E4400", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "L2=61.4°C, M0=73.3°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "892087", + "Spec Code": "SLA98", + "Ordering Code": "BX80557E4400", + "Shipping Media": "BOX", + "Stepping": "M0", + "US HTS": "Varies By Product", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "890243": "PCN\n |\n MDDS", + "892087": "PCN\n |\n MDDS", + "888210": "PCN\n |\n MDDS", + "889015": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6320", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "60.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888976", + "Spec Code": "SLA4U", + "Ordering Code": "BX80557E6320", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888502": "PCN\n |\n MDDS", + "888976": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6420", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "60.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888975", + "Spec Code": "SLA4T", + "Ordering Code": "BX80557E6420", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888505": "PCN\n |\n MDDS", + "888975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX6800", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.93 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "64.5°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891352", + "Spec Code": "SLACP", + "Ordering Code": "BX80562QX6800", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891045": "PCN\n |\n MDDS", + "891352": "PCN\n |\n MDDS", + "885490": "PCN\n |\n MDDS", + "890750": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U7500", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "0.8V-0.975V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888491", + "Spec Code": "SLV3X", + "Ordering Code": "LE80537UE0042M", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888491": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U7600", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "10 W", + "VID Voltage Range": "0.8V-0.975V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "888490", + "Spec Code": "SLV3W", + "Ordering Code": "LE80537UE0092M", + "Shipping Media": "TRAY", + "Stepping": "M1", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "888490": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E4300", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.80 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "800 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Scenario Design Power (SDP)": "12 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "Yes", + "Sockets Supported": "LGA775", + "TCASE": "61.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890247", + "Spec Code": "SLA99", + "Ordering Code": "HH80557PG0332M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "885034": "PCN\n |\n MDDS", + "887463": "PCN\n |\n MDDS", + "890247": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Desktop", + "Processor Number": "Q6600", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "105 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "B3=62.2°C; G0=71°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "891337", + "Spec Code": "SLACR", + "Ordering Code": "BX80562Q6600", + "Shipping Media": "BOX", + "Stepping": "G0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "891049": "PCN\n |\n MDDS", + "891337": "PCN", + "885492": "PCN\n |\n MDDS", + "887620": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "L7200", + "Status": "Discontinued", + "Launch Date": "Q1'07", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.33 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "0.9V-1.1V", + "Embedded Options Available": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884339", + "Spec Code": "SL9SN", + "Ordering Code": "LE80537LF0144M", + "Shipping Media": "TRAY", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884339": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "L7400", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.50 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "17 W", + "VID Voltage Range": "0.9V-1.1V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899898", + "Spec Code": "SLGFX", + "Ordering Code": "LE80537LF0214M", + "Shipping Media": "TRAY", + "Stepping": "G2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "899898": "PCN\n |\n MDDS", + "884337": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Kentsfield", + "Vertical Segment": "Desktop", + "Processor Number": "QX6700", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Lithography": "65 nm", + "Total Cores": "4", + "Processor Base Frequency": "2.66 GHz", + "Cache": "8 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "130 W", + "VID Voltage Range": "0.8500V-1.500V", + "Embedded Options Available": "No", + "Sockets Supported": "LGA775", + "TCASE": "64.5°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "286 mm2", + "# of Processing Die Transistors": "582 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "886868", + "Spec Code": "SL9UL", + "Ordering Code": "BX80562QX6700", + "Shipping Media": "BOX", + "Stepping": "B3", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "885491": "PCN\n |\n MDDS", + "886868": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6300", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.86 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775, LGA775", + "TCASE": "61.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "887660", + "Spec Code": "SL9TA", + "Ordering Code": "BX80557E6300T2", + "Shipping Media": "BOX", + "Stepping": "L2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "885033": "PCN\n |\n MDDS", + "887659": "PCN\n |\n MDDS", + "887660": "PCN\n |\n MDDS", + "884982": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6400", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.13 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PLGA775, LGA775", + "TCASE": "61.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "111 mm2", + "# of Processing Die Transistors": "167 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "890246", + "Spec Code": "SLA97", + "Ordering Code": "HH80557PH0462M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "885032": "PCN\n |\n MDDS", + "887657": "PCN\n |\n MDDS", + "885263": "MDDS", + "884352": "PCN\n |\n MDDS", + "884981": "PCN\n |\n MDDS", + "890246": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6600", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.40 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "60.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "887664", + "Spec Code": "SL9ZL", + "Ordering Code": "BX80557E6600", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884354": "PCN\n |\n MDDS", + "884980": "PCN\n |\n MDDS", + "885262": "MDDS", + "887379": "PCN\n |\n MDDS", + "887664": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "E6700", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.66 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "65 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "60.1°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "887658", + "Spec Code": "SL9ZF", + "Ordering Code": "BX80557E6700", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884351": "PCN\n |\n MDDS", + "884979": "PCN\n |\n MDDS", + "885250": "MDDS", + "887370": "PCN\n |\n MDDS", + "887658": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "T7400", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.16 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "34 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.1625V-1.300V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "899884", + "Spec Code": "SLGFV", + "Ordering Code": "LE80537GF0484M", + "Shipping Media": "TRAY", + "Stepping": "G2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884328": "PCN\n |\n MDDS", + "884606": "PCN\n |\n MDDS", + "899869": "PCN\n |\n MDDS", + "899884": "PCN\n |\n MDDS", + "884335": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Merom", + "Vertical Segment": "Mobile", + "Processor Number": "U7500", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.06 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "TDP": "10 W", + "VID Voltage Range": "0.80V-0.975V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Execute Disable Bit ‡": "Yes", + "MM#": "895496", + "Spec Code": "SLAUT", + "Ordering Code": "LE80537UE0042M", + "Shipping Media": "TRAY", + "Stepping": "M0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "895496": "PCN\n |\n MDDS", + "888076": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Conroe", + "Vertical Segment": "Desktop", + "Processor Number": "X6800", + "Status": "Discontinued", + "Launch Date": "Q3'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.93 GHz", + "Cache": "4 MB L2 Cache", + "Bus Speed": "1066 MHz", + "FSB Parity": "No", + "TDP": "75 W", + "VID Voltage Range": "0.8500V-1.5V", + "Embedded Options Available": "No", + "Sockets Supported": "PLGA775", + "TCASE": "60.4°C", + "Package Size": "37.5mm x 37.5mm", + "Processing Die Size": "143 mm2", + "# of Processing Die Transistors": "291 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "884552", + "Spec Code": "SL9S5", + "Ordering Code": "BX80557X6800", + "Shipping Media": "BOX", + "Stepping": "B2", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "884350": "PCN\n |\n MDDS", + "884552": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "L2400", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.66 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "15 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.0V - 1.212V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "882790", + "Spec Code": "SL9JT", + "Ordering Code": "LE80539LF0282M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "876121": "PCN\n |\n MDDS", + "882790": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "T2500", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "2.00 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "667 MHz", + "FSB Parity": "No", + "TDP": "31 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "1.1625V - 1.30V", + "Embedded Options Available": "Yes", + "Physical Address Extensions": "32-bit", + "ECC Memory Supported ‡": "No", + "Sockets Supported": "PPGA478, PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "883287", + "Spec Code": "SL9EH", + "Ordering Code": "BX80539T2500", + "Shipping Media": "BOX", + "Stepping": "D0", + "US HTS": "Varies By Product", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "882800": "PCN\n |\n MDDS", + "881984": "PCN\n |\n MDDS", + "883287": "PCN", + "876118": "PCN\n |\n MDDS", + "876114": "PCN\n |\n MDDS", + "878609": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Yonah", + "Vertical Segment": "Mobile", + "Processor Number": "U2500", + "Status": "Discontinued", + "Launch Date": "Q1'06", + "Lithography": "65 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.20 GHz", + "Cache": "2 MB L2 Cache", + "Bus Speed": "533 MHz", + "FSB Parity": "No", + "TDP": "9 W", + "Scenario Design Power (SDP)": "0 W", + "VID Voltage Range": "0.85V - 1.1V", + "Embedded Options Available": "Yes", + "Sockets Supported": "PBGA479", + "TJUNCTION": "100°C", + "Package Size": "35mm x 35mm", + "Processing Die Size": "90 mm2", + "# of Processing Die Transistors": "151 million", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® 64 ‡": "No", + "Instruction Set": "32-bit", + "Idle States": "No", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "882751", + "Spec Code": "SL9JQ", + "Ordering Code": "LE80539UE0092M", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "3A991.A.1", + "CCATS": "NA", + "US HTS": "8542310001", + "882751": "PCN\n |\n MDDS", + "879592": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi30Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi50Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi70Z", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-20 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi3", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-1115G4 Processor (6M Cache, up to 4.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A874", + "Ordering Code": "BNUC11TNBI30000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A874": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-1115G4", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "4.10 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.70 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-3733", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 11th Gen Intel® Processors", + "Graphics Max Dynamic Frequency": "1.25 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "48", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "1", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A78", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DR", + "Spec Code": "SRK08", + "Ordering Code": "FH8069004531602", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DR": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-1135G7 Processor (8M Cache, up to 4.20 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A875", + "Ordering Code": "BNUC11TNBI50000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A875": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1135G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.40 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "900 MHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DG", + "Spec Code": "SRK05", + "Ordering Code": "FH8069004531301", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DG": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBi7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-1165G7 Processor (12M Cache, up to 4.70 GHz)", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99A876", + "Ordering Code": "BNUC11TNBI70000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A876": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1165G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.70 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.80 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3D0", + "Spec Code": "SRK02", + "Ordering Code": "FH8069004530104", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3D0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv5", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-1145G7 Processor (8M Cache, up to 4.40 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A78T", + "Ordering Code": "BNUC11TNBV50000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A78T": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-1145G7", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.40 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "2.60 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.10 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.30 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "80", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3DA", + "Spec Code": "SRK03", + "Ordering Code": "FH8069004530501", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3DA": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 11th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Tiger Canyon", + "Status": "Launched", + "Launch Date": "Q1'21", + "Expected Discontinuance": "1H'24", + "Supported Operating Systems": "Windows 11 Home*, Windows 11 Pro*, Windows 10 Home, 64-bit*, Windows 10 IoT Enterprise*, Windows 10 Pro, 64-bit*, Red Hat Linux*, Ubuntu 20.04 LTS*", + "Board Number": "NUC11TNBv7", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "3", + "Lithography": "10 nm SuperFin", + "TDP": "28 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-1185G7 Processor (12M Cache, up to 4.80 GHz, with IPU)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200 1.2V SO-DIMMs", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0b w/HDMI CEC, Dual DP 1.4a via Type C", + "# of Displays Supported ‡": "4", + "PCI Express Revision": "Gen 4 (m.2 22x80 slot); Gen 3 (otherwise)", + "PCI Express Configurations ‡": "PCIe x4 Gen 4: M.2 22x80 (key M) PCIe x1 Gen 3: M.2 22x42 (key B) PCIe x1: M.2 22x30 (key E)", + "M.2 Card Slot (wireless)": "22x30 (E)", + "M.2 Card Slot (storage)": "22x80 NVMe (M); 22x42 SATA (B)", + "# of USB Ports": "4", + "USB Configuration": "Front: 2x USB 3.2 Rear: 2x USB 4 (type C), 1x USB 3.2, 1x USB 2.0 Internal: 1x USB 3.2 on m.2 22x42 (pins), 2x USB 2.0 (headers)", + "Total # of SATA Ports": "1", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® Ethernet Controller i225-LM", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 4, 1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "15", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A78V", + "Ordering Code": "BNUC11TNBV70000", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99A78V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "11th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Tiger Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-1185G7", + "Status": "Launched", + "Launch Date": "Q3'20", + "Lithography": "10 nm SuperFin", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Cache": "12 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "Configurable TDP-up Base Frequency": "3.00 GHz", + "Configurable TDP-up": "28 W", + "Configurable TDP-down Base Frequency": "1.20 GHz", + "Configurable TDP-down": "12 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-3200, LPDDR4x-4267", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® Iris® Xe Graphics", + "Graphics Max Dynamic Frequency": "1.35 GHz", + "Graphics Output": "eDP 1.4b, MIPI-DSI 2.0, DP 1.4, HDMI 2.0b", + "Execution Units": "96", + "Max Resolution (HDMI)‡": "4096x2304@60Hz", + "Max Resolution (DP)‡": "7680x4320@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12.1", + "OpenGL* Support": "4.6", + "Multi-Format Codec Engines": "2", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "4", + "Device ID": "0x9A49", + "OpenCL* Support": "3.0", + "Intel® Thunderbolt™ 4": "Yes", + "Microprocessor PCIe Revision": "Gen 4", + "Chipset / PCH PCIe Revision": "Gen 3", + "Sockets Supported": "FCBGA1449", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "45.5x25", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "MIPI SoundWire*": "1.1", + "Intel® Deep Learning Boost (Intel® DL Boost)": "Yes", + "Intel® Adaptix™ Technology": "Yes", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2, Intel® AVX-512", + "Idle States": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Volume Management Device (VMD)": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Control-Flow Enforcement Technology": "Yes", + "Intel® Total Memory Encryption": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A3W0", + "Spec Code": "SRK1F", + "Ordering Code": "FH8069004529803", + "Shipping Media": "TRAY", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A3W0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8i3PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-8145U Processor (4M Cache, up to 3.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Max Turbo Frequency": "3.90 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Board", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999KT6", + "Ordering Code": "BKNUC8I3PNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999KT6": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-8145U", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.90 GHz", + "Processor Base Frequency": "2.10 GHz", + "Cache": "4 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.30 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "980657", + "Spec Code": "SRD1W", + "Ordering Code": "FJ8068404064702", + "Shipping Media": "TRAY", + "Stepping": "W0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "980657": "PCN\n |\n MDDS", + "999FFC": "PCN\n |\n MDDS", + "980656": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v5PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-8365U Processor (6M Cache, up to 4.10 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.60 GHz", + "Max Turbo Frequency": "4.10 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Board", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999KX5", + "Ordering Code": "BKNUC8V5PNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999KX5": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-8365U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.10 GHz", + "Processor Base Frequency": "1.60 GHz", + "Cache": "6 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "1.90 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "No", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2Z", + "Spec Code": "SRF9Z", + "Ordering Code": "CL8068404064503", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Provo Canyon", + "Status": "Launched", + "Launch Date": "Q1'20", + "Supported Operating Systems": "Windows 11, 64-bit*, Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Red Hat Linux*, Ubuntu 18.04 LTS*", + "Board Number": "NUC8v7PNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8665U Processor (8M Cache, up to 4.80 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.80 GHz", + "Warranty Period": "3 yrs", + "Description": "Intel® NUC 8 Pro Board", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, DP 1.2 via Type C, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "USB 3.1 (type C): 1 rear USB 3.1 (type A): 2 front, 1 rear USB 3.0: 1 header USB 2.0: 1 rear, 2 headers", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "# of Thunderbolt™ Ports": "1x Thunderbolt™ 3", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "999L05", + "Ordering Code": "BKNUC8V7PNB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999L05": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Whiskey Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8665U", + "Status": "Launched", + "Launch Date": "Q2'19", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.80 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics for 8th Generation Intel® Processors", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x3EA0", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1528", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "46x24", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Thermal Velocity Boost": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "999C2V", + "Spec Code": "SRF9W", + "Ordering Code": "CL8068404064305", + "Shipping Media": "TRAY", + "Stepping": "V0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999C2V": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 8th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q1'18", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i7DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i7-8650U Processor (8M Cache, up to 4.20 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "4", + "Total Threads": "8", + "Processor Base Frequency": "1.90 GHz", + "Max Turbo Frequency": "4.20 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "8th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.8", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "966370", + "Ordering Code": "BLKNUC7I7DNBE", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "966370": "PCN\n |\n MDDS" + }, + { + "Product Collection": "8th Generation Intel® Core™ i7 Processors", + "Code Name": "Products formerly Kaby Lake R", + "Vertical Segment": "Mobile", + "Processor Number": "i7-8650U", + "Status": "Launched", + "Launch Date": "Q3'17", + "Lithography": "14 nm", + "Total Cores": "4", + "Total Threads": "8", + "Max Turbo Frequency": "4.20 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "4.20 GHz", + "Processor Base Frequency": "1.90 GHz", + "Cache": "8 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.10 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2400, LPDDR3-2133", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "37.5 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.15 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096 x 2304@24Hz", + "Max Resolution (DP)‡": "4096 x 2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096 x 2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.4", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5917", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FC-BGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Intel® My WiFi Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® OS Guard": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "959152", + "Spec Code": "SR3L8", + "Ordering Code": "FJ8067703281718", + "Shipping Media": "TRAY", + "Stepping": "Y0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959152": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i3DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i3-7100U Processor (3M Cache, 2.40 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "No", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "958795", + "Ordering Code": "BLKNUC7I3DNBE", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958795": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i3-7100U", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.40 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951959", + "Spec Code": "SR2ZW", + "Ordering Code": "FJ8067702739738", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953354": "PCN\n |\n MDDS", + "951959": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 7th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Dawson Canyon", + "Status": "Launched", + "Launch Date": "Q3'17", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 10 IoT Enterprise*, Ubuntu 16.04*", + "Board Number": "NUC7i5DNB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-24 VDC", + "Processor Included": "Intel® Core™ i5-7300U Processor (3M Cache, up to 3.50 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.60 GHz", + "Max Turbo Frequency": "3.50 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Description": "7th Gen Commercial Intel® NUC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI 2.0a, 4-lane eDP 1.4", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen 3", + "PCI Express Configurations ‡": "PCIe x4: M.2 22x80 (key M) slot PCIe x1: M.2 22x30 (key E) slot", + "M.2 Card Slot (wireless)": "22x30 (key E) slot", + "M.2 Card Slot (storage)": "22x80 (key M) slot", + "# of USB Ports": "4", + "USB Configuration": "2x front and 2x rear USB 3.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "2B 2F +1", + "Total # of SATA Ports": "2", + "Max # of SATA 6.0 Gb/s Ports": "2", + "RAID Configuration": "2.5\" HDD/SSD + M.2 SATA/PCIe SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i219-LM 10/100/1000 Mbps Ethernet", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); HDMI_CEC; Internal 2x2 power connector", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "v11.7", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "958787", + "Ordering Code": "BLKNUC7I5DNBE", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "958787": "PCN\n |\n MDDS" + }, + { + "Product Collection": "7th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Kaby Lake", + "Vertical Segment": "Mobile", + "Processor Number": "i5-7300U", + "Status": "Launched", + "Launch Date": "Q1'17", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "3.50 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "3.50 GHz", + "Processor Base Frequency": "2.60 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "4 GT/s", + "TDP": "15 W", + "Configurable TDP-up Base Frequency": "2.70 GHz", + "Configurable TDP-up": "25 W", + "Configurable TDP-down Base Frequency": "800 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2133, LPDDR3-1866, DDR3L-1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "34.1 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 620", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "1.10 GHz", + "Graphics Video Max Memory": "32 GB", + "Graphics Output": "eDP/DP/HDMI/DVI", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2304@24Hz", + "Max Resolution (DP)‡": "4096x2304@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2304@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5916", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "1x4, 2x2, 1x2+2x1 and 4x1", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1356", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "42mm X 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® My WiFi Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "Yes with Intel® ME", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "953351", + "Spec Code": "SR340", + "Ordering Code": "FJ8067702739633", + "Shipping Media": "TRAY", + "Stepping": "H0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "953351": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Maple Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded Standard 7*", + "Board Number": "NUC5i3MYBE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-5010U Processor (3M Cache, 2.10 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Other features: M.2 WiFi & SSD slots, CustSol Hdr, 2.5” drive ready", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x mDP, 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "High-Speed Custom Solutions Connector (PCIe x4)", + "M.2 Card Slot (wireless)": "22x30", + "M.2 Card Slot (storage)": "22x42/80 \"B\" Keyed (SATA SSDs)", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "4 + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "2.5\" SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Front panel headset jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "10", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "938717", + "Ordering Code": "BLKNUC5I3MYBE", + "ECCN": "5A992C", + "CCATS": "740.17B1", + "US HTS": "8471500150", + "938717": "PCN\n |\n MDDS" + }, + { + "Product Collection": "5th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-5010U", + "Status": "Launched", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.10 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "10 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600 LPDDR 1333 /1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560x1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mmx 1.3mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939363", + "Spec Code": "SR23Z", + "Ordering Code": "FH8065801620406", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939363": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with 5th Generation Intel® Core™ Processors", + "Code Name": "Products formerly Maple Canyon", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded Standard 7*, Windows Server 2012 R2*, Windows Server 2008 R2*", + "Board Number": "NUC5i5MYBE", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 and 2.5\" Drive", + "# of Internal Drives Supported": "2", + "Lithography": "14 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-5300U Processor (3M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "2.30 GHz", + "Max Turbo Frequency": "2.90 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Other features: M.2 WiFi & SSD slots, CustSol Hdr, 2.5” drive ready", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V SO-DIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "2x mDP, 1x eDP", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "High-Speed Custom Solutions Connector (PCIe x4)", + "M.2 Card Slot (wireless)": "22x30", + "M.2 Card Slot (storage)": "22x42/80 \"B\" Keyed (SATA SSDs)", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0; 2x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 2", + "USB 3.0 Configuration (External + Internal)": "4 + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "2.5\" SSD + M.2 SATA SSD (RAID-0 RAID-1)", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Front panel headset jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "10", + "TPM": "Yes", + "TPM Version": "2.0", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "5th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Broadwell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-5300U", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Lithography": "14 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.90 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.90 GHz", + "Processor Base Frequency": "2.30 GHz", + "Cache": "3 MB", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Configurable TDP-down Base Frequency": "600 MHz", + "Configurable TDP-down": "7.5 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Processor Graphics ‡": "Intel® HD Graphics 5500", + "Graphics Base Frequency": "300 MHz", + "Graphics Max Dynamic Frequency": "900 MHz", + "Graphics Video Max Memory": "16 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "2560X1600@60Hz", + "Max Resolution (DP)‡": "3840x2160@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x1616", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "40mm x 24mm x 1.3mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Execute Disable Bit ‡": "Yes", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "939361", + "Spec Code": "SR23X", + "Ordering Code": "FH8065801620104", + "Shipping Media": "TRAY", + "Stepping": "F0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "939361": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with Intel® Celeron® Processors", + "Code Name": "Products formerly Atlas Canyon", + "Status": "Launched", + "Launch Date": "Q1'22", + "Supported Operating Systems": "Windows 11*, Windows 10*, Linux*", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "M.2 SSD", + "# of Internal Drives Supported": "1", + "Embedded Storage": "64 GB", + "Lithography": "10 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "19VDC", + "Processor Included": "Intel® Celeron® Processor N5105 (4M Cache, up to 2.90 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "4", + "Total Threads": "4", + "Processor Base Frequency": "2.00 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Description": "Other features: 64GB eMMC on-board.", + "Included Storage": "64GB eMMC", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR4-2933 1.2V SO-DIMM", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DP++/HDMI", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 3", + "M.2 Card Slot (wireless)": "1", + "M.2 Card Slot (storage)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front USB 3.2 Gen 1 and 2x rear USB 3.2 Gen 2; 2x USB 2.0", + "USB Revision": "3.2 Gen 2 / 3.2 Gen 1 / 2.0", + "Audio (back channel + front channel)": "1x 3.5mm stereo out jack, 1x 3.5mm microphone jack", + "Integrated LAN": "10/100/1000", + "Intel® HD Audio Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "99ANW4", + "Ordering Code": "BNUC11ATBC40S00", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99ANW4": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Jasper Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N5105", + "Status": "Launched", + "Launch Date": "Q1'21", + "Lithography": "10 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "4", + "Total Threads": "4", + "Burst Frequency": "2.90 GHz", + "Processor Base Frequency": "2.00 GHz", + "Cache": "4 MB L3 Cache", + "TDP": "10 W", + "Embedded Options Available": "No", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR4 LPDDR4x", + "Maximum Memory Speed": "2933 MHz", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® UHD Graphics", + "Graphics Base Frequency": "450 MHz", + "Graphics Burst Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "24", + "4K Support": "Yes, at 60Hz", + "Max Resolution (HDMI)‡": "4096x2160@60Hz", + "Max Resolution (DP)‡": "4096x2160@60Hz", + "Max Resolution (eDP - Integrated Flat Panel)‡": "4096x2160@60Hz", + "DirectX* Support": "12", + "OpenGL* Support": "4.5", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x4E61", + "OpenCL* Support": "1.2", + "Chipset / PCH PCIe Revision": "Gen 3", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "14", + "USB Revision": "2.0/3.2", + "Integrated LAN": "No", + "Integrated Wireless‡": "Intel® Wireless-AX MAC", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1338", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "35mm x 24mm", + "Intel® Gaussian & Neural Accelerator": "2.0", + "Intel® Image Processing Unit": "6.0", + "Intel® Smart Sound Technology": "Yes", + "Intel® Wake on Voice": "Yes", + "Intel® High Definition Audio": "Yes", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Speed Shift Technology": "Yes", + "Intel® Turbo Boost Max Technology 3.0 ‡": "No", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Smart Response Technology": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Software Guard Extensions (Intel® SGX)": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® OS Guard": "Yes", + "Intel® Boot Guard": "Yes", + "Mode-based Execute Control (MBEC)": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "99A98H", + "Spec Code": "SRKGV", + "Ordering Code": "DC8069704609808", + "Shipping Media": "TRAY", + "Stepping": "A1", + "ECCN": "5A992CN3", + "CCATS": "G167599", + "US HTS": "8542310001", + "99A98H": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with Intel® Celeron® Processors", + "Code Name": "Products formerly Chaco Canyon", + "Status": "Launched", + "Launch Date": "Q2'21", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CCHBN", + "Board Form Factor": "3.5” SBC (146mm x 101.6mm)", + "Internal Drive Form Factor": "M.2 SSD", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V - 24V", + "Processor Included": "Intel® Celeron® Processor N3350 (2M Cache, up to 2.40 GHz)", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3 (dual-channel, soldered-down)", + "ECC Memory Supported ‡": "No", + "Graphics Output": "HDMI 2.0, HDMI 1.4, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 2", + "M.2 Card Slot (wireless)": "22x30 slot (key E)", + "M.2 Card Slot (storage)": "22x80 slot (key M; NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "1x front and 1x rear USB 3.0; 2x rear USB 2.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "Serial Port via Internal Header": "Yes", + "Integrated LAN": "Intel® i211-AT (10/100/1000 Mbps)", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "99AHRR", + "Ordering Code": "BKNUC8CCHBN", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "99AHRR": "PCN" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with Intel® Celeron® Processors", + "Code Name": "Products formerly Chaco Canyon", + "Status": "Launched", + "Launch Date": "Q3'19", + "Supported Operating Systems": "Windows 10, 64-bit*", + "Board Number": "NUC8CCHB", + "Board Form Factor": "3.5” SBC (146mm x 101.6mm)", + "Internal Drive Form Factor": "M.2 SSD", + "Embedded Storage": "64 GB", + "Lithography": "14 nm", + "DC Input Voltage Supported": "12V - 24V", + "Processor Included": "Intel® Celeron® Processor N3350 (2M Cache, up to 2.40 GHz)", + "Total Cores": "2", + "Total Threads": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Included Storage": "64GB eMMC", + "Included Memory": "4GB LPDDR3 (dual-channel, soldered-down)", + "ECC Memory Supported ‡": "No", + "Graphics Output": "HDMI 2.0, HDMI 1.4, 4-lane eDP 1.4", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen 2", + "M.2 Card Slot (wireless)": "22x30 slot (key E)", + "M.2 Card Slot (storage)": "22x80 slot (key M; NVMe/SATA)", + "# of USB Ports": "4", + "USB Configuration": "1x front and 1x rear USB 3.0; 2x rear USB 2.0; 1x USB 3.0 and 2x USB 2.0 via internal headers", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "1/8\" line out", + "Integrated LAN": "Intel® i211-AT (10/100/1000 Mbps)", + "Additional Headers": "Front_panel (PWR, RST, 5V, 5Vsby, 3.3Vsby); Internal 2x2 power connector", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "999DKK", + "Ordering Code": "BKNUC8CCHB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8471500150", + "999DKK": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Celeron® Processor N Series", + "Code Name": "Products formerly Apollo Lake", + "Vertical Segment": "Mobile", + "Processor Number": "N3350", + "Status": "Launched", + "Launch Date": "Q3'16", + "Lithography": "14 nm", + "Use Conditions": "PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "2", + "Burst Frequency": "2.40 GHz", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L2 Cache", + "Scenario Design Power (SDP)": "4 W", + "TDP": "6 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L/LPDDR3 up to 1866 MT/s; LPDDR4 up to 2400 MT/s", + "Max # of Memory Channels": "2", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 500", + "Graphics Base Frequency": "200 MHz", + "Graphics Burst Frequency": "650 MHz", + "Graphics Video Max Memory": "8 GB", + "Graphics Output": "eDP/DP/HDMI/MIPI-DSI", + "Execution Units": "12", + "DirectX* Support": "Yes", + "OpenGL* Support": "Yes", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "No", + "Intel® Clear Video HD Technology": "Yes", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x5A85", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x4 + 1x2 or 4x1 or 2x1+1x2 + 1x2", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "8", + "USB Revision": "2.0/3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "2", + "Sockets Supported": "FCBGA1296", + "Max CPU Configuration": "1", + "TJUNCTION": "105°C", + "Package Size": "24mm x 31mm", + "Intel® Turbo Boost Technology ‡": "No", + "Secure Boot": "Yes", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Smart Connect Technology": "No", + "Intel® Smart Response Technology": "No", + "Intel® Virtualization Technology for Itanium (VT-i)": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Memory Protection Extensions (Intel® MPX)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "No", + "Intel® OS Guard": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "951485", + "Spec Code": "SR2YB", + "Ordering Code": "FH8066802980002", + "Shipping Media": "TRAY", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G154294", + "US HTS": "8542310001", + "983218": "PCN\n |\n MDDS", + "951834": "PCN\n |\n MDDS", + "951485": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® NUC Board with Intel® Atom® Processors", + "Code Name": "Products formerly Thin Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Supported Operating Systems": "Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows Embedded 8.1 Industry*, Windows Embedded 8 Standard*, Windows Embedded Standard 7*", + "Board Number": "DE3815TYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Embedded Storage": "4 GB", + "Lithography": "22 nm", + "TDP": "5 W", + "DC Input Voltage Supported": "12V-24VDC", + "Back-to-BIOS Button": "No", + "Processor Included": "Intel Atom® Processor E3815 (512K Cache, 1.46 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Atom/Fanless/TPM/4GB-eMMC/HDMI/VGA Hdr/eDP/LAN/Serial Hdr", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L-1066 1.35V SO-DIMM", + "Max # of Memory Channels": "1", + "Max Memory Bandwidth": "8.53 GB/s", + "Max # of DIMMs": "1", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI, VGA Header, eDP", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "Gen2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "0", + "M.2 Card Slot (wireless)": "PCIe mini-card (half-length)", + "# of USB Ports": "6", + "USB Configuration": "1x front USB 3.0 and 2x rear USB 2.0; 3x USB 2.0 via internal headers", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "2 3", + "USB 3.0 Configuration (External + Internal)": "1 (Front)", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "0", + "# of eSATA Ports": "0", + "# of Serial Ports": "2", + "Serial Port via Internal Header": "Yes", + "Audio (back channel + front channel)": "Back panel headphone/microphone jack", + "Integrated LAN": "10/100/1000Mbps", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "No", + "Max CPU Configuration": "1", + "Package Size": "101.60mm x 101.60mm x 28.8mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "TPM": "Yes", + "TPM Version": "1.2", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® AES New Instructions": "Yes", + "Anti-Theft Technology": "No" + }, + { + "Product Collection": "Intel Atom® Processor E Series", + "Code Name": "Products formerly Bay Trail", + "Vertical Segment": "Embedded", + "Processor Number": "E3815", + "Status": "Launched", + "Launch Date": "Q4'13", + "Lithography": "22 nm", + "Use Conditions": "Automotive, Industrial Commercial Temp, Industrial Extended Temp, Embedded Broad Market Commercial Temp", + "Total Cores": "1", + "Total Threads": "1", + "Processor Base Frequency": "1.46 GHz", + "Cache": "512 KB L2 Cache", + "TDP": "5 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "8 GB", + "Memory Types": "DDR3L 1067", + "Max # of Memory Channels": "1", + "ECC Memory Supported ‡": "Yes", + "Processor Graphics ‡": "Intel® HD Graphics for Intel Atom® Processor Z3700 Series", + "Graphics Base Frequency": "400 MHz", + "Graphics Burst Frequency": "400 MHz", + "Intel® Quick Sync Video": "Yes", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x4, x2, x1", + "Max # of PCI Express Lanes": "4", + "USB Revision": "2.0, 3.0", + "Total # of SATA Ports": "2", + "Integrated LAN": "No", + "Integrated IDE": "No", + "UART": "Yes", + "Sockets Supported": "FCBGA1170", + "TJUNCTION": "-40°C to 110°C", + "Package Size": "25mm x 27mm", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® HD Audio Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "935360", + "Spec Code": "SR1XA", + "Ordering Code": "FH8065301567414", + "Shipping Media": "TRAY", + "Stepping": "D0", + "ECCN": "5A992CN3", + "CCATS": "G143235", + "US HTS": "8542310001", + "932048": "PCN\n |\n MDDS", + "935360": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Board", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D34010WYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i3-4010U Processor (3M Cache, 1.70 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "931573", + "Ordering Code": "BLKD34010WYB", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "931573": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i3 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i3-4010U", + "Status": "Launched", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.70 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4400", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3200x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "Max Resolution (VGA)‡": "N/A", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA16", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Matrix Storage Technology": "No", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929013", + "Spec Code": "SR16Q", + "Ordering Code": "CL8064701478202", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929013": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Board", + "Code Name": "Products formerly Wilson Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'13", + "Supported Operating Systems": "Windows 10, 32-bit*, Windows 10, 64-bit*, Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*", + "Board Number": "D54250WYB", + "Board Form Factor": "UCFF (4\" x 4\")", + "Socket": "Soldered-down BGA", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "15 W", + "DC Input Voltage Supported": "12-19 VDC", + "Processor Included": "Intel® Core™ i5-4250U Processor (3M Cache, up to 2.60 GHz)", + "Intel vPro® Platform Eligibility ‡": "No", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.30 GHz", + "Max Turbo Frequency": "2.60 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L-1333/1600 1.35V", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "Max # of DIMMs": "2", + "ECC Memory Supported ‡": "No", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Mini-DP 1.2; Mini-HDMI 1.4a", + "Intel® Clear Video Technology": "Yes", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "Gen2", + "PCI Express Configurations ‡": "Half-length MiniPCI card with PCIe x1 lane", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "6", + "USB Configuration": "2x front and 2x rear USB 3.0", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "0 + 0", + "USB 3.0 Configuration (External + Internal)": "2B 2F + 0", + "Total # of SATA Ports": "1", + "Max # of SATA 6.0 Gb/s Ports": "1", + "RAID Configuration": "N/A", + "Audio (back channel + front channel)": "7.1 digital + analog stereo headset", + "Integrated LAN": "Intel® Ethernet Connection I218-V", + "Integrated Wireless‡": "No", + "Integrated Bluetooth": "No", + "Consumer Infrared Rx Sensor": "Yes", + "Additional Headers": "FRONT_PANEL, 2x USB2.0, DC_IN, CUST_SOL (CEC, WDT, DMIC)", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "TPM": "No", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® AES New Instructions": "Yes", + "MM#": "931580", + "Ordering Code": "BLKD54250WYB", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471500150", + "931580": "PCN" + }, + { + "Product Collection": "4th Generation Intel® Core™ i5 Processors", + "Code Name": "Products formerly Haswell", + "Vertical Segment": "Mobile", + "Processor Number": "i5-4250U", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Max Turbo Frequency": "2.60 GHz", + "Intel® Turbo Boost Technology 2.0 Frequency‡": "2.60 GHz", + "Processor Base Frequency": "1.30 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "15 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3L 1333/1600, LPDDR3 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 5000", + "Graphics Base Frequency": "200 MHz", + "Graphics Max Dynamic Frequency": "1.00 GHz", + "Graphics Video Max Memory": "2 GB", + "Graphics Output": "eDP/DP/HDMI", + "Max Resolution (HDMI)‡": "3280x2000@60Hz", + "Max Resolution (DP)‡": "3200x2000@60Hz", + "DirectX* Support": "11.2/12", + "OpenGL* Support": "4.3", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "No", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0xA26", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "4x1, 2x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "4", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "Integrated LAN": "No", + "Integrated IDE": "No", + "General Purpose IO": "Yes", + "UART": "Yes", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Sockets Supported": "FCBGA1168", + "Max CPU Configuration": "1", + "TJUNCTION": "100°C", + "Package Size": "40mm x 24mm x 1.5mm", + "Intel® Turbo Boost Technology ‡": "2.0", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® Transactional Synchronization Extensions": "No", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2, Intel® AVX2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Thermal Monitoring Technologies": "Yes", + "Intel® ME Firmware Version": "9.5", + "Intel® HD Audio Technology": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Connect Technology": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "Yes", + "Secure Key": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "929010", + "Spec Code": "SR16M", + "Ordering Code": "CL8064701463101", + "Shipping Media": "TRAY", + "Stepping": "C0", + "ECCN": "5A992CN3", + "CCATS": "G071701++", + "US HTS": "8542310001", + "929010": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Board", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "DCP847SKE", + "Board Form Factor": "UCFF (mini PC)", + "Internal Drive Form Factor": "2.5\" Drive", + "# of Internal Drives Supported": "1", + "Lithography": "32 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Celeron® Processor 847 (2M Cache, 1.10 GHz)", + "Total Cores": "2", + "Processor Base Frequency": "1.10 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1333", + "Max # of DIMMs": "2", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB Revision": "2.0, 3.0", + "USB 2.0 Configuration (External + Internal)": "3 2", + "Integrated LAN": "10/100/1000", + "Intel® HD Audio Technology": "Yes", + "Anti-Theft Technology": "Yes", + "MM#": "925742", + "Ordering Code": "BLKDCP847SKE", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "925742": "PCN" + }, + { + "Product Collection": "Legacy Intel® Celeron® Processor", + "Code Name": "Products formerly Sandy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "847", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Lithography": "32 nm", + "Total Cores": "2", + "Processor Base Frequency": "1.10 GHz", + "Cache": "2 MB L3 Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1066/1333", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "21.3 GB/s", + "ECC Memory Supported ‡": "No", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "800 MHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "No", + "Macrovision* License Required": "No", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "100", + "Package Size": "31.0mm x 24.0mm (BGA1023)", + "Intel® Turbo Boost Technology ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® Hyper-Threading Technology ‡": "No", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® SSE4.1, Intel® SSE4.2", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "MM#": "912341", + "Spec Code": "SR08N", + "Ordering Code": "AV8062700852800", + "Shipping Media": "TRAY", + "Stepping": "Q0", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "912341": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Board", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "D33217CK", + "Board Form Factor": "UCFF (mini PC)", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Core™ i3-3217U Processor (3M Cache, 1.80 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of DIMMs": "2", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "HDMI Thunderbolt", + "# of Displays Supported ‡": "2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB Revision": "2.0", + "USB 2.0 Configuration (External + Internal)": "3 2", + "Integrated LAN": "None", + "Intel® HD Audio Technology": "Yes", + "Anti-Theft Technology": "Yes", + "MM#": "923298", + "Ordering Code": "BLKD33217CK", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "923298": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Legacy Intel® NUC Board", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Supported Operating Systems": "Windows 8.1, 32-bit*, Windows 8.1, 64-bit*, Windows 8, 32-bit*, Windows 8, 64-bit*, Windows 7, 32-bit*, Windows 7, 64-bit*, Windows XP Professional x64 Edition*", + "Board Number": "D33217GKE", + "Board Form Factor": "UCFF (mini PC)", + "Internal Drive Form Factor": "mSATA SSD", + "# of Internal Drives Supported": "1", + "Lithography": "22 nm", + "TDP": "17 W", + "DC Input Voltage Supported": "19V", + "Back-to-BIOS Button": "No", + "Board Chipset": "Mobile Intel® QS77 Express Chipset", + "Processor Included": "Intel® Core™ i3-3217U Processor (3M Cache, 1.80 GHz)", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Warranty Period": "3 yrs", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "16 GB", + "Memory Types": "DDR3 1333/1600", + "Max # of DIMMs": "2", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Dual HDMI", + "# of Displays Supported ‡": "2", + "PCIe Mini Card Slot (Half Length)": "1", + "PCIe Mini Card Slot (Full Length)": "1", + "# of USB Ports": "5", + "USB Revision": "2.0", + "USB 2.0 Configuration (External + Internal)": "3 2", + "Integrated LAN": "10/100/1000", + "Intel® HD Audio Technology": "Yes", + "Anti-Theft Technology": "Yes", + "MM#": "924221", + "Ordering Code": "BLKD33217GKE", + "ECCN": "5A992C", + "CCATS": "G400445+", + "US HTS": "8471500150", + "924221": "PCN" + }, + { + "Product Collection": "Legacy Intel® Core™ Processors", + "Code Name": "Products formerly Ivy Bridge", + "Vertical Segment": "Mobile", + "Processor Number": "i3-3217U", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Lithography": "22 nm", + "Total Cores": "2", + "Total Threads": "4", + "Processor Base Frequency": "1.80 GHz", + "Cache": "3 MB Intel® Smart Cache", + "Bus Speed": "5 GT/s", + "TDP": "17 W", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Max Memory Size (dependent on memory type)": "32 GB", + "Memory Types": "DDR3/L/-RS 1333/1600", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "25.6 GB/s", + "ECC Memory Supported ‡": "No", + "Processor Graphics ‡": "Intel® HD Graphics 4000", + "Graphics Base Frequency": "350 MHz", + "Graphics Max Dynamic Frequency": "1.05 GHz", + "Graphics Output": "eDP/DP/HDMI/SDVO/CRT", + "Intel® Quick Sync Video": "Yes", + "Intel® InTru™ 3D Technology": "Yes", + "Intel® Flexible Display Interface (Intel® FDI)": "Yes", + "Intel® Clear Video HD Technology": "Yes", + "# of Displays Supported ‡": "3", + "Device ID": "0x166", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "1x16, 2x8, 1x8 2x4", + "Max # of PCI Express Lanes": "16", + "Sockets Supported": "FCBGA1023", + "Max CPU Configuration": "1", + "TJUNCTION": "105 C", + "Package Size": "31mm x 24mm", + "Intel® Turbo Boost Technology ‡": "No", + "Intel® Hyper-Threading Technology ‡": "Yes", + "Intel® 64 ‡": "Yes", + "Instruction Set": "64-bit", + "Instruction Set Extensions": "Intel® AVX", + "Intel® My WiFi Technology": "Yes", + "4G WiMAX Wireless Technology": "Yes", + "Idle States": "Yes", + "Enhanced Intel SpeedStep® Technology": "Yes", + "Intel® Demand Based Switching": "No", + "Thermal Monitoring Technologies": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Identity Protection Technology ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® AES New Instructions": "No", + "Intel® Trusted Execution Technology ‡": "No", + "Execute Disable Bit ‡": "Yes", + "Anti-Theft Technology": "Yes", + "Intel® Virtualization Technology (VT-x) ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® VT-x with Extended Page Tables (EPT) ‡": "Yes", + "MM#": "919707", + "Spec Code": "SR0N9", + "Ordering Code": "AV8063801058401", + "Shipping Media": "TRAY", + "Stepping": "L1", + "ECCN": "3A991", + "CCATS": "NA", + "US HTS": "8542310001", + "919707": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board D50TNP1SB (1) 1U half-width module tray – iPN K53210 (1) 1U compute module air duct – iPN K61940 (2) 1U  PCIe Riser (x16 PCIe slot and M.2 Connector) TNP1URISER (2) 1U riser bracket to support TNP1URISER – iPN K25206 (1) 1U Air-Cooled front Heat Sink TNP1UHSF (1) 1U Air-Cooled Rear Heat Sink TNP1UHSB (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor family iPN J98484 (2) M.2 heat sink assembly TNPM2HS", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 1U high-density half-width compute module integrated with Intel® Server Board DDR4 D50TNP1SB for large memory capability and flexible configuration options for the Intel® Server Chassis FC2000 Family", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "4.0", + "PCIe OCuLink Connectors (NVMe support)": "8", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "•One USB 3.0 port •Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A2DZ", + "Ordering Code": "D50TNP1MHCPAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A2DZ": "PCN" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board DDR4 D50TNP1SBCR (1) 1U half-width module tray – iPN K53210 (1) 1U compute module air duct – iPN K61940 (2) 1U PCIe Riser (x16 PCIe slot and M.2 Connector) for D50TNP1SBCR board TNP1UCRRISER (2) 1U riser bracket to support TNP1UCRRISER – iPN K25206 (1) 1U Air-Cooled front Heat Sink TNP1UHSF (1) 1U Air-Cooled Rear Heat Sink TNP1UHSB (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor family iPN J98484 (2) M.2 heat sink assembly TNPM2HS", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 1U high-density half-width compute module integrated with Intel® Server Board DDR4 D50TNP1SBCR for large memory capability and flexible configuration options for the Intel® Server Chassis FC2000 Family", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "4.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "•One USB 3.0 port •Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A84D", + "Ordering Code": "D50TNP1MHCRAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A84D": "PCN" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "270 W", + "Included Items": "(1) Intel® Server Board DDR4 D50TNP1SBCR (1) 1U half-width module tray – iPN K53210 (2) 1U PCIe Riser (x16 PCIe slot and M.2 Connector) for D50TNP1SBCR board TNP1UCRRISER (2) 1U riser bracket to support TNP1UCRRISER – iPN K25206 (1) Memory DIMM Removal Tool TNPDMMLTHTL (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor family – iPN J98484 (1) Liquid-Cooling Loop Kit TNPLCLPCM (includes 8 pcs of DIMM clips – iPC FXXWKLCDMCLP)", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 1U high-density half-width compute module integrated with Intel® Server Board DDR4 D50TNP1SBCR for large memory capability and flexible configuration options for the Intel® Server Chassis FC2000 Family", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "4.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "•One USB 3.0 port •Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A84F", + "Ordering Code": "D50TNP1MHCRLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "270 W", + "Included Items": "(1) Intel® Server Board D50TNP1SB (1) 2U full-width module tray – iPN K85397 (1) 2U accelerator module air duct – iPN K85780 (2) 2U PCIe Riser (Two x16 PCIe slots, M.2 Connector and U.2 Connector) TNP2URISER, with U.2 PCIe* NVMe* SSD adapter card included (2) 2U riser bracket to support TNP2URISER – iPN K25207 (2) 2.5” tool-less SSD drive carrier – iPN J36439 (2) M.2 heat sink assembly TNPM2HS (1) 2U Air-Cooled front Heat Sink TNP2UHSF (1) 2U Air-Cooled Rear Heat Sink TNP2UHSB (2) Processor clip, for 3rd Gen Intel® Xeon® Scalable processor family – iPN J98484 (1) 2U PCIe Accelerator Riser (two x16 PCIe slots) TNPACCLRISER1 (1) 2U PCIe Accelerator Riser (two x16 PCIe slots) TNPACCLRISER2 (1) Accelerator module power connector board – iPC TNPACCLNBRD (2) Power cable 110 mm to connect TNPACCLRISER1 and TNPACCLRISER 2 to TNPACCLNBRD – iPN K73519 (1 each) OCuLink cable 740 mm and 710 mm – iPN K87949 (2) OCuLink cable 260 mm – iPN K87954", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 2U high-density full-width Acceleration Module integrated with the Intel® Server Board D50TNP1SB intended to address acceleration solutions that support up to four 300 W PCIe* accelerator add-in cards.", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series modules", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "120", + "PCI Express Revision": "4.0", + "PCIe OCuLink Connectors (NVMe support)": "8", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "32", + "Riser Slot 4: Total # of Lanes": "32", + "# of USB Ports": "3", + "USB Configuration": "• One USB 3.0 port • Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A2F4", + "Ordering Code": "D50TNP2MFALAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A2F4": "PCN" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q3'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board D50TNP1SB (1) 2U half-width module tray – iPN K74857 (1) 1U storage module air duct right – iPN K88592 (1) 1U storage module air duct left – iPN K88590 (2) 1U riser bracket to support TNP1URISER – iPN K25206 (2) M.2 heat sink assembly TNPM2HS (1) 1U Air-Cooled front Heat Sink TNP1UHSF (1) 1U Air-Cooled Rear Heat Sink TNP1UHSB (2) Processor clip, for 3rd Gen Intel® Xeon® Scalable processor family – iPN J98484 (1) Storage Compute Module Docking Board TNPSTDCKBRD (2) OCuLink cable 520 mm – iPN K73563 (2) OCuLink cable 125 mm – iPN K73567 (2) OCuLink cable 145 mm – iPN K73568 (2) OCuLink cable 140 mm – iPN K73570 (1 each) OCuLink connector covers for J25, J26, J29, and J30 – iPN K74231 (1 each) OCuLink connector covers for J27 and J28 – iPN K74230", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 2U high-density Storage module integrated with the Intel® Server Board D50TNP1SB intended for dense and fast storage solutions, supports up to 16 EDSFF E1.L NVMe* SSDs.", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series modules", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "56", + "PCI Express Revision": "4.0", + "PCIe OCuLink Connectors (NVMe support)": "8", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "24", + "# of USB Ports": "3", + "USB Configuration": "• One USB 3.0 port • Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A27J", + "Ordering Code": "D50TNP2MHSTAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A27J": "PCN" + }, + { + "Product Collection": "Intel® Server D50TNP Family", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "270 W", + "Included Items": "(1) Intel® Server Board D50TNP1SB (1) 2U half-width module tray – iPN K53211 (1) 2U management module air duct – iPN K61939 (2) 2U PCIe Riser (Two x16 PCIe slots, M.2 Connector and U.2 Connector) TNP2URISER, with U.2 PCIe* NVMe* SSD adapter card included (2) 2U PCIe Riser (Two x16 PCIe slots, M.2 Connector and U.2 Connector) TNP2URISER (1) 2U Air-Cooled front Heat Sink TNP2UHSF (1) 2U Air-Cooled Rear Heat Sink TNP2UHSB (2) Processor clip, for 3rd Gen Intel® Xeon® Scalable processor family – iPN J98484 (2) M.2 heat sink assembly TNPM2HS (2) 2.5” tool-less SSD drive carrier – iPN J36439", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A 2U high-density Management Module integrated with the Intel® Server Board D50TNP1SB and up to 16 DDR4 DIMMs + up to 8 Intel® Optane™ persistent memory 200 series modules.", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series modules", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "56", + "PCI Express Revision": "4.0", + "PCIe OCuLink Connectors (NVMe support)": "8", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "24", + "# of USB Ports": "3", + "USB Configuration": "• One USB 3.0 port • Two USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Advanced Management Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A2F1", + "Ordering Code": "D50TNP2MHSVAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A2F1": "PCN" + }, + { + "Product Collection": "Intel® Server D40AMP Family", + "Code Name": "Products formerly American Pass", + "Launch Date": "Q4'21", + "Status": "Launched", + "Expected Discontinuance": "2024", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Supported Operating Systems": "VMware ESXi* 7.0, Windows Server 2022*, Windows Server 2019*, Red Hat Enterprise Linux 8.4*, SUSE Linux Enterprise Server 15 SP3*", + "Chassis Form Factor": "Rack", + "Board Form Factor": "8.33” x 21.5”", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Socket": "Dual Socket-P4 4189", + "TDP": "205 W", + "System Board": "Intel® Server Board D40AMP1SB", + "Target Market": "High Performance Computing", + "Rack-Friendly Board": "Yes", + "Included Items": "(1) 1U half-width module tray – iPN M28502-xxx (1) Intel® Server Board D40AMP1SB (1) 1U compute module airduct – iPN K61940-xxx (2) 1U low-profile PCIe* riser card –TNP1UCRRISER (2) 1U riser bracket to support TNP1UCRRISER- iPN K25206-xxx (1) 1U Air-Cooled front Heat Sink TNP1UHSF (1) 1U Air-Cooled Rear Heat Sink TNP1UHSB (2) Processor carrier clip, for 3rd Gen Intel® Xeon® processor Scalable supported by D40AMP product family – iPN J98484-xxx (2) M.2 heatsink assembly TNPM2HS", + "Description": "1U half-width compute module with the Intel® Server Board D40AMP at its heart and supporting the 3rd Gen Intel® Xeon® Scalable processors, it builds upon its features to provide support for internal storage, and PCIe* 4.0 expansion options", + "Storage Profile": "All-Flash Storage Profile", + "Memory Types": "DDR4 (RDIMM) 3DS-RDIMM Load Reduced DDR4 (LRDIMM) 3DS-LRDIMM", + "Max # of DIMMs": "24", + "Max Memory Size (dependent on memory type)": "6 TB", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "(1) USB 3.0 ports (2) USB 3.0 ports (dual-stack on break-out cable)", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "RAID Configuration": "0/1/5", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Intel® Node Manager": "Yes", + "Intel® On-Demand Redundant Power": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Flex Memory Access": "Yes", + "TPM Version": "2.0", + "MM#": "99AH9L", + "Ordering Code": "D40AMP1MHCPAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99AH9L": "PCN" + }, + { + "Product Collection": "Intel® Compute Module HNS7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "230 W", + "Included Items": "(1) – Intel Server Board S7200APR (3) – System fans (1) – Slot 1 Riser Card (1) – Slot 2 Riser Card (1) – I/O Bridge Board (1) – Power Docking Board (1) – 130mm 2x7 Fan Assembly Cable (1) – 140mm 2x3 Internal Power Cable (1) – Air Duct (1) – Plastic Cover (1) – Processor Heat Sink", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "Intel® Server S7200APR Product Family provides parallelized workflows in the HPC market, featuring features support for Intel® Xeon® Phi™ processors, with 6 DIMMs (1DPC) and optional support for Intel® Omni Path® Fabric Technology. Air cooled node", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel(R) Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Compute Module HNS7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "320 W", + "Included Items": "(1) – Intel Server Board S7200APR (3) – System fans (1) – Slot 1 Riser Card (1) – Slot 2 Riser Card (1) – I/O Bridge Board (1) – Power Docking Board (1) – 130mm 2x7 Fan Assembly Cable (1) – 140mm 2x3 Internal Power Cable (1) – Air Duct (1) – Plastic Cover (1) – Liquid Assisted Air Cooling Unit", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "Intel® Server S7200APR Product Family provides parallelized workflows in the HPC market, featuring features support for Intel® Xeon® Phi™ processors, with 6 DIMMs (1DPC) and optional support for Intel® Omni Path® Fabric Technology.Liquid air cooled node.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel(R) Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Compute Module HNS7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q2'18", + "EOL Announce": "Monday, April 30, 2018", + "Last Order": "Sunday, September 30, 2018", + "Last Receipt Attributes": "Sunday, December 30, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "230 W", + "Included Items": "Intel(R) Server Compute Module, including, (1) Intel(R) Server Board S7200AP, (1) Node Power Board FH2000NPB, (1) Bridge Board (FHWAPBGB), (1) Slot 1 Riser Card (FHW1UAP16RISER2), (1) Slot 2 Riser Card (FHW1UAP20RISER2), (3) 40x56mm dual rotor fans (FXX4056DRFAN2), (1) 1U passive heatsink (AXXAPHS), (1) air duct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "Intel® Server S7200AP Product Family provides parallelized workflows in the HPC market, featuring features support for Intel® Xeon® Phi™ processors, with 6 DIMMs (1DPC) and optional support for Intel® Omni Path® Fabric Technology.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel(R) Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "(2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "942355", + "Ordering Code": "HNS7200AP", + "ECCN": "5A992CN3", + "CCATS": "G074226+", + "US HTS": "8473301180", + "942355": "PCN" + }, + { + "Product Collection": "Intel® Compute Module HNS7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q2'18", + "EOL Announce": "Monday, April 30, 2018", + "Last Order": "Sunday, September 30, 2018", + "Last Receipt Attributes": "Sunday, December 30, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "230 W", + "Included Items": "Intel(R) Server Compute Module, including, (1) Intel(R) Server Board S7200APL, (1) Node Power Board FH2000NPB, (1) Bridge Board (FHWAPBGB), (1) Slot 1 Riser Card (FHW1UAP16RISER2), (1) Slot 2 Riser Card (FHW1UAP20RISER2), (3) 40x56mm dual rotor fans (FXX4056DRFAN2), (1) 1U passive heatsink (AXXAPHS), (1) air duct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "Intel® Server S7200AP Product Family provides parallelized workflows in the HPC market, featuring features support for Intel® Xeon® Phi™ processors, with 6 DIMMs (1DPC) and optional support for Intel® Omni Path® Fabric Technology.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel(R) Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "(2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "950091", + "Ordering Code": "HNS7200APL", + "ECCN": "5A992CN3", + "CCATS": "G074226+", + "US HTS": "8473301180", + "950091": "PCN" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Sunday, January 13, 2019", + "Last Order": "Thursday, February 14, 2019", + "Last Receipt Attributes": "Sunday, July 14, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPNR w/two 1Gb ports (Intel® Ethernet Controller I350); (1) 6Gb/s bridge board (FHWKPTPBGB); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TPR for higher memory capability and flexible configuration options for the Intel® Server Chassis H2000G family.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "1 GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Sunday, January 13, 2019", + "Last Order": "Thursday, February 14, 2019", + "Last Receipt Attributes": "Sunday, July 14, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPR w/two 1Gb ports (Intel® Ethernet Controller I350 )w/TPM2.0 ; (1) 12Gb/s bridge board (FHWKPTPBGB24); (1) node power board (FH2000NPB24); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) PCI Express* x16 rIOM riser and rIOM carrier board kit (AXXKPTPM2IOM); (1) Dual SFP+ port 10GBASE-T I/O module (AXX10GBNIAIOM); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "Yes", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TPR w/TPM2.0 for higher memory capability and flexible configuration options for the Intel® Server Chassis H2224XXKR2/H2224XXLR2", + "Max Memory Size (dependent on memory type)": "1.02 GB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "6", + "# of Serial Ports": "1", + "# of LAN Ports": "4", + "Integrated LAN": "2x 1GbE + 2x 10GbE SFP+", + "Integrated SAS Ports": "6", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPR w/two 1Gb ports (Intel® Ethernet Controller I350); (1) 12Gb/s bridge board (FHWKPTPBGB24); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) Dual RJ-45 port 10GBASE-T I/O module (AXX10GBTWLHW3); (1) PCI Express* x16 rIOM riser and rIOM carrier board kit (AXXKPTPM2IOM); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TPR for higher memory capability and flexible configuration options for the Intel® Server Chassis H2224XXKR2/H2224XXLR2.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "6", + "RAID Configuration": "NO", + "# of Serial Ports": "1", + "# of LAN Ports": "4", + "Integrated LAN": "2x 1GbE + 2x 10GbE RJ45", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated SAS Ports": "6", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPR w/two 1Gb ports (Intel® Ethernet Controller I350); (1) 12Gb/s bridge board (FHWKPTPBGB24); (1) node power board (FH2000NPB24); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) PCI Express* x16 rIOM riser and rIOM carrier board kit (AXXKPTPM2IOM); (1) Dual SFP+ port 10GBASE-T I/O module (AXX10GBNIAIOM); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TPR for higher memory capability and flexible configuration options for the Intel® Server Chassis H2224XXKR2/H2224XXLR2", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "6", + "# of Serial Ports": "1", + "# of LAN Ports": "4", + "Integrated LAN": "2x 1GbE + 2x 10GbE SFP+", + "Integrated SAS Ports": "6", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPFR w/two 1Gb ports (Intel® Ethernet Controller X-540) and Single InfiniBand* FDR IB port (Connect-IB* x8, QSFP+); (1) 6Gb/s bridge board (FHWKPTPBGB); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high density compute module integrated with Intel® Server Board S2600TPFR for higher memory capability and flexible configuration options for the Intel® Server Chassis H2000G family.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600TPR w/two 1Gb ports (Intel® Ethernet Controller I350); (1) 6Gb/s bridge board (FHWKPTPBGB); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TPR for higher memory capability and flexible configuration options for the Intel® Server Chassis H2000G family.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "support", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module including (1) Intel® Server Board S2600TPF, (1) bridge board, (1) node power board, (1) PCIe x16 riser card, (2) 1U passive 91.5mm x 91.5mm heat sink, (3) 4056 dual rotor fan, (1) airduct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high density compute module integrated with Intel® Server Board S2600TPF for higher memory capability and flexible configuration options for the Intel® Server Chassis H2000 family.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2 x 1-GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "935290", + "Ordering Code": "HNS2600TPF", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "935290": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Module HNS2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module including (1) Intel® Server Board S2600TP, (1) bridge board, (1) node power board, (1) PCIe x16 riser card, (2) 1U passive 91.5mm x 91.5mm heat sink, (3) 4056 dual rotor fan, (1) airduct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600TP for higher memory capability and flexible configuration options for the Intel® Server Chassis H2000 family.", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW RAID 5 (LSI + RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2 x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "935289", + "Ordering Code": "HNS2600TP", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "935289": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Module HNS2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600KPFR w/two 1Gb ports (Intel® Ethernet Controller X-540) and Single InfiniBand* FDR IB port (Connect-IB* x8, QSFP+); (1) 6Gb/s bridge board (FHWKPTPBGB); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600KPFR for higher memory bandwidth, InfiniBand* FDR (56-Gb/s), and flexible configuration options for Intel® Server Chassis H2000 family.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module includes: (1) Intel® Server Board S2600KPR w/two 1Gb ports (Intel® Ethernet Controller I350); (1) 6Gb/s bridge board (FHWKPTPBGB); (1) node power board (FH2000NPB2); (1) one slot PCIe x16 riser card (FHW1U16RISER2); (1) front 1U passive heat sinks (FXXEA84X106HS); (1) rear 1U passive heat sink (FXXCA91X91HS); (3) 4056 dual rotor fan (FXX4056DRFAN2); (1) airduct; (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600KPR for higher memory bandwidth and flexible configuration options for the Intel® Server Chassis H2000G family.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Compute Module HNS2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module including (1) Intel® Server Board S2600KP, (1) bridge board, (1) node power board, (1) PCIe x16 riser card, (2) 1U passive 91.5mm x 91.5mm heat sink, (3) 4056 dual rotor fan, (1) airduct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600KP for higher memory bandwidth and flexible configuration options for the Intel® Server Chassis H2000 family.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2 x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "933687", + "Ordering Code": "HNS2600KP", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "933687": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Compute Module HNS2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v3 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Integrated compute module including (1) Intel® Server Board S2600KPF, (1) bridge board, (1) node power board, (1) PCIe x16 riser card, (2) 1U passive 91.5mm x 91.5mm heat sink, (3) 4056 dual rotor fan, (1) airduct, and (1) 1U node tray", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600KPF for higher memory bandwidth, InfiniBand* FDR (56-Gb/s), and flexible configuration options for Intel® Server Chassis H2000 family.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2 x 1-GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "933686", + "Ordering Code": "HNS2600KPF", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "933686": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q1'20", + "Expected Discontinuance": "2023", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "250 W", + "Included Items": "(1) Server board (1) 1U compute module tray (2) Intel® Xeon® Platinum 9221 Processor (2) 1U riser assembly (2) Processor heatsinks", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "2", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999MVJ", + "Ordering Code": "S9232WK1HAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999MVJ": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Launch Date": "Q2'19", + "Status": "Discontinued", + "Expected Discontinuance": "2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.4*, CentOS 7.6*", + "Chassis Form Factor": "2U Rack front IO", + "Board Form Factor": "8.33” x 21.5”", + "TDP": "350 W", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Included Items": "(1) Intel® Server Chassis, FC2HLC21W3X (2) Intel® Server System S9248WK1HLCX Compute Module. (48) Micron 16GB RDIMM, MTA18ASF2G72PDZ-2G9E1 (4) Intel® SSD D3-S4510, SSDSCKKB240G801 (2) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16, 100HFA016LS (2) Remote Management Module 4 Lite 2 AXXRMM4LITE2 (1) I/O Breakout cable spare kit AXXCONNTDBG", + "Description": "Intel® S9200WK System featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000. 2U/2N Air Cooled", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "768GB DDR4 RAM", + "Memory Types": "DDR4 RDIMM 2933", + "Max Memory Size (dependent on memory type)": "6 TB", + "Included Storage": "960 GB", + "# of Front Drives Supported": "4", + "Front Drive Form Factor": "Hot-swap 2.5\"", + "# of Internal Drives Supported": "4", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x16 Gen 3": "8", + "Max CPU Configuration": "4", + "Intel® Optane™ Memory Supported ‡": "No", + "Integrated BMC with IPMI": "2.0", + "TPM Version": "2.0", + "MM#": "99A4P1", + "Ordering Code": "LWK2AC3PXXX09", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Launch Date": "Q2'19", + "Status": "Discontinued", + "Expected Discontinuance": "2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, CentOS 7.6*", + "Chassis Form Factor": "2U Rack front IO", + "Board Form Factor": "8.33” x 21.5”", + "TDP": "350 W", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Included Items": "(1) Intel® Server Chassis, FC2HLC21W3X (4) Intel® Server System S9248WK1HLCX Compute Module. (96) Micron 16GB RDIMM, MTA18ASF2G72PDZ-2G9E1 (8) Intel® SSD D3-S4510, SSDSCKKB240G801 (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16, 100HFA016LS (4) Remote Management Module 4 Lite 2 AXXRMM4LITE2 (1) I/O Breakout cable spare kit AXXCONNTDBG", + "Description": "Intel® S9200WK System featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000. 2U/4N Liquid Cooled.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "1.5TB DDR4 RAM", + "Memory Types": "DDR4 RDIMM 2933", + "Max Memory Size (dependent on memory type)": "12 TB", + "Included Storage": "1.9 TB", + "# of Internal Drives Supported": "8", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x16 Gen 3": "8", + "Max CPU Configuration": "8", + "Intel® Optane™ Memory Supported ‡": "No", + "Integrated BMC with IPMI": "2.0", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Launch Date": "Q2'19", + "Status": "Launched", + "Expected Discontinuance": "2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, CentOS 7.6*", + "Chassis Form Factor": "2U Rack front IO", + "Board Form Factor": "8.33” x 21.5”", + "TDP": "400 W", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Included Items": "(1) Intel® Server Chassis, FC2HLC21W3X (4) Intel® Server System S9256WK1HLCX Compute Module. (96) Micron 16GB RDIMM, MTA18ASF2G72PDZ-2G9E1 (8) Intel® SSD D3-S4510, SSDSCKKB240G801 (4) Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16, 100HFA016LS (4) Remote Management Module 4 Lite 2 AXXRMM4LITE2 (1) I/O Breakout cable spare kit AXXCONNTDBG", + "Description": "Intel® S9200WK System featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000. 2U/4N Liquid Cooled.", + "Storage Profile": "All-Flash Storage Profile", + "Included Memory": "1.5TB DDR4 RAM", + "Memory Types": "DDR4 RDIMM 2933", + "Max Memory Size (dependent on memory type)": "12 TB", + "Included Storage": "1.9 TB", + "# of Internal Drives Supported": "8", + "Internal Drive Form Factor": "M.2 SSD", + "PCIe x16 Gen 3": "8", + "Max CPU Configuration": "8", + "Intel® Optane™ Memory Supported ‡": "No", + "Integrated BMC with IPMI": "2.0", + "TPM Version": "2.0" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "250 W", + "Included Items": "(1) Server board (1) 1U compute module tray (2) Intel® Xeon® Platinum 9222 Processor 2) 1U riser assembly (1) Liquid cooling loop kit", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "2", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999D9W", + "Ordering Code": "S9232WK1HLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999D9W": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "250 W", + "Included Items": "(1) Server board (1) 2U service module tray (2) Intel® Xeon® Platinum 9221 Processor (2) 2U riser assembly (2) Processor heat sink (1) Air Duct", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "4", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999DA6", + "Ordering Code": "S9232WK2HAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999DA6": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "250 W", + "Included Items": "(1) Server board (1) 2U service module tray (2) Intel® Xeon® Platinum 9222 Processor (2) 2U riser assembly (1) Liquid cooling loop kit", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "4", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999DA1", + "Ordering Code": "S9232WK2HLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999DA1": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "350 W", + "Included Items": "(1) Server board (1) 1U compute module tray (2) Intel® Xeon® Platinum 9242 Processor (2) 1U riser assembly (1) Liquid cooling loop kit", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "2", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999D9T", + "Ordering Code": "S9248WK1HLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999D9T": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "350 W", + "Included Items": "(1) Server board (1) 2U service module tray (2) Intel® Xeon® Platinum 9242 Processor (2) 2U riser assembly (2) Processor heat sink (1) Air Duct", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "4", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999DA4", + "Ordering Code": "S9248WK2HAC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999DA4": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "350 W", + "Included Items": "(1) Server board (1) 2U service module tray (2) Intel® Xeon® Platinum 9242 Processor (2) 2U riser assembly (1) Liquid cooling loop kit", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "4", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999DA0", + "Ordering Code": "S9248WK2HLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999DA0": "PCN" + }, + { + "Product Collection": "Intel® Server System S9200WK Family", + "Code Name": "Products formerly Walker Pass", + "Status": "Launched", + "Launch Date": "Q3'19", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Wednesday, November 30, 2022", + "Limited 3-year Warranty": "Yes", + "Supported Operating Systems": "Red Hat Enterprise Linux 7.6*, SUSE Linux Enterprise Server 12 SP4*, CentOS 7.4*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "2U Rack front IO", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "2.0", + "TDP": "400 W", + "Included Items": "(1) Server board (1) 1U compute module tray (2) Intel® Xeon® Platinum 9282 Processor (2)1U riser assembly (1) Liquid cooling loop kit", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Description": "S9200WK Compute Module for use in Intel® Data Center Blocks featuring Intel® Xeon® Platinum 9200 processors housed in new 2U front I/O Intel® Server Chassis FC2000.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 RDIMM 2933", + "Max # of Memory Channels": "24", + "Intel® Optane™ Persistent Memory Supported": "No", + "PCIe x16 Gen 3": "2", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "TPM Version": "2.0", + "MM#": "999D9P", + "Ordering Code": "S9256WK1HLC", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471500150", + "999D9P": "PCN" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q3'21", + "Expected Discontinuance": "2024", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPBR (1) Power Docking Board FHWBPNPB (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct (1) External VGA port bracket (1) Slot 1 riser card (1) Slot 2 riser card w/80mm M.2 SSD slot. (1) Liquid-Cooling Loop Kit AXXBPCTKIT Required Items – Sold Separately: (1) Bridge Board Options: AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 or AHWBP12GBGBIT (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors Up to(16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPBR for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 or H2204XXLRE.", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AF58", + "Ordering Code": "HNS2600BPBRCT", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473305100" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPBR (1) Power Docking Board FHWBPNPB24 (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct (1) External VGA port bracket (1) Slot 1 riser card (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors, Up to (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPBR for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986118", + "Ordering Code": "HNS2600BPB24R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986118": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2020", + "EOL Announce": "Thursday, May 7, 2020", + "Last Order": "Friday, October 30, 2020", + "Last Receipt Attributes": "Thursday, December 31, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPBR (1) Power Docking Board FHWBPNPB24 (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) Air duct (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P (1) or (2) Intel® Xeon® processor Scalable family Up to (16) DDR4 RDIMM/LRDIMM (1) AXXBPLCKIT.", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPBR for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3 in liquid cooled installations.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "2.8 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2020", + "EOL Announce": "Thursday, May 7, 2020", + "Last Order": "Friday, October 30, 2020", + "Last Receipt Attributes": "Thursday, December 31, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPBR (1) Power Docking Board FHWBPNPB24 (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) Air duct (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors Up to (16) DDR4 RDIMM/LRDIMM; (1) AXXBPLCKIT.", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPBR for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 and H2204XXLRE in liquid cooled installations.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "2.8 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPBR (1) Power Docking Board FHWBPNPB (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct (1) External VGA port bracket (1) Slot 1 riser card (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) Bridge Board Options: AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 or AHWBP12GBGBIT (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors Up to(16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPBR for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 or H2204XXLRE.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986116", + "Ordering Code": "HNS2600BPBR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986116": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPQR (1) Power Docking Board FHWBPNPB24 (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot, Support for Intel® QuickAssist® Technology. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P (1) or (2) Intel® Xeon® Scalable Processors, Up to (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPQR for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986120", + "Ordering Code": "HNS2600BPQ24R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986120": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPQR (1) Power Docking Board FHWBPNPB (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot, Support for Intel® QuickAssist® Technology. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 OR AHWBP12GBGBIT; (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors Up to (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPQR for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 or H2204XXLRE.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "985900", + "Ordering Code": "HNS2600BPQR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "985900": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPSR (1) Power Docking Board FHWBPNPB24 (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors Up to (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPSR for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GbE SFP+ ports support", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986119", + "Ordering Code": "HNS2600BPS24R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986119": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray (1) Intel® Server Board S2600BPSR (1) Power Docking Board FHWBPNPB (3) 40x56mm dual rotor managed fans FXX4056DRFAN2 (1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS (1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS (1) Air duct (1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: (1) bridge board option - AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 OR AHWBP12GBGBIT; (1) or (2) 2nd Generation Intel® Xeon® Scalable Processors, Up to (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPSR for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 or H2204XXLRE.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "3 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GbE SFP+ ports support", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986117", + "Ordering Code": "HNS2600BPSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986117": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'18", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPB(1) Power Docking Board FHWBPNPB24, (3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) Air duct(1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: One (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM; (1) AXXBPLCKIT.", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPB for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3 in liquid cooled installations.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q2'18", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPB(1) Power Docking Board FHWBPNPB24, (3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) Air duct(1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: One (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM; (1) AXXBPLCKIT.", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPB for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3 and H2204XXLRE in liquid cooled installations.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPQ(1) Power Docking Board FHWBPNPB(3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot, Support for Intel® QuickAssist® Technology. Required Items – Sold Separately:One (1) bridge board option - AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 OR AHWBP12GBGBIT; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPQ for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPQ(1) Power Docking Board FHWBPNPB24, (3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot, Support for Intel® QuickAssist® Technology. Required Items – Sold Separately: One (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPQ for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPS(1) Power Docking Board FHWBPNPB(3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately:One (1) bridge board option - AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 OR AHWBP12GBGBIT; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPS for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE SFP+; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPS(1) Power Docking Board FHWBPNPB24, (3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket (1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: One (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPS for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE SFP+; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPB(1) Power Docking Board FHWBPNPB(3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket(1) Slot 1 riser card(1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately:One (1) bridge board option - AHWBPBGB, AHWBP12GBGB, AHWBP12GBGBR5 OR AHWBP12GBGBIT; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPB for large memory capability and flexible configuration options for the Intel® Server Chassis H2312XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server System S2600BPR Family", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® Compute Module HNS2000 Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, SUSE Linux Enterprise Server 12 SP2*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "(1) 1U node tray(1) Intel® Server Board S2600BPB(1) Power Docking Board FHWBPNPB24, (3) 40x56mm dual rotor managed fans FXX4056DRFAN2(1) 1U passive Rear heat sink – CPU #1 – CuAL – FXXHP78X108HS(1) 1U passive heat sink – CPU #2 – AL – FXXEA78X108HS(1) Air duct(1) External VGA port bracket(1) Slot 1 riser card(1) Slot 2 riser card w/80mm M.2 SSD slot. Required Items – Sold Separately: One (1) bridge board option - AHWBPBGB24, AHWBPBGB24R OR AHWBPBGB24P; One or two Intel® Xeon® processor Scalable family,Up to Sixteen (16) DDR4 RDIMM/LRDIMM", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A hot-pluggable high-density compute module integrated with the Intel® Server Board S2600BPB for large memory capability and flexible configuration options for the Intel® Server Chassis H2224XXLR3.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE; 1x 1GbE (Dedicated Management)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Volcano Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q2'20", + "EOL Announce": "Tuesday, July 16, 2019", + "Last Order": "Wednesday, July 1, 2020", + "Last Receipt Attributes": "Thursday, October 1, 2020", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "RAID Level Supported": "None", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "1024", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "Avago 3216", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Integrated RAID Module RMS3VC160, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 16 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core I/O Controller (IOC).", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Condado Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "SIOM Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25CB040, SIOM Connector, LSI2208 ROC, 4P Internal SAS, MegaRAID SWStack, 1GB DDR3, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Condado Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "SIOM Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25CB080, SIOM Connector, LSI2208 ROC, 8P Internal SAS, MegaRAID SWStack, 1GB DDR3, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Jackson Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, February 28, 2019", + "Last Order": "Wednesday, August 28, 2019", + "Last Receipt Attributes": "Saturday, November 30, 2019", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2308", + "Keying": "SIOM Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs", + "Description": "Intel® Integrated RAID Module RMS25JB040, SIOM Module Slot, LSI2308 SAS Chip, 4P Internal SAS, LSI IR RAID 0,1,1E" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Jackson Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, February 28, 2019", + "Last Order": "Wednesday, August 28, 2019", + "Last Receipt Attributes": "Saturday, November 30, 2019", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2308", + "Keying": "SIOM Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25JB080, SIOM Module Slot, LSI2308 SAS Chip, 8P Internal SAS, LSI IR RAID 0,1,1E" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Kohala Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2308", + "Keying": "PCIe x8", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25KB040, PCIe Slot, LSI2308 SAS Chip, 4P Internal SAS, LSI IR RAID 0,1,1E" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Kohala Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2308", + "Keying": "PCIe x8", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, 1 standard & 1 Low Profile bracket", + "Description": "Intel® Integrated RAID Module RMS25KB080, PCIe Slot, LSI2308 SAS Chip, 8P Internal SAS, LSI IR RAID 0,1,1E" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Pompano Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25PB040, PCIe Slot, LSI2208 ROC, 4P Internal SAS/SATA, MegaRAID SWStack, 1GB DDR3, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Pompano Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMS25PB080, PCIe Slot, LSI2208 ROC, 8P Internal SAS/SATA, MegaRAID SWStack, 1GB DDR3, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Condado Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "2H'16", + "EOL Announce": "Friday, December 23, 2016", + "Last Order": "Tuesday, June 20, 2017", + "Last Receipt Attributes": "Friday, October 20, 2017", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SATA Only", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "18", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "SIOM Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMT3CB080, SIOM Connector, LSI2208 ROC, 8P Internal SATA (only), MegaRAID SWStack, 512MB DDR3, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Code Name": "Products formerly Pompano Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'16", + "EOL Announce": "Tuesday, September 27, 2016", + "Last Order": "Tuesday, December 27, 2016", + "Last Receipt Attributes": "Thursday, April 27, 2017", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare (see THOL)", + "Compatible Cache Backup Options": "AXXRSBBU9 or AXXRMFBU2", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "16", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8", + "Extended Warranty Available for Purchase (Select Countries)": "No", + "Included Items": "(1) RAID Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Intel® Integrated RAID Module RMT3PB080, PCIe Slot, LSI2208 ROC, 8P Internal SATA (only), MegaRAID SWStack, 512MB DDR3, Restricted to use only SATA drives, R0,1,10,5,50,6,60" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q4'15", + "EOL Announce": "Wednesday, March 23, 2016", + "Last Order": "Wednesday, September 28, 2016", + "Last Receipt Attributes": "Friday, January 27, 2017", + "Board Form Factor": "Storage Connector Module", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Devices Supported": "120", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "LSI1064", + "Included Items": "SAS Controller module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "4-port Entry 3Gb SAS I/O expansion module. Optional RAID 5 with AXXRAKSW5." + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q2'16", + "EOL Announce": "Saturday, March 26, 2016", + "Last Order": "Wednesday, September 28, 2016", + "Last Receipt Attributes": "Friday, January 27, 2017", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Devices Supported": "32", + "IO Processor Model": "LSI2008", + "Included Items": "RAID module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Entry 6Gb SAS/SATA RAID Module with 8 ports. Firmware-based RAID. RAID 5 uses system resources for parity calculations." + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'16", + "EOL Announce": "Thursday, June 30, 2016", + "Last Order": "Tuesday, December 27, 2016", + "Last Receipt Attributes": "Thursday, April 27, 2017", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Devices Supported": "32", + "IO Processor Model": "LSI2008", + "Included Items": "RAID module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Entry 6Gb SAS/SATA RAID Module with 4 ports. Firmware-based RAID. RAID 5 uses system resources for parity calculations.", + "MM#": "907854", + "Ordering Code": "AXXRMS2AF040", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "907854": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q2'16", + "EOL Announce": "Thursday, June 30, 2016", + "Last Order": "Tuesday, December 27, 2016", + "Last Receipt Attributes": "Thursday, April 27, 2017", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Devices Supported": "32", + "IO Processor Model": "LSI2008", + "Included Items": "RAID module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "Entry 6Gb SAS/SATA RAID Module with 4 ports supporting LSI IT/IR RAID." + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q3'10", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SAS/SATA", + "Included Items": "SAS module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "External Quad-port SAS Module", + "MM#": "902300", + "Ordering Code": "AXXSASIOMOD", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301180", + "902300": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "1H '14", + "Target Market": "Entry", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SAS/SATA", + "Compatible Cache Backup Options": "AXXRSBBU3", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "IO Processor Model": "LSI1078", + "Description": "3Gb Integrated RAID I/O Expansion Module", + "MM#": "901641", + "Ordering Code": "AXXROMBSASMR", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "901641": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Integrated RAID (Modules/System Boards)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "1H '14", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Devices Supported": "32", + "Cache Memory": "512MB", + "IO Processor Model": "LSI2108", + "Included Items": "RAID module, Quick Start User Guide, Mounting standoffs. Note: Cables sold separately", + "Description": "6G SAS/SATA HWRAID Module with 8 ports", + "MM#": "907847", + "Ordering Code": "AXXRMS2MH080", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "907847": "PCN\n |\n MDDS" + }, + { + "Product Collection": "RAID Accessories", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'12", + "Expected Discontinuance": "1H'16", + "EOL Announce": "Thursday, March 30, 2017", + "Last Order": "Friday, September 29, 2017", + "Last Receipt Attributes": "Monday, January 29, 2018", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Supported Devices": "SAS/SATA", + "Included Items": "One converter board, full size PCIe bracket, low profile PCIe bracket", + "Description": "The Intel® RAID Converter Board RCVT8788 allows for internal SAS or SATA ports to be extended outside the system. It includes 2 internal 8087 Mini-SAS connectors that are connected to two external 8088 Mini-SAS connectors." + }, + { + "Product Collection": "RAID Accessories", + "Code Name": "Products formerly Tower Falls", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'16", + "EOL Announce": "Thursday, June 30, 2016", + "Last Order": "Thursday, April 27, 2017", + "Last Receipt Attributes": "Saturday, July 15, 2017", + "Long Life": "No", + "Target Market": "Entry", + "Board Form Factor": "Activation Key", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "No", + "# of Ports External": "0", + "# of Devices Supported": "8", + "Included Items": "(1) RAID Key and Installation instructions", + "Description": "RAID Activation Key enables SAS and/or SATA Software RAID 5 on most Intel Server Boards" + }, + { + "Product Collection": "RAID Accessories", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Thursday, March 21, 2019", + "Last Order": "Monday, September 23, 2019", + "Last Receipt Attributes": "Tuesday, January 21, 2020", + "Long Life": "No", + "Target Market": "Mainstream", + "Supported Devices": "SAS/SATA", + "Included Items": "Two cables are included in the kit", + "Description": "Kit of 2 cables, 740mm length, straigth mini-SAS 8087 connector on one end and 4 x 7-pin SATA connectors plus SGPIO connector on the other end." + }, + { + "Product Collection": "RAID Accessories", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Expected Discontinuance": "Q4'12", + "EOL Announce": "Monday, October 27, 2014", + "Last Order": "Friday, November 28, 2014", + "Last Receipt Attributes": "Friday, May 29, 2015", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Activation Key", + "Supported Devices": "SAS/SATA", + "Compatible Cache Backup Options": "AXXRSBBU3", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "Included Items": "Key and Installation instructions", + "Description": "RAID Activation key enables full intelligent SAS HW RAID for the Intel Servers with a LSI1078-based active midplane.", + "MM#": "904171", + "Ordering Code": "AURTSOCSAS2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "0099NO-HTS", + "904171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "RAID Accessories", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q2'13", + "EOL Announce": "Sunday, June 30, 2013", + "Last Order": "Tuesday, December 31, 2013", + "Last Receipt Attributes": "Wednesday, April 30, 2014", + "Long Life": "No", + "Target Market": "Mainstream", + "Included Items": "DIMM and installation instructions", + "Description": "512 MB Mini DIMM registered DDR-2 for use with FALSASMP2", + "MM#": "897046", + "Ordering Code": "AXXMINIDIMM512", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301140", + "897046": "PCN\n |\n MDDS" + }, + { + "Product Collection": "RAID Accessories", + "Status": "Discontinued", + "Launch Date": "Q1'09", + "Expected Discontinuance": "Q1 '12", + "Target Market": "Entry", + "Description": "128 MB Mini DIMM registered DDR2 for use with FALSASMP" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q3'16", + "Expected Discontinuance": "2025", + "Long Life": "Yes", + "Supported Devices": "PCIe/SAS/SATA", + "Included Items": "(1) maintenance free backup unit (super capacitor module, cable, and bracket)", + "Description": "Maintenance Free Backup Unit designed for the RMSP3AD160F and RMSP3CD080F Intel(r) Integrated RAID Modules, and RSP3DD080F, RSP3MD088F, and RSP3TD160F Intel(r) RAID Adapters", + "MM#": "999AKP", + "Ordering Code": "HPCAXXRMFBU7", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504409580", + "957677": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q4'16", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Long Life": "Yes", + "Supported Devices": "SAS/SATA", + "Included Items": "(1) maintenance free backup unit (super capacitor module, cable, and bracket)", + "Description": "Maintenance Free Backup Unit designed for the Intel® Integrated RAID Module RMS3AC160", + "MM#": "945975", + "Ordering Code": "AXXRMFBU6", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8504409580", + "945975": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q1'19", + "EOL Announce": "Tuesday, February 12, 2019", + "Last Order": "Tuesday, February 12, 2019", + "Last Receipt Attributes": "Tuesday, February 12, 2019", + "Included Items": "(1) Bracket to support 1U systems: dual height bracket that supports two Intel® RAID Maintenance Free Backup AXXRMFBU5 packs (without original cage), and (1) bracket to support 2U systems: optional bracket to hold two RAID Maintenance Free Backup Units or Intel® RAID Smart Battery AXXRSBBU9 modules. Mounts on airduct. Note: Cannot be installed with full-size PCIe cards", + "Description": "Bracket kit to support RAID Maintenance Free Backup Units or Intel® RAID Smart Battery AXXRSBBU9 in a 1U or 2U system" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "3Q'14", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "One Maintenance Free Backup Unit with capacitior module, flash module, bracket and cable", + "Description": "Designed to help protect memory in dynamic cache in the event of a power failure. Supports Intel® Integrated RAID Module RMS3CC080 and Intel® Integrated RAID Module RMS3CC040", + "MM#": "933907", + "Ordering Code": "AXXRMFBU5", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301140", + "933907": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q4'13", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "(5) Maintenance Free Backup Unit (supercapcitor module and NAND flash module, cables and bracket).", + "Description": "This is a supercapitor and flash memory solution; it helps protect the dynamic memory on the Intel RS3 Intelligent RAID products.", + "MM#": "929734", + "Ordering Code": "AXXRMFBU4", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8473301140", + "929734": "PCN\n |\n MDDS", + "937318": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q2'13", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "(1) maintenance free backup unit (supercapcitor module, NAND flash module, cables and bracket)", + "Description": "Supercapacitor-based Maintenance Free Backup Unit helps protect cache in the event of a power failure or system crash. This module is designed for Intel RAID SSD Cache Controller RCS2ZB040. It does not support any other products." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, August 26, 2019", + "Last Order": "Wednesday, September 4, 2019", + "Last Receipt Attributes": "Thursday, January 2, 2020", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "(1) Maintenance free backup unit (supercapacitor module, NAND flash module, cables and bracket).", + "Description": "Maintenance Free Backup Unit for Intel(r) Intergraded RAID Modules of the RMS25 and RMT3 Families." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q2'11", + "Expected Discontinuance": "Q1'20", + "EOL Announce": "Thursday, October 10, 2019", + "Last Order": "Friday, January 10, 2020", + "Last Receipt Attributes": "Friday, April 10, 2020", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Intel® RAID Smart Battery AXXRSBBU9 provides optional battery backup for mainstream RS25 family RAID products." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q1'19", + "EOL Announce": "Saturday, March 9, 2019", + "Last Order": "Friday, March 22, 2019", + "Last Receipt Attributes": "Saturday, April 27, 2019", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Intel® RAID Smart Battery AXXRSBBU8 provides optional battery backup for mainstream RS2 family RAID products such as Intel RAID Controllers RS2BL080/040." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "Q1'19", + "EOL Announce": "Monday, March 11, 2019", + "Last Order": "Monday, March 11, 2019", + "Last Receipt Attributes": "Monday, March 11, 2019", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Optional RAID Smart battery back up for use with Intel 6G SAS RAID controllers. Includes components for remote mounting." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "(5) RAID Smart Battery", + "Description": "Optional RAID Smart battery back up provides up to 48 hours battery retention time for use with Intel® RAID Controllers SRCU42X and SRCZCRX. RoHS Compliant" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "(5) RAID Smart Battery", + "Description": "Optional RAID Smart battery back up provides up to 48 hours battery retention time for use with Intel® RAID Controller SRCS16. RoHS Server Exemption" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Description": "Optional RAID Smart battery back up provides up to 48 hours battery retention time for use with Intle® RAID Controller SRCS28X. RoHS compliant", + "MM#": "899374", + "Ordering Code": "AXXRIBBU1", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "899374": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "2H '11", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Description": "Intel Portable Cache Module (battery back-up unit) with 256MB DDR2 ECC - single pack. Works with Intel® RAID Controller SRCSAS18E. RoHS Compliant.", + "MM#": "899338", + "Ordering Code": "AXXRPCM2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "899338": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Expected Discontinuance": "2H '11", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Description": "Intel Portable Cache Module (battery back-up unit) with 256MB DDR2 ECC - single pack. Works with Intel® RAID Controller SRCSASJV. RoHS Compliant", + "MM#": "891156", + "Ordering Code": "AXXRPCM3", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8471801000", + "891156": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'10", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Description": "Optional RAID Smart battery back up for use with RAID activation keys AXXRAK18E and AXXRAKSAS2. NIMH cell (rather than LiON).", + "MM#": "900345", + "Ordering Code": "AXXRSBBU3NIMH", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8507500000", + "900345": "MDDS" + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q1'08", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Optional RAID Smart battery back up provides 48 hours of cache data retention for use with Intel® RAID Controllers SRCSASBB8I and SRCSASLS4I. RoHS Complaint." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q2'07", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Optional RAID Smart battery back up Provides up to 48 hours of cache data retention for use with Intel® RAID Controllers SRCSASRB and SRCSATAWB. RoHS Complaint." + }, + { + "Product Collection": "Intel® RAID Backup (Batteries/Flash)", + "Status": "Discontinued", + "Launch Date": "Q4'06", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "Yes", + "Target Market": "Mainstream", + "Board Form Factor": "Battery/RMFBU", + "Included Items": "Kit includes remote mounting bracket and cables.", + "Description": "Optional RAID Smart battery back up for use with Intel® RAID Controllers AXXRAK18E, SRCSAS144E, SRCSASJV. Active MidPlanes, and ROMBSASMR" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Launched", + "Launch Date": "Q4'21", + "Expected Discontinuance": "2025", + "Target Market": "Full-featured", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Microsoft Windows VMWare Linux (SLES, RHEL)", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "8", + "# of Devices Supported": "240", + "Cache Memory": "8GB", + "PCIe Host Interface": "PCIe x8 Gen4", + "IO Processor Model": "SAS3916", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Horizontal", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Adapter (1) Low-profile mounting bracket", + "Description": "Tri-mode Full-Featured RAID Adapter with 8 internal SAS/SATA ports or 2 internal NVMe ports; 8 SAS/SATA external ports", + "Datasheet": "View now", + "MM#": "99ADDX", + "Ordering Code": "RS3P4MF088F", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Launched", + "Launch Date": "Q3'21", + "Expected Discontinuance": "2025", + "Target Market": "Storage", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Microsoft Windows VMWare Linux (SLES, RHEL)", + "RAID Level Supported": "JBOD Only", + "JBOD Mode": "Yes", + "# of Ports External": "16", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen4", + "IO Processor Model": "SAS3816", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Horizontal", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Storage Adapter (1) Low-profile mounting bracket", + "Description": "SAS/SATA Storage Adapter with 16 external SAS/SATA ports.", + "Additional Information": "View now", + "MM#": "999TJ3", + "Ordering Code": "RS3P4GF016J", + "ECCN": "4A994J", + "CCATS": "NA", + "US HTS": "8471801000", + "999TJ3": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Target Market": "Full-featured", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Microsoft Windows VMWare Linux (SLES, RHEL)", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "8GB", + "PCIe Host Interface": "PCIe x8 Gen4", + "IO Processor Model": "SAS3916", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Horizontal", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Adapter (1) low-profile mounting bracket", + "Description": "Tri-mode Full-Featured RAID Adapter with 16 internal SAS/SATA ports or 4 internal NVMe ports", + "Datasheet": "View now", + "MM#": "999TJ4", + "Ordering Code": "RS3P4TF160F", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000", + "999TJ4": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Target Market": "Storage", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Microsoft Windows VMWare Linux (SLES, RHEL)", + "RAID Level Supported": "JBOD Only", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen4", + "IO Processor Model": "SAS3816", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Horizontal", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Storage Adapter (1) Low-profile mounting bracket", + "Description": "This controller supports SAS, SATA and PCI (NVMe) drives through 4 SFF-8643 connectors. Each connector can drive either 4 SAS/SATA drives, or 1 NVMe drive. This gives 16 SAS/SATA ports, or 4 NVME ports.", + "Additional Information": "View now", + "MM#": "999RKM", + "Ordering Code": "RS3P4QF160J", + "ECCN": "4A994J", + "CCATS": "NA", + "US HTS": "8471801000", + "999RKM": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Launched", + "Launch Date": "Q2'22", + "Expected Discontinuance": "2025", + "Target Market": "Entry", + "Board Form Factor": "MD2 low profile", + "Supported Devices": "SATA Only", + "Supported Operating Systems": "CentOS 7.6 Windows Server 2016 Windows Server 2019 SLES15SP1 RH8.2", + "RAID Level Supported": "RAID 1", + "JBOD Mode": "No", + "# of Ports Internal": "2", + "# of Devices Supported": "2", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x2 Gen2", + "IO Processor Model": "Marvell 88SE9230A1-NAA2C000-W572", + "Additional Features": "1) Supports up to two SATA M.2 SSDs (2280/22110, Mkey and Bkey). 2) Legacy and UEFI boot mode", + "Included Items": "(20) MD2 low profile card", + "Use Conditions": "Server/Enterprise", + "Description": "PCIe GEN2.0 x2 Hot Swap Capable RAID card supporting 2 x M.2 SATA devices in a RAID1 configuration.", + "MM#": "99AJRD", + "Ordering Code": "RT3EX020E", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8471801000" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q4'20", + "Expected Discontinuance": "2022", + "EOL Announce": "Thursday, January 27, 2022", + "Last Order": "Thursday, January 27, 2022", + "Last Receipt Attributes": "Thursday, January 27, 2022", + "Target Market": "Entry", + "Board Form Factor": "MD2 low profile", + "Supported Devices": "SATA Only", + "Supported Operating Systems": "CerntOS 7.6 Windows Server 2016 Windows Server 2019 SLES15SP1 RH8.2", + "RAID Level Supported": "RAID 1", + "JBOD Mode": "No", + "# of Ports Internal": "2", + "# of Devices Supported": "2", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x2 Gen2", + "IO Processor Model": "Marvell 88SE9230A1-NAA2C000-W572", + "Additional Features": "1) Supports up to two SATA M.2 SSDs (2280/22110, Mkey and Bkey). 2) Legacy and UEFI boot mode", + "Included Items": "(20) MD2 low profile card", + "Use Conditions": "Server/Enterprise", + "Description": "PCIe GEN2.0 x2 RAID card supporting 2 x M.2 SATA devices in a RAID1 configuration." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Dakota Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Thursday, October 28, 2021", + "Last Order": "Monday, February 28, 2022", + "Last Receipt Attributes": "Monday, October 31, 2022", + "Target Market": "Full-featured", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare,", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "4GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3508", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Adapter, (1) low-profile mounting bracket", + "Description": "Tri-mode Full-Featured RAID Adapter with 8 internal SAS/SATA ports or 2 internal NVMe ports", + "Datasheet": "View now", + "MM#": "999ADH", + "Ordering Code": "HPCRSP3DD080F", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Moody Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Thursday, October 28, 2021", + "Last Order": "Monday, February 28, 2022", + "Last Receipt Attributes": "Monday, October 31, 2022", + "Target Market": "Full-featured", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "8", + "# of Devices Supported": "240", + "Cache Memory": "4GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3516", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Horizontal", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Adapter (1) Low-profile mounting bracket", + "Description": "Tri-mode Full-Featured RAID Adapter with 8 internal SAS/SATA ports or 2 internal NVMe ports; 8 external SAS/SATA ports" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Trinity Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Thursday, October 28, 2021", + "Last Order": "Monday, February 28, 2022", + "Last Receipt Attributes": "Monday, October 31, 2022", + "Target Market": "Full-featured", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "4GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3516", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Adapter, (1) low-profile mounting bracket", + "Description": "Tri-mode Full-Featured RAID Adapter with 16 internal SAS/SATA ports or 4 internal NVMe ports" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Warrior Dunes", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Target Market": "Entry", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "63", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3408", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® RAID Adapter, (1) low-profile mounting bracket", + "Description": "Tri-mode Entry-Level RAID Adapter with 8 internal SAS/SATA ports or 2 internal NVMe ports", + "MM#": "954495", + "Ordering Code": "RSP3WD080E", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000", + "954495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Arizona Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, October 22, 2021", + "Last Order": "Tuesday, March 15, 2022", + "Last Receipt Attributes": "Friday, April 28, 2023", + "Target Market": "Full-featured", + "Board Form Factor": "Mezzanine Module", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "4GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3516", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Module, (4) standoffs, and (4) standoff locking pins", + "Description": "Tri-mode Full-Featured RAID Mezzanine Module with 16 SAS/SATA internal ports or 4 internal NVMe ports", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Columbia Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, October 22, 2021", + "Last Order": "Tuesday, March 15, 2022", + "Last Receipt Attributes": "Friday, April 28, 2023", + "Target Market": "Full-featured", + "Board Form Factor": "Mezzanine Module", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU7", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "4GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3508", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® RAID Module, (4) standoffs, and (4) standoff locking pins", + "Description": "Tri-mode Full-Featured RAID Mezzanine Module with 8 SAS/SATA or 2 NVMe internal ports", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Hidden Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, October 22, 2021", + "Last Order": "Friday, April 29, 2022", + "Last Receipt Attributes": "Friday, April 28, 2023", + "Target Market": "Entry", + "Board Form Factor": "Mezzanine Module", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "63", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3408", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® RAID Module, (4) standoffs, and (4) standoff locking pins", + "Description": "Tri-mode PCIe Entry-Level RAID Mezzanine Module with 8 SAS/SATA or 2 NVMe internal ports", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Geneva Dunes", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Target Market": "Storage", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "JBOD Only", + "JBOD Mode": "Yes", + "# of Ports Internal": "0", + "# of Ports External": "16", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3416", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Storage Adapter, (1) low-profile mounting bracket", + "Description": "SAS/SATA Storage Adapter with 16 external SAS/SATA ports", + "MM#": "954492", + "Ordering Code": "RSP3GD016J", + "ECCN": "4A994J", + "CCATS": "NA", + "US HTS": "8471801000", + "954492": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Queenstown Dunes", + "Status": "Launched", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Target Market": "Storage", + "Board Form Factor": "Low-Profile MD2 PCIe AIC", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "JBOD Only", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3416", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Storage Adapter (1) Low-profile mounting bracket", + "Description": "Tri-mode Storage Adapter with 16 internal SAS/SATA ports or 4 NVMe internal ports", + "Datasheet": "View now", + "MM#": "954491", + "Ordering Code": "RSP3QD160J", + "ECCN": "4A994J", + "CCATS": "NA", + "US HTS": "8471801000", + "954491": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Juniper Dunes", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "2022", + "EOL Announce": "Friday, October 22, 2021", + "Last Order": "Friday, April 29, 2022", + "Last Receipt Attributes": "Friday, April 28, 2023", + "Target Market": "Storage", + "Board Form Factor": "Mezzanine Module", + "Supported Devices": "PCIe/SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "JBOD Only", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "SAS3516", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Storage Module, (4) standoffs, and (4) standoff locking pins", + "Description": "Tri-mode Storage Mezzanine Module with 16 internal SAS/SATA ports or 4 internal NVMe ports", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Ancho Canyon", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q4'21", + "EOL Announce": "Friday, April 2, 2021", + "Last Order": "Monday, October 4, 2021", + "Last Receipt Attributes": "Monday, January 3, 2022", + "Long Life": "Yes", + "Target Market": "Mainstream", + "Board Form Factor": "Mezzanine Module", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "Compatible Cache Backup Options": "AXXRMFBU6", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "2GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "Avago 3316", + "Keying": "SIOM Connector", + "Connector Orientation": "Vertical", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® Integrated RAID Module RMS3AC160, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 16 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core RAID-On-Chip (ROC), RAID levels 0/1/10/5/50/6/60, and support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q4'16", + "Expected Discontinuance": "Q2'22", + "EOL Announce": "Tuesday, April 6, 2021", + "Last Order": "Wednesday, April 6, 2022", + "Last Receipt Attributes": "Friday, July 22, 2022", + "Target Market": "Entry", + "Board Form Factor": "MD2 low profile", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "None", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "1024", + "PCIe Host Interface": "PCIe x8 Gen3", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "One Intel® RAID Controller RS3UC080J with full and low profile brackets", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3008 IOC-based JBOD, x8 PCIe 3.0, 8 internal ports, MD2 Low Profile, half-length form" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Coffee Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'22", + "EOL Announce": "Tuesday, April 6, 2021", + "Last Order": "Wednesday, April 6, 2022", + "Last Receipt Attributes": "Friday, July 22, 2022", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "Compatible Cache Backup Options": "AXXRMFBU5", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Keying": "SIOM Connector", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® Integrated RAID Module RMS3CC040, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 4 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core RAID-On-Chip (ROC), RAID levels 0/1/10/5/50/6/60, and support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Coffee Canyon", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Target Market": "Mainstream", + "Board Form Factor": "Storage Connector Module", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "Compatible Cache Backup Options": "AXXRMFBU5", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Keying": "SIOM Connector", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Included Items": "(1) Intel® Integrated RAID Module RMS3CC080, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 8 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core RAID-On-Chip (ROC), RAID levels 0/1/10/5/50/6/60, and support for optional Maintenance Free Backup Unit and Premium Feature upgrade keys.", + "Datasheet": "View now", + "MM#": "932474", + "Ordering Code": "RMS3CC080", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000", + "932474": "PCN\n |\n MDDS", + "999L36": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Hermosa Canyon", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Long Life": "Yes", + "Target Market": "Entry", + "Board Form Factor": "Mezzanine Module", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Keying": "SIOM Connector", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Intel® Integrated RAID Module RMS3HC080, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 8 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core I/O Controller (IOC), RAID levels 0, 1, 10, hybrid 5 and 50, and JBOD mode.", + "Datasheet": "View now", + "MM#": "932469", + "Ordering Code": "RMS3HC080", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000", + "932469": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Jersey Canyon", + "Status": "Launched", + "Launch Date": "Q3'14", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Long Life": "Yes", + "Target Market": "Entry", + "Board Form Factor": "Mezzanine Module", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMware", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Keying": "SIOM Connector", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Supports up to two RAID 0,1,1E and 10 arrays and up to 1024 non-RAID volumes", + "Included Items": "(1) Intel® Integrated RAID Module RMS3JC080, (4) standoffs, and (4) standoff locking pins", + "Description": "12Gb/s (SAS 3.0) 8 internal port SAS/SATA mezzanine card built with PCIe 3.0 dual core I/O Controller (IOC). RAID levels 0,1,1E and 10 and JBOD mode.", + "MM#": "932472", + "Ordering Code": "RMS3JC080", + "ECCN": "4A994B", + "CCATS": "NA", + "US HTS": "8471801000", + "932472": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Mohave Canyon", + "Status": "Discontinued", + "Launch Date": "Q2'14", + "Expected Discontinuance": "Q2'17", + "EOL Announce": "Tuesday, March 28, 2017", + "Last Order": "Friday, September 29, 2017", + "Last Receipt Attributes": "Monday, January 29, 2018", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "4", + "# of Devices Supported": "240", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID add-in-card with full height and low profile brackets.", + "Description": "12-Gb/s SAS, 6-Gb/s SATA intelligent RAID.", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Sunset Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'14", + "Expected Discontinuance": "Q2'22", + "EOL Announce": "Tuesday, April 6, 2021", + "Last Order": "Wednesday, April 6, 2022", + "Last Receipt Attributes": "Friday, July 22, 2022", + "Target Market": "Scalable Performance", + "Board Form Factor": "MD2 low profile", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "240", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Connector Orientation": "External", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Description": "12Gb/s SAS12Gb/s SAS, 6Gb/s SATA, LSI3108 ROC Scalable Performance Intelligent RAID 0,1,5,10,50,60 add-in card with x8 PCIe 3.0, 8 external ports, MD2 Low Profile form factor." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Dark Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q2'22", + "EOL Announce": "Tuesday, April 6, 2021", + "Last Order": "Wednesday, April 6, 2022", + "Last Receipt Attributes": "Friday, July 22, 2022", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU4", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Connector Orientation": "Side", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket.", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3108 ROC Mainstream Intelligent RAID 0,1,5,10,50,60 add-in card with x8 PCIe 3.0, 4 internal ports, MD2 Low Profile form factor.", + "MM#": "928222", + "Ordering Code": "RS3DC040", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "928222": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Dark Canyon", + "Status": "Launched", + "Launch Date": "Q3'13", + "Expected Discontinuance": "2022", + "EOL Announce": "Monday, October 25, 2021", + "Last Order": "Friday, September 16, 2022", + "Last Receipt Attributes": "Wednesday, May 17, 2023", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, VMWare", + "Compatible Cache Backup Options": "AXXRMFBU4", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3108", + "Connector Orientation": "Side", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket.", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3108 ROC Mainstream Intelligent RAID 0,1,5,10,50,60 add-in card with x8 PCIe 3.0, 8 internal ports, MD2 Low Profile form factor.", + "MM#": "934643", + "Ordering Code": "RS3DC080", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "934643": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Waimea Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q4'21", + "EOL Announce": "Friday, April 2, 2021", + "Last Order": "Monday, October 4, 2021", + "Last Receipt Attributes": "Monday, January 3, 2022", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "One RAID adapter with full and low profile brackets", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3008 IOC-based entry-RAID 0,1,10 and hybrid RAID 5/50 & JBOD, x8 PCIe 3.0, 8 internal ports, MD2 Low Profile, half-length form factor. Full height (installed) and low profile bracket included" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Guadalupe Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q2'20", + "EOL Announce": "Tuesday, July 16, 2019", + "Last Order": "Wednesday, July 1, 2020", + "Last Receipt Attributes": "Thursday, October 1, 2020", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "JBOD", + "JBOD Mode": "Yes", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "244", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "One Host Bus Adapter with full and low profile brackets", + "Description": "Entry-level Host Bus Adapter supporting 12Gb/s SAS, 6Gb/s SATA, LSI3008 IOC-based entry- JBOD mode (Pass-through SAS), x8 PCIe 3.0, 8 external ports, MD2 Low Profile, half-length form factor." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Fall Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q2'17", + "EOL Announce": "Tuesday, March 28, 2017", + "Last Order": "Friday, September 29, 2017", + "Last Receipt Attributes": "Monday, January 29, 2018", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "4", + "# of Ports External": "4", + "# of Devices Supported": "244", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "One RAID Adapter with full and low profile brackets", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3008 IOC-based entry-RAID 0,1,1E,10 & JBOD, x8 PCIe 3.0, 4 internal and 4 external ports, MD2 Low Profile, half-length form factor." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Umbrella Canyon", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q2'22", + "EOL Announce": "Tuesday, April 6, 2021", + "Last Order": "Wednesday, April 6, 2022", + "Last Receipt Attributes": "Friday, July 22, 2022", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "244", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI3008", + "Connector Orientation": "Side", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Supports up to two RAID 0,1,1E and 10 arrays and up to 1024 non-RAID volumes", + "Included Items": "One RAID adapter with full and low proile brackets", + "Description": "12Gb/s SAS, 6Gb/s SATA, LSI3008 IOC-based entry-RAID 0,1,1E,10 & JBOD, x8 PCIe 3.0, 8 internal ports, MD2 Low Profile, half-length form factor." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q4'14", + "EOL Announce": "Monday, September 29, 2014", + "Last Order": "Monday, December 29, 2014", + "Last Receipt Attributes": "Monday, June 29, 2015", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris", + "Compatible Cache Backup Options": "AXXRMFBU3", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB DDR3 and 256GB Flash", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "None", + "Included Items": "Raid Caching Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS RAID with 256GB of onboard Flash, dual-core ROC & 4 internal ports. No cables included.", + "MM#": "924659", + "Ordering Code": "RCS25ZB040", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "924659": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q1'13", + "Expected Discontinuance": "Q4'14", + "EOL Announce": "Monday, September 29, 2014", + "Last Order": "Monday, December 29, 2014", + "Last Receipt Attributes": "Monday, June 29, 2015", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris", + "Compatible Cache Backup Options": "AXXRMFBU3", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB DDR3 and 1TB Flash", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "None", + "Included Items": "Raid Caching Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS RAID with 1TB of onboard Flash, dual-core ROC & 4 internal ports. No cables included.", + "MM#": "924664", + "Ordering Code": "RCS25ZB040LX", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "924664": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Flagler Beach", + "Status": "Discontinued", + "Launch Date": "Q4'12", + "Expected Discontinuance": "Q2'15", + "EOL Announce": "Friday, May 8, 2015", + "Last Order": "Friday, August 7, 2015", + "Last Receipt Attributes": "Tuesday, November 10, 2015", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Nexenta, VMWare", + "RAID Level Supported": "0, 1, 1E, 10", + "JBOD Mode": "Yes", + "# of Ports Internal": "4", + "# of Ports External": "4", + "# of Devices Supported": "256", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2308", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "None", + "Included Items": "(1) Raid Controller, Quick Start User Guide, (1) standard & (1) Low Profile bracket. No SAS Cables are included.", + "Description": "6G Gen3 x8 RAID controller with 4i & 4e Ports, and entry-level HW RAID 0/1/1E/10E and JBOD mode." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'14", + "EOL Announce": "Monday, September 22, 2014", + "Last Order": "Friday, December 19, 2014", + "Last Receipt Attributes": "Friday, July 17, 2015", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "RMFBU Included with Controller", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Devices Supported": "128", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, MFBU offload cache module, Cache Offload Module Cable, Quick Start User Guide, 1 standard & 1 Low Profile bracket. One MiniSAS Cable is included.", + "Description": "6G 8 Internal Port SAS RAID controller with single core ROC, PCIe Gen 2 capable, and includes Maintenance Free Backup Unit. One MiniSAS cable included.", + "MM#": "911498", + "Ordering Code": "RS2VB040", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471801000", + "911498": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q3'14", + "EOL Announce": "Monday, September 22, 2014", + "Last Order": "Friday, December 19, 2014", + "Last Receipt Attributes": "Friday, July 17, 2015", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "RMFBU Included with Controller", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Devices Supported": "128", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, MFBU offload cache module, Cache Offload Module Cable, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Two MiniSAS Cables are included.", + "Description": "6G 8 Internal Port SAS RAID controller with single core ROC, PCIe Gen 2 capable, and includes Maintenance Free Backup Unit. Two MiniSAS cables included.", + "MM#": "911120", + "Ordering Code": "RS2VB080", + "ECCN": "5A992C", + "CCATS": "G135162", + "US HTS": "8471801000", + "911120": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'17", + "EOL Announce": "Tuesday, March 28, 2017", + "Last Order": "Friday, September 29, 2017", + "Last Receipt Attributes": "Monday, January 29, 2018", + "Long Life": "No", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris", + "Compatible Cache Backup Options": "RMFBU Included with Controller", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, MFBU offload cache module, Cache Offload Module Cable, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G 8 Internal Port SAS RAID controller with dual core ROC, PCIe Gen 3 capable, and includes Maintenance Free Backup Unit. No cables included." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Sonoma Beach", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "RMFBU Included with Controller", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "240", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, MFBU offload cache module, Cache Offload Module Cable, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G 8 External Port SAS RAID controller with dual core ROC, PCIe Gen 3 capable, and includes Maintenance Free Backup Unit. No cables included." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "1H'16", + "EOL Announce": "Wednesday, March 23, 2016", + "Last Order": "Wednesday, September 28, 2016", + "Last Receipt Attributes": "Friday, January 27, 2017", + "Long Life": "No", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Nexenta, VMWare", + "RAID Level Supported": "JBOD", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "1024", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2308", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "External 8088", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "None", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS HBA Controller (no raid) with 8 external ports. LSI2308 IO Controller. No cables included." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q3'11", + "Expected Discontinuance": "1H'16", + "EOL Announce": "Wednesday, March 23, 2016", + "Last Order": "Wednesday, September 28, 2016", + "Last Receipt Attributes": "Friday, January 27, 2017", + "Long Life": "No", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU9", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "External 8088", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS RAID Controller with 8 external ports and dual core ROC. No cables included. Optional Battery Backup Unit AXXRSBBU9." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Long Life": "No", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU9", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "128", + "Cache Memory": "1GB", + "PCIe Host Interface": "PCIe x8 Gen3", + "IO Processor Model": "LSI2208", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS RAID Controller with 8 internal ports. PCIe Gen 3 capable, and dual core ROC. No cables included." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Status": "Discontinued", + "Launch Date": "Q4'10", + "Expected Discontinuance": "Q3'16", + "EOL Announce": "Wednesday, March 23, 2016", + "Last Order": "Wednesday, September 28, 2016", + "Last Receipt Attributes": "Friday, January 27, 2017", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SATA Only", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "32", + "Cache Memory": "256MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "Entry-level 6G SATA RAID controller with 8 internal ports for SATA drives. Retail SKU includes cable." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Big Laurel", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Monday, October 24, 2016", + "Last Order": "Thursday, April 20, 2017", + "Last Receipt Attributes": "Monday, August 21, 2017", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "32", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. One SAS Cable is included.", + "Description": "Entry-level 6G SAS RAID controller with 4 internal ports for SAS/SATA drives. Retail SKU includes cable." + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Big Laurel", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Monday, October 24, 2016", + "Last Order": "Thursday, April 20, 2017", + "Last Receipt Attributes": "Monday, August 21, 2017", + "Long Life": "Yes", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "32", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Two SAS Cables are included.", + "Description": "6G SAS RAID Controller with 8 internal ports. Retail SKU includes cables.", + "MM#": "904915", + "Ordering Code": "RS2BL080D10", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "904915": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Mobile Bay", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "Q4'14", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Mainstream", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "4", + "# of Devices Supported": "240", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "1 Top, 1 External 8088", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "Mainstream 6G SAS RAID controller with 4 internal and 4 external ports for SAS/SATA drives.Retail SKU includes cables.", + "MM#": "904993", + "Ordering Code": "RS2MB044", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "904993": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Puget Island", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "Q1'14", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "0", + "# of Ports External": "8", + "# of Devices Supported": "240", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "External 8088", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. No SAS Cables are included.", + "Description": "6G SAS RAID Controller with 8 external ports. Cables not included.", + "MM#": "903492", + "Ordering Code": "RS2PI008", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "903492": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Sierra Grande", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "1H'15", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Scalable Performance", + "Board Form Factor": "Full Height 1/2 Length PCIe Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "24", + "# of Ports External": "4", + "# of Devices Supported": "240", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "2 Top, 4 Side, 1 External", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Six MiniSAS Cables are included.", + "Description": "Scalable Performance 6G SAS/SATA RAID controller with 24 internal and 4 external ports. Retail SKU includes cables.", + "MM#": "904995", + "Ordering Code": "RS2SG244", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "904995": "PCN" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Whale Cove", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "2H'14", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "# of Devices Supported": "16", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2008", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "None", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. One SAS Cable is included.", + "Description": "Entry-level 6G SAS RAID controller with 4 internal ports for SAS/SATA drives. Retail SKU includes cable.", + "MM#": "903496", + "Ordering Code": "RS2WC040", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "903496": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Whale Cove", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "2H'14", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Entry", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "RAID Level Supported": "0, 1, 10, 5, 50", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "# of Devices Supported": "16", + "Cache Memory": "None", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2008", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "Top", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "None", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Two MiniSAS Cables are included.", + "Description": "Entry-level 6G SAS RAID controller with 8 internal ports for SAS/SATA drives. Retail SKU includes cables.", + "MM#": "903495", + "Ordering Code": "RS2WC080", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "903495": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Controllers", + "Code Name": "Products formerly Walnut Grove", + "Status": "Discontinued", + "Launch Date": "Q2'10", + "Expected Discontinuance": "1H'15", + "EOL Announce": "Friday, October 31, 2014", + "Last Order": "Thursday, April 30, 2015", + "Last Receipt Attributes": "Monday, August 31, 2015", + "Target Market": "Scalable Performance", + "Board Form Factor": "Full Height 1/2 Length PCIe Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "Windows, Linux, Solaris, VMware", + "Compatible Cache Backup Options": "AXXRSBBU7 or AXXRSBBU8", + "RAID Level Supported": "0, 1, 10, 5, 50, 6, 60", + "JBOD Mode": "No", + "# of Ports Internal": "16", + "# of Ports External": "0", + "# of Devices Supported": "240", + "Cache Memory": "512MB", + "PCIe Host Interface": "PCIe x8 Gen2", + "IO Processor Model": "LSI2108", + "Keying": "PCIe x8 Connector", + "Connector Orientation": "4 Side, 1 External", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Features": "Support for Premium Feature Options", + "Included Items": "Raid Controller, Quick Start User Guide, 1 standard & 1 Low Profile bracket. Four MiniSAS Cables are included.", + "Description": "Scalable Performance 6G SAS RAID controller with 16 internal SAS/SATA ports. Retail SKU includes cables.", + "MM#": "904994", + "Ordering Code": "RS2WG160", + "ECCN": "5A992C", + "CCATS": "G134612", + "US HTS": "8471801000", + "904994": "PCN" + }, + { + "Product Collection": "Intel® Storage Expanders", + "Code Name": "Products formerly French Valley", + "Status": "Launched", + "Launch Date": "Q2'14", + "Expected Discontinuance": "Q4'23", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "Dependent on paired RAID card", + "# of Ports Internal": "28", + "# of Ports External": "8", + "PCIe Host Interface": "PCIe x4 power only", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Expander board and (2) short cables to connect to a RAID card or module", + "Description": "28 internal port and eight external port, 12-Gb/s capable expander card for use with Intel® RAID products.", + "Datasheet": "View now", + "MM#": "932895", + "Ordering Code": "RES3FV288", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8471801000", + "932895": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Storage Expanders", + "Code Name": "Products formerly Truchas Valley", + "Status": "Launched", + "Launch Date": "Q2'14", + "Expected Discontinuance": "Q4'23", + "Target Market": "Scalable Performance", + "Board Form Factor": "Midplane Board", + "Data Transfer Rate": "12 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "Dependent on paired RAID card", + "# of Ports Internal": "36", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) Expander board and short cables to connect to 24-ports on nearby drive backplane", + "Description": "36-port, 12 Gb/s-capable expander card", + "Datasheet": "View now", + "MM#": "932894", + "Ordering Code": "RES3TV360", + "ECCN": "4A994", + "CCATS": "NA", + "US HTS": "8471801000", + "932894": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Storage Expanders", + "Status": "Discontinued", + "Launch Date": "Q2'12", + "Expected Discontinuance": "Q1'17", + "EOL Announce": "Tuesday, January 10, 2017", + "Last Order": "Monday, June 26, 2017", + "Last Receipt Attributes": "Thursday, October 26, 2017", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Mb/s", + "Supported Devices": "SAS/SATA", + "# of Ports Internal": "24", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "RAID Expander Card, Quick Start User Guide, No Cables", + "Description": "SAS-2/6G capable expander card that allows for expanding 4 or 8 ports to 16 or 20 ports respectively. The RES2SV240NC SKU does not contain cables." + }, + { + "Product Collection": "Intel® Storage Expanders", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "1H'17", + "EOL Announce": "Tuesday, January 10, 2017", + "Last Order": "Monday, June 26, 2017", + "Last Receipt Attributes": "Thursday, October 26, 2017", + "Target Market": "Scalable Performance", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "Supported Operating Systems": "N/A", + "RAID Level Supported": "Dependent on paired RAID card", + "# of Ports Internal": "24", + "# of Ports External": "0", + "IO Processor Model": "LSI 6Gb SAS2x24 expander", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) RAID Expander", + "Description": "24 Port SAS 6Gb expander card with ports configurable for input or output. Retail SKU includes cables. Requires system mounting location." + }, + { + "Product Collection": "Intel® Storage Expanders", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'17", + "EOL Announce": "Tuesday, January 10, 2017", + "Last Order": "Monday, June 26, 2017", + "Last Receipt Attributes": "Thursday, October 26, 2017", + "Target Market": "Scalable Performance", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "Dependent on paired RAID card", + "# of Ports Internal": "36", + "# of Ports External": "0", + "IO Processor Model": "LSI 6Gb SAS2x36 expander", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) expander board, (6) short mini-sas cables, (3) screws and bumpers", + "Description": "Spare/Accessory 36 port expander card to be used with multiple Intel Server products. Retail Sku includes cables. Requires special mounting location. Check configuration guide for compatibility." + }, + { + "Product Collection": "Intel® Storage Expanders", + "Code Name": "Products formerly Scotch Valley", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q1'17", + "EOL Announce": "Tuesday, January 10, 2017", + "Last Order": "Monday, July 10, 2017", + "Last Receipt Attributes": "Tuesday, October 10, 2017", + "Target Market": "Scalable Performance", + "Board Form Factor": "Low Profile MD2 Card", + "Data Transfer Rate": "6 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "Dependent on paired RAID card", + "# of Ports Internal": "24", + "# of Ports External": "0", + "PCIe Host Interface": "N/A", + "IO Processor Model": "LSI 6Gb SAS2x24 expander", + "Additional Extended Warranty Details": "Intel® RAID Extended Warranty", + "Included Items": "(1) expander board, (6) short mini-sas cables, (3) screws and bumpers", + "Description": "24 Port SAS 6Gb expander card with ports configurable for input or output. Retail SKU includes cables: Straight 8087, 4x650mm and 2x180mm", + "Datasheet": "View now" + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, October 21, 2019", + "Last Order": "Tuesday, December 24, 2019", + "Last Receipt Attributes": "Tuesday, March 31, 2020", + "Target Market": "Entry", + "Board Form Factor": "Activation Key", + "Supported Devices": "SAS/SATA", + "Included Items": "(1) Intel® RAID Premium Feature Key AXXRPFKHY5", + "Description": "Intel® RAID Premium Feature Key AXXRPFKHY5. Upgrade key to enable RAID 5 functionality for the Intel® Server Board S2600CW2SR, Intel® Server Board S2600CWTSR, and the AHWBPBGB24R bridge board" + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q3'13", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, December 31, 2018", + "Last Order": "Monday, July 1, 2019", + "Last Receipt Attributes": "Tuesday, October 1, 2019", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Supported Operating Systems": "Microsoft Windows Server* 2012Linux", + "Included Items": "AXXRPFKHA2 includes two keys necessary to activate HA firmware on two RAID cards.", + "Description": "Intel RAID Activation Key HA2 allows two Intel RAID controllers to provide failover for a two servers in a cluster or shared storage environment." + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Code Name": "Products formerly RAID", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'23", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Included Items": "One Upgrade Key to enable Drive Encryption Management for Intel RAID 6G and 12G ROC Products.", + "Description": "Upgrade Key to enable Drive Encryption Management for 6G and 12G ROC Intel® RAID Controllers", + "MM#": "915317", + "Ordering Code": "AXXRPFKDE2", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "915317": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Code Name": "Products formerly RAID", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'19", + "EOL Announce": "Monday, October 21, 2019", + "Last Order": "Tuesday, December 24, 2019", + "Last Receipt Attributes": "Tuesday, March 31, 2020", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Included Items": "One Upgrade Key to enable SSD Cache with Fastpath I/O for Intel RAID 6G and 12G ROC Products.", + "Description": "Upgrade Key to enable SSD Cache with Fastpath I/O for 6G and 12G ROC Intel® RAID Controllers" + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Included Items": "Upgrade Key to enable Drive Encryption Management for Intel RAID 6G ROC Products.", + "Description": "Upgrade Key to enable Drive Encryption Management for Intel RAID 6G ROC Products." + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Included Items": "Upgrade Key to enable Rapid Recovery Snapshot for Intel RAID 6G ROC Products.", + "Description": "Upgrade Key to enable Rapid Recovery Snapshot for Intel RAID 6G ROC Products." + }, + { + "Product Collection": "Intel® RAID Premium Features", + "Status": "Discontinued", + "Launch Date": "Q1'11", + "Expected Discontinuance": "Q4 '16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, May 15, 2017", + "Last Receipt Attributes": "Friday, September 15, 2017", + "Long Life": "No", + "Target Market": "Scalable Performance", + "Board Form Factor": "Activation Key", + "Additional Features": "View now", + "Included Items": "Upgrade Key to enable SSD Cache with Fastpath I/O for Intel RAID 6G ROC Products.", + "Description": "Upgrade Key to enable SSD Cache with Fastpath I/O for Intel RAID 6G ROC Products." + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 22, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Data Transfer Rate": "3 Gb/s", + "RAID Level Supported": "0, 1, 10", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "Green Storage Key, Install Guide for 4port SAS Key with Intel® ESRT2 RAID 0/1/10 and Intel® RSTe RAID 0/1/10", + "Description": "(Green) 4port SAS Key with Intel® ESRT2 RAID 0,1, 10 and Intel® RSTe RAID 0,1,10" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 22, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0 1 10 5", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "Yellow Storage Key, Install Guide for 4port SAS Key with Intel® ESRT2 RAID 0/1/5/10 and Intel® RSTe RAID 0/1/10", + "Description": "(Yellow) 4port SAS Key with Intel® ESRT2 RAID 0,1, 5, 10 and Intel® RSTe RAID 0,1,10" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 15, 2016", + "Last Order": "Wednesday, March 1, 2017", + "Last Receipt Attributes": "Thursday, June 1, 2017", + "Data Transfer Rate": "3 Gb/s", + "RAID Level Supported": "0, 1, 10", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "Orange Storage Key, Install Guide for 8port SAS Key with Intel® ESRT2 RAID 0/1/10 and Intel® RSTe RAID 0/1/10", + "Description": "(Orange) 8port SAS Key with Intel® ESRT2 RAID 0,1, 10 and Intel® RSTe RAID 0,1,10" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 22, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SAS/SATA", + "RAID Level Supported": "0 1 10 5", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "Purple Storage Key, Install Guide for 8port SAS Key with Intel® ESRT2 RAID 0/1/5/10 and Intel® RSTe RAID 0/1/10", + "Description": "(Purple) 8port SAS Key with Intel® ESRT2 RAID 0,1, 5, 10 and Intel® RSTe RAID 0,1,10" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Launched", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'23", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SATA Only", + "RAID Level Supported": "0, 1, 10, 5", + "JBOD Mode": "No", + "# of Ports Internal": "4", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "(1) Black Storage Key and Installation Guide for 4 port SATA with Intel® ESRT2 RAID 5", + "Description": "(Black) For C600-based Intel Servers enables adds RAID 5 to 4 SATA ports for ESRT2 RAID 0,1,5, 10. For C610-based servers adds RAID 5 to all embedded SATA ports. Upgrade key to enable ESRT2 RAID 5 functionality on all Intel® Server Boards.", + "MM#": "916346", + "Ordering Code": "RKSATA4R5", + "ECCN": "EAR99", + "CCATS": "NA", + "US HTS": "8471801000", + "916346": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q4'16", + "EOL Announce": "Thursday, December 22, 2016", + "Last Order": "Friday, June 30, 2017", + "Last Receipt Attributes": "Tuesday, October 31, 2017", + "Data Transfer Rate": "3 Gb/s", + "RAID Level Supported": "0, 1, 10", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "Blue Storage Key and Install Guide for 8port SATA Key with Intel® ESRT2 RAID 0/1/10 and Intel® RSTe RAID 0/1/5/10", + "Description": "(Blue) 8port SATA Key with Intel® ESRT2 RAID 0,1, 10 and Intel® RSTe RAID 0,1,5,10" + }, + { + "Product Collection": "Intel® RAID Software", + "Status": "Discontinued", + "Launch Date": "Q1'12", + "Expected Discontinuance": "Q2'18", + "EOL Announce": "Monday, May 21, 2018", + "Last Order": "Wednesday, November 21, 2018", + "Last Receipt Attributes": "Thursday, February 21, 2019", + "Data Transfer Rate": "3 Gb/s", + "Supported Devices": "SATA Only", + "RAID Level Supported": "0, 1, 10, 5", + "JBOD Mode": "No", + "# of Ports Internal": "8", + "# of Ports External": "0", + "PCIe Host Interface": "PCIe x4 Gen1", + "IO Processor Model": "C600/610 Chipset", + "Included Items": "(1) White Storage Key, Install Guide for 8port SATA with Intel® ESRT2 RAID 0/1/5/10 and Intel® RSTe RAID 0/1/5/10", + "Description": "(White) 8port SATA with Intel® ESRT2 RAID 0,1, 5, 10 and Intel® RSTe RAID 0,1,5,10" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 8 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AKAH", + "Spec Code": "SRL01", + "Ordering Code": "FH82Q670", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKAH": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 8 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99ALA4", + "Spec Code": "SRL2R", + "Ordering Code": "FH82Q670E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99ALA4": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "28", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 10 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC 9560 + Bluetooth 5.0", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99ALA7", + "Spec Code": "SRL2S", + "Ordering Code": "FH82R680E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99ALA7": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "Workstation", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "28", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 10 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AKAF", + "Spec Code": "SRL00", + "Ordering Code": "FH82W680", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKAF": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "4", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "14", + "# of USB Ports": "12", + "USB Configuration": "Up to 2 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 4 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 6 - USB 3.2 Gen 1x1 (5Gb/s) Ports 12 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "0,15,10 - SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AKAA", + "Spec Code": "SRKZX", + "Ordering Code": "FH82B660", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKAA": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "1", + "ECC Memory Supported ‡": "No", + "# of Displays Supported ‡": "3", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "10", + "USB Configuration": "Up to 2 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 4 - USB 3.2 Gen 1x1 (5Gb/s) Ports 10 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AKA9", + "Spec Code": "SRKZW", + "Ordering Code": "FH82H610", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKA9": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "1", + "ECC Memory Supported ‡": "No", + "# of Displays Supported ‡": "3", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "4", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "10", + "USB Configuration": "Up to 2 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 4 - USB 3.2 Gen 1x1 (5Gb/s) Ports 10 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99ALAF", + "Spec Code": "SRL2T", + "Ordering Code": "FH82H610E", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99ALAF": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'22", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "Up to 2 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 4 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 8 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AKAC", + "Spec Code": "SRKZY", + "Ordering Code": "FH82H670", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKAC": "PCN" + }, + { + "Product Collection": "Intel® 600 Series Desktop Chipsets", + "Code Name": "Products formerly Alder Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q4'21", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "No", + "Supports Memory Overclocking": "IA, BCLK, Memory", + "# of Displays Supported ‡": "4", + "Direct Media Interface (DMI) Revision": "4.0", + "Max # of DMI Lanes": "8", + "PCI Express Revision": "3.0, 4.0", + "PCI Express Configurations ‡": "x1,x2,x4", + "Max # of PCI Express Lanes": "28", + "# of USB Ports": "14", + "USB Configuration": "Up to 4 - USB 3.2 Gen 2x2 (20Gb/s) Ports Up to 10 - USB 3.2 Gen 2x1 (10Gb/s) Ports Up to 10 - USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2, 2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,15,10 - PCIe/SATA", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6E AX211(Gig+)", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4", + "Package Size": "28mm x 25mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "16", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Start Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AKAD", + "Spec Code": "SRKZZ", + "Ordering Code": "FH82Z690", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AKAD": "PCN" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "02'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "- Up to 3 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 8 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC4Z", + "Spec Code": "SRKM4", + "Ordering Code": "FH82Q570", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC4Z": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "02'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "Workstation", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "- Up to 3 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 10 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "99AC52", + "Spec Code": "SRKM7", + "Ordering Code": "FH82W580", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC52": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "01'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "12", + "USB Configuration": "- Up to 2 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 4 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 6 USB 3.2 Gen 1x1 (5Gb/s) Ports 12 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AC50", + "Spec Code": "SRKM5", + "Ordering Code": "FH82B560", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC50": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "01'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "1", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "10", + "USB Configuration": "- Up to 4 USB 3.2 Gen 1x1 (5Gb/s) Ports 10 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AC4W", + "Spec Code": "SRKM2", + "Ordering Code": "FH82H510", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC4W": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "01'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "- Up to 2 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 4 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 8 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AC51", + "Spec Code": "SRKM6", + "Ordering Code": "FH82H570", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC51": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 500 Series Desktop Chipsets", + "Code Name": "Products formerly Rocket Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "01'21", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "- Up to 3 USB 3.2 Gen 2x2 (20Gb/s) Ports - Up to 10 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16+1x4 or 2x8+1x4 or 1x8+3x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "15", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "99AC4X", + "Spec Code": "SRKM3", + "Ordering Code": "FH82Z590", + "Stepping": "B1", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "99AC4X": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 6 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "999RGZ", + "Spec Code": "SRH1A", + "Ordering Code": "FH82Q470", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RGZ": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 6 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "25mm x 24mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "999X8M", + "Spec Code": "SRJ7X", + "Ordering Code": "FH82Q470E", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X8M": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Workstation", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 8 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "999RGX", + "Spec Code": "SRH19", + "Ordering Code": "FH82W480", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RGX": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "ECC Memory Supported ‡": "Yes", + "Supports Memory Overclocking": "Memory", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 8 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "25mm x 24mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "999X92", + "Spec Code": "SRJ7Y", + "Ordering Code": "FH82W480E", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999X92": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "12", + "USB Configuration": "8 Total USB 3.2 Ports - Up to 0 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 8 USB 3.2 Gen 1x1 (5Gb/s) Ports 12 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "999RH0", + "Spec Code": "SRH1C", + "Ordering Code": "FH82B460", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RH0": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "1", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "10", + "USB Configuration": "4 Total USB 3.2 Ports - Up to 0 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 4 USB 3.2 Gen 1x1 (5Gb/s) Ports 10 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "No", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "999RH1", + "Spec Code": "SRH1D", + "Ordering Code": "FH82H410", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RH1": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Embedded", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Embedded Broad Market Commercial Temp", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "1", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "10", + "USB Configuration": "6 Total USB 3.2 Ports - Up to 0 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 6 USB 3.2 Gen 1x1 (5Gb/s) Ports 10 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "No", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "25mm x 24mm", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "999WT2", + "Spec Code": "SRH8W", + "Ordering Code": "FH82H420E", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999WT2": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "8 Total USB 3.2 Ports - Up to 4 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 8 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "999RGP", + "Spec Code": "SRH14", + "Ordering Code": "FH82H470", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RGP": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 400 Series Desktop Chipsets", + "Code Name": "Products formerly Comet Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'20", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Use Conditions": "PC/Client/Tablet", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.2 Ports - Up to 6 USB 3.2 Gen 2x1 (10Gb/s) Ports - Up to 10 USB 3.2 Gen 1x1 (5Gb/s) Ports 14 USB 2.0 Ports", + "USB Revision": "3.2/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "0,1,5,10(SATA)", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wi-Fi 6 AX201", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "25mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "14", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "999RGN", + "Spec Code": "SRH13", + "Ordering Code": "FH82Z490", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "999RGN": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q4'18", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "985926", + "Spec Code": "SREVJ", + "Ordering Code": "GL82B365", + "Stepping": "A0", + "ECCN": "5A992C", + "CCATS": "G147881", + "US HTS": "8542310001", + "985926": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q4'18", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.1 Ports - Up to 6 USB 3.1 Gen 2 Ports - Up to 10 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Boot Guard": "Yes" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "12", + "USB Configuration": "6 Total USB 3.1 Ports - Up to 4 USB 3.1 Gen 2 Ports - Up to 6 USB 3.1 Gen 1 Ports 12 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Start Technology": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Boot Guard": "Yes" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'18", + "Bus Speed": "5 GT/s", + "Lithography": "14 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "1", + "# of Displays Supported ‡": "2", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "10", + "USB Configuration": "4 USB 3.1 Gen 1 Ports 10 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "4", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "978829", + "Spec Code": "SRCXY", + "Ordering Code": "FH82H310", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "978829": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Configuration": "8 Total USB 3.1 Ports - Up to 4 USB 3.1 Gen 2 Ports - Up to 8 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Boot Guard": "Yes" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'18", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Configuration": "10 Total USB 3.1 Ports - Up to 6 USB 3.1 Gen 2 Ports - Up to 10 USB 3.1 Gen 1 Ports 14 USB 2.0 Ports", + "USB Revision": "3.1/2.0", + "Max # of SATA 6.0 Gb/s Ports": "6", + "Integrated LAN": "Integrated MAC", + "Integrated Wireless‡": "Intel® Wireless-AC MAC", + "Supported Processor PCI Express Port Revision": "3", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "12", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Standard Manageability": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "964246", + "Spec Code": "SR404", + "Ordering Code": "FH82Q370", + "Stepping": "B0", + "ECCN": "5A992CN3", + "CCATS": "G158870", + "US HTS": "8542310001", + "964246": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 300 Series Desktop Chipsets", + "Code Name": "Products formerly Coffee Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q4'17", + "Bus Speed": "8 GT/s", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "959538", + "Spec Code": "SR3MD", + "Ordering Code": "GL82Z370", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "959538": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q2'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "Integrated Graphics ‡": "No", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "8", + "RAID Configuration": "0, 1, 5, 10", + "Integrated LAN": "Integrated MAC", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "MM#": "951622", + "Spec Code": "SR2Z2", + "Ordering Code": "GL82X299", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951622": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "12", + "# of USB Ports": "12", + "USB Revision": "3.0/2.0", + "USB 3.0": "6", + "USB 2.0": "Up to 12", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "951173", + "Spec Code": "SR2WC", + "Ordering Code": "GL82B250", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951173": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "951171", + "Spec Code": "SR2WA", + "Ordering Code": "GL82H270", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951171": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "14", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "951174", + "Spec Code": "SR2WD", + "Ordering Code": "GL82Q250", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951174": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "951175", + "Spec Code": "SR2WE", + "Ordering Code": "GL82Q270", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951175": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 200 Series Desktop Chipsets", + "Code Name": "Products formerly Kaby Lake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q1'17", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Datasheet": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "24", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "23mm x 24mm", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "951172", + "Spec Code": "SR2WB", + "Ordering Code": "GL82Z270", + "Stepping": "A0", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "951172": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Discontinued", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "8", + "# of USB Ports": "12", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 6", + "USB 2.0": "Up to 12", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "943512", + "Spec Code": "SR2C7", + "Ordering Code": "GLB150", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943512": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "5 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "1", + "# of Displays Supported ‡": "2", + "PCI Support": "No", + "PCI Express Revision": "2.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "6", + "# of USB Ports": "10", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 4", + "USB 2.0": "Up to 10", + "Max # of SATA 6.0 Gb/s Ports": "4", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Smart Sound Technology": "No", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "943515", + "Spec Code": "SR2CA", + "Ordering Code": "GLH110", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943515": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Discontinued", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "16", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "943513", + "Spec Code": "SR2C8", + "Ordering Code": "GLH170", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943513": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Discontinued", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Embedded Options Available": "No", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "10", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 8", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "N/A", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "No", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "No", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "943511", + "Spec Code": "SR2C6", + "Ordering Code": "GLQ150", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943511": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Launched", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "No", + "Use Conditions": "Industrial Commercial Temp, Embedded Broad Market Commercial Temp, PC/Client/Tablet", + "Embedded Options Available": "Yes", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "Yes", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "Yes", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "Yes", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "Intel® Boot Guard": "Yes", + "MM#": "943510", + "Spec Code": "SR2C5", + "Ordering Code": "GLQ170", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943510": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® 100 Series Desktop Chipsets", + "Code Name": "Products formerly Skylake", + "Status": "Discontinued", + "Vertical Segment": "Desktop", + "Launch Date": "Q3'15", + "Bus Speed": "8 GT/s", + "Lithography": "22 nm", + "TDP": "6 W", + "Supports Overclocking": "Yes", + "Embedded Options Available": "No", + "Additional Information": "View now", + "# of DIMMs per channel": "2", + "# of Displays Supported ‡": "3", + "PCI Support": "No", + "PCI Express Revision": "3.0", + "PCI Express Configurations ‡": "x1, x2, x4", + "Max # of PCI Express Lanes": "20", + "# of USB Ports": "14", + "USB Revision": "3.0/2.0", + "USB 3.0": "Up to 10", + "USB 2.0": "Up to 14", + "Max # of SATA 6.0 Gb/s Ports": "6", + "RAID Configuration": "PCIe* 0,1,5 / SATA 0,1,5,10", + "Integrated LAN": "Integrated MAC", + "Supported Processor PCI Express Port Configurations": "1x16 or 2x8 or 1x8+2x4", + "Package Size": "23mm x 23mm", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel vPro® Platform Eligibility ‡": "No", + "Intel® ME Firmware Version": "11", + "Intel® HD Audio Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "No", + "Intel® Standard Manageability": "No", + "Intel® Smart Response Technology": "Yes", + "Intel® Stable IT Platform Program (SIPP)": "No", + "Intel® Rapid Storage Technology for PCI Storage": "Yes", + "Intel® Smart Sound Technology": "Yes", + "Intel® Platform Trust Technology (Intel® PTT)": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "Intel® Boot Guard": "Yes", + "MM#": "943514", + "Spec Code": "SR2C9", + "Ordering Code": "GLZ170", + "Stepping": "D1", + "ECCN": "5A992CN3", + "CCATS": "G147881", + "US HTS": "8542310001", + "943514": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board D40AMP", + "Code Name": "Products formerly American Pass", + "Status": "Launched", + "Launch Date": "Q4'21", + "Expected Discontinuance": "2024", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware ESXi* 7.0, Windows Server 2022*, Windows Server 2019*, Red Hat Enterprise Linux 8.4*, SUSE Linux Enterprise Server 15 SP3*", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Dual Socket-P4 4189", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board D40AMP1SB (24) DIMM slots with supports for standard DDR4 (16) Intel® Optane™ persistent memory 200 series (8) (1) PCIe* ExaMax* connector (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor (9) Heat sinks for voltage regulators", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "Purpose built, rack-optimized server board ideal for use in HCI, HPC and AI applications. The architecture of the server board is developed around the features and functions of the 3rd Gen Intel® Xeon® Scalable processor family.", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "DDR4 (RDIMM) 3DS-RDIMM Load Reduced DDR4 (LRDIMM) 3DS-LRDIMM", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "4.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "(1) USB 3.0 ports (2) USB 3.0 ports (dual-stack on break-out cable)", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AH9K", + "Ordering Code": "D40AMP1SB", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99AH9K": "PCN" + }, + { + "Product Collection": "Intel® Server Board D50TNP", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "270 W", + "Included Items": "(1) Intel® Server Board D50TNP1SB (24) DIMM slots with supports for standard DDR4 and Intel® Optane™ persistent memory 200 series (8) PCIe* NVMe* OCuLink connectors (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor family supported by D50TNP product family – iPN J98484-xxx (9) Heat sinks for voltage regulators", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A high-density half-width server board supporting two 3rd Generation Intel® Xeon® Processor Scalable Family and designed to serve compute, management, storage, and acceleration needs.", + "Max Memory Size (dependent on memory type)": "6 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM -Intel® Optane™ persistent memory 200 series modules.", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "56", + "PCI Express Revision": "4.0", + "PCIe OCuLink Connectors (NVMe support)": "8", + "Riser Slot 1: Total # of Lanes": "32", + "Riser Slot 2: Total # of Lanes": "24", + "# of USB Ports": "3", + "USB Configuration": "(1) USB 3.0 port (2) USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99A2AT", + "Ordering Code": "D50TNP1SB", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99A2AT": "PCN" + }, + { + "Product Collection": "Intel® Server Board D50TNP", + "Code Name": "Products formerly Tennessee Pass", + "Status": "Launched", + "Launch Date": "Q2'21", + "Expected Discontinuance": "2025", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "3rd Generation Intel® Xeon® Scalable Processors", + "Board Form Factor": "8.33” x 21.5”", + "Chassis Form Factor": "Rack", + "Socket": "Socket-P4", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "270 W", + "Included Items": "(1) Intel® Server Board D50TNP1SBCR (2) DIMM slots with supports for standard DDR4 (2) Processor carrier clip, for 3rd Gen Intel® Xeon® Scalable processor family – iPN J98484-xxx (9) Heat sinks for voltage regulators (4) DIMM baffles – iPN M19136-xxx (8) Plastic rivets for DIMM baffles – iPN M19137-xxx", + "Board Chipset": "Intel® C621A Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A high-density half-width server board supporting 3rd Generation Intel® Xeon® Processor Scalable Family to serve compute needs With either air-cooling or liquid-cooling.", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "-DDR4 (RDIMM) -3DS-RDIMM -Load Reduced DDR4 (LRDIMM) -3DS-LRDIMM", + "Max # of Memory Channels": "16", + "Max Memory Bandwidth": "204.8 GB/s", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "4.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "3", + "USB Configuration": "(1) USB 3.0 port (2) USB 3.0 ports (dual-stack)", + "USB Revision": "3.0", + "Total # of SATA Ports": "2", + "Max # of UPI Links": "3", + "# of Serial Ports": "1", + "Integrated LAN": "1", + "Max CPU Configuration": "2", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "99AA23", + "Ordering Code": "D50TNP1SBCR", + "ECCN": "5A002U", + "CCATS": "G157815L1", + "US HTS": "8473301180", + "99AA23": "PCN" + }, + { + "Product Collection": "Intel® Server Board M20MYP", + "Code Name": "Products formerly Mystic Pass", + "Status": "Launched", + "Launch Date": "Q2'20", + "Expected Discontinuance": "2023", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board MYP1USVB (2) SATA cables 880.00mm (1) IO shield (1) Protective insulator (1) Configuration label (sticker to be added to chassis)", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "A standard form factor server board supporting two 2nd Generation Intel® Xeon® Scalable Processors, up to 205 W TDP, 16 DIMMs, and Dual 10GBase-T ports. Board only is available as S2600STBR MM# 986246", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933", + "Max # of Memory Channels": "16", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "RAID 0/1/10 (5 optional)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "(Optional) two 10 Gb SFP+ connectors", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board M10JNP", + "Code Name": "Products formerly Juniper Pass", + "Status": "Launched", + "Launch Date": "Q4'19", + "EOL Announce": "Friday, July 1, 2022", + "Last Order": "Monday, October 31, 2022", + "Last Receipt Attributes": "Saturday, December 31, 2022", + "Limited 3-year Warranty": "Yes", + "Compatible Product Series": "Intel® Xeon® E Processor", + "Board Form Factor": "uATX", + "Socket": "Socket H4, FCLGA 1151", + "Integrated BMC with IPMI": "IPMI and Redfish", + "TDP": "95 W", + "Included Items": "Intel® Server Board M10JNP2SB I/O shield", + "Board Chipset": "Intel® C246 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "Yes", + "Datasheet": "View now", + "Description": "Single socket solution for entry level servers in SMB, web hosting, content delivery, storage enterprise and embedded applications. Optimized for use with Intel® Xeon® E processor family. Flexible uATX form factor fitting into rack and pedestal chassis.", + "Max Memory Size (dependent on memory type)": "128 GB", + "Memory Types": "DDR4 UDIMM ECC, 2666 MT/s, 1.2V", + "Max # of Memory Channels": "2", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "DDI ports", + "Max # of PCI Express Lanes": "8", + "PCI Express Revision": "PCIe* 3.0 (3 ports, 2 x8, 1 x4)", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "2", + "# of USB Ports": "4", + "USB Configuration": "4 x External USB 3.1 Gen2 ports 2 x USB 3.1 Gen1 ports (via 2x10 pin connector)", + "USB Revision": "3.1", + "Total # of SATA Ports": "8", + "RAID Configuration": "RAID 0/1/10/5 (Intel RSTe)", + "# of Serial Ports": "2", + "# of LAN Ports": "4", + "Integrated LAN": "4 x 1Gbps LAN ports + 1 x 1Gbps management port", + "Max CPU Configuration": "1", + "TPM Version": "2.0 support", + "MM#": "999PLA", + "Ordering Code": "BBM10JNP2SB", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "999PL9": "PCN\n |\n MDDS", + "999PLA": "PCN" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, July 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v6 Product Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "TDP": "80 W", + "Included Items": "(1) Server Board; (4) SATA Data Cables; (1) I/O Shield; (1) Attention Document; (1) Quick Start User’s Guide; (1) Quick Configuration Label", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level single socket board with Intel® C236 chipset supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family , 4 UDIMMs, Dual integrated 1GBaseT Ethernet. Supports eight SATA3 ports, M.2 SATA SSD (42mm) and Intel® Integrated RAID Module.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Display Port, VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "9", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RST (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "2.0", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, July 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "# of QPI Links": "0", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v6 Product Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Rack", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI2.0", + "TDP": "80 W", + "Included Items": "(1)Server Board. (4)SATA Data Cable. (1)Attention Documentation. (1)Quick Start User's Guide. (1)Quick Configuration Label", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level board with Intel® C236 chipset supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family, 4 UDIMMs, Dual integrated 1GBaseT Ethernet. Supports eight SATA3 ports, M.2 SATA SSD (42mm), Intel® Integrated RAID Module and Intel® IO Module.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "9", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "2.0", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Tuesday, July 30, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "# of QPI Links": "0", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v6 Product Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "TDP": "80 W", + "Included Items": "(1) Server Board, (4) SATA Data Cables, (1) I/O Shield, (1) Attention Document; (1) Quick Start User’s Guide; (1) Quick Configuration Label", + "Board Chipset": "Intel® C232 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level board with Intel® C232 chipset supporting one Intel® Xeon® Processor E3-1200 v5 & v6 family. Dual integrated 1GBaseT Ethernet. Note: FUPSESK kit is required to enable front panel USB ports when using with P4000XXSFDR", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "2", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "6", + "RAID Configuration": "Software RAID RST (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "# of QPI Links": "0", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Rack", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI2.0", + "TDP": "80 W", + "Included Items": "(1)Server Board. (4)SATA Data Cable. (1)Attention Documentation. (1)Quick Start User's Guide. (1)Quick Configuration Label", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level board with Intel® C236 chipset supporting one Intel® Xeon® Processor E3-1200 v5 family, 4 UDIMMs, Dual integrated 1GBaseT Ethernet. Supports eight SATA3 ports, M.2 SATA SSD (42mm), Intel® Integrated RAID Module and Intel® IO Module.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "9", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RSTe (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "944684", + "Ordering Code": "DBS1200SPO", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "944684": "PCN" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "# of QPI Links": "0", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Pedestal", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "TDP": "80 W", + "Included Items": "(1) Server Board; (4) SATA Data Cables; (1) I/O Shield; (1) Attention Document; (1) Quick Start User’s Guide; (1) Quick Configuration Label", + "Board Chipset": "Intel® C236 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level single socket board with Intel® C236 chipset supporting one Intel® Xeon® Processor E3-1200 v5 family, 4 UDIMMs, Dual integrated 1GBaseT Ethernet. Supports eight SATA3 ports, M.2 SATA SSD (42mm) and Intel® Integrated RAID Module.", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Display Port, VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "9", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "8", + "RAID Configuration": "Software RAID RST (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "TPM Version": "1.2", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "944682", + "Ordering Code": "DBS1200SPL", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "944682": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S1200SP Family", + "Code Name": "Products formerly Silver Pass", + "Status": "Discontinued", + "Launch Date": "Q4'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Tuesday, November 15, 2016", + "Last Order": "Monday, January 30, 2017", + "Last Receipt Attributes": "Monday, March 13, 2017", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "# of QPI Links": "0", + "Compatible Product Series": "Intel® Xeon® Processor E3-1200 v5 Family", + "Board Form Factor": "uATX", + "Chassis Form Factor": "Pedestal", + "Socket": "LGA 1151 Socket H4", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "TDP": "80 W", + "Included Items": "(1) Server Board, (4) SATA Data Cables, (1) I/O Shield, (1) Attention Document; (1) Quick Start User’s Guide; (1) Quick Configuration Label", + "Board Chipset": "Intel® C232 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Description": "An entry-level board with Intel® C232 chipset supporting one Intel® Xeon® Processor E3-1200 v5 family. Dual integrated 1GBaseT Ethernet. Note: FUPSESK kit is required to enable front panel USB ports when using with P4000XXSFDR", + "Max Memory Size (dependent on memory type)": "64 GB", + "Memory Types": "DDR4 ECC UDIMM", + "Max # of Memory Channels": "2", + "Max Memory Bandwidth": "68.256 GB/s", + "Physical Address Extensions": "40-bit", + "Max # of DIMMs": "4", + "ECC Memory Supported ‡": "Yes", + "DIMM Type": "UDIMM", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "20", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "2", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "6", + "RAID Configuration": "Software RAID RST (0,1,10,5) and ESRT2 (0,1,10)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "944683", + "Ordering Code": "DBS1200SPS", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "944683": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q1'18", + "Expected Discontinuance": "Q2'19", + "EOL Announce": "Monday, June 10, 2019", + "Last Order": "Friday, August 9, 2019", + "Last Receipt Attributes": "Saturday, December 7, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "320 W", + "Included Items": "1) Intel® Server Board S7200APR (single board)", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "The Intel® Server Board S7200APR Product Family is specifically designed forparallelized workflows in the high performance computing (HPC) market.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel(R) Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "No", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q2'18", + "EOL Announce": "Monday, April 30, 2018", + "Last Order": "Sunday, September 30, 2018", + "Last Receipt Attributes": "Sunday, December 30, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "215 W", + "Included Items": "(1) Intel® Server Board S7200AP (Note: OEM SKU contains 10 boards)", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "The Intel® Server Board S7200AP Product Family is specifically designed for parallelized workflows in the high performance computing (HPC) market.", + "Additional Information": "View now", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel® Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "(2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "942366", + "Ordering Code": "S7200AP", + "ECCN": "5A992CN3", + "CCATS": "G074226+", + "US HTS": "8473301180" + }, + { + "Product Collection": "Intel® Server Board S7200AP Family", + "Code Name": "Products formerly Adams Pass", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q2'18", + "EOL Announce": "Monday, April 30, 2018", + "Last Order": "Sunday, September 30, 2018", + "Last Receipt Attributes": "Sunday, December 30, 2018", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Single Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon Phi™ Processor 7200 Series", + "Board Form Factor": "Custom 6.8\" x 14.2\"", + "Chassis Form Factor": "2U Rack", + "Socket": "LGA 3647-1", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "Emulex Pilot III controller", + "Rack-Friendly Board": "Yes", + "TDP": "215 W", + "Included Items": "(10) Intel® Server Board S7200APL", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "The Intel® Server Board S7200AP Product Family is specifically designed forparallelized workflows in the high performance computing (HPC) market.", + "Max Memory Size (dependent on memory type)": "384 GB", + "Memory Types": "Registered DDR4 (RDIMM) and Load Reduced DDR4 (LRDIMM)", + "Max # of Memory Channels": "6", + "Max Memory Bandwidth": "512 GB/s", + "Max # of DIMMs": "6", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "Internal RGB Video Header", + "Max # of PCI Express Lanes": "32", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "1", + "RAID Configuration": "Intel® Embedded Server RAID Technology (ESRT2)", + "# of Serial Ports": "1", + "Integrated LAN": "(2) RJ-45 1Gb NIC ports", + "Max CPU Configuration": "1", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "No", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "Yes", + "Intel® Quiet System Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "950090", + "Ordering Code": "BBS7200APL", + "ECCN": "5A992CN3", + "CCATS": "G074226+", + "US HTS": "8473301180", + "950090": "PCN" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPBR", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two 2nd Generation Intel® Xeon® Processor Scalable Family supporting dual 10GbE and 16 DIMMs with two DIMMs per channel designed for large memory bandwidth; an ideal option for HPC and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "2.8 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "Integrated LAN": "Dual 10GBase-T ports", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986113", + "Ordering Code": "BBS2600BPBR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986113": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPQR", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two 2nd Generation Intel® Xeon® Processor Scalable Family supporting dual 10GbE, QAT and 16 DIMMs with two DIMMs per Channel; an ideal option for HPC and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "2.8 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "Integrated LAN": "Dual 10GBase-T ports", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986115", + "Ordering Code": "BBS2600BPQR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986115": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPSR", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two 2nd Generation Intel® Xeon® Processor Scalable Family supporting dual SFP+ and 16 DIMMs with two DIMMs per Channel designed for large memory bandwidth; an ideal option for HPC and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "2.8 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "Integrated LAN": "Dual 10GbE SFP+ ports support", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986114", + "Ordering Code": "BBS2600BPSR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986114": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, Red Hat Enterprise Linux 6.8*, SUSE Linux Enterprise Server 12 SP2*, SUSE Linux Enterprise Server 11 SP4*, Ubuntu*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPQ", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® Processor Scalable Family supporting dual 10GbE, QAT and 16 DIMMs with two DIMMs per Channel; an ideal option for high-performance computing and datacenter deployment.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, Red Hat Enterprise Linux 6.8*, SUSE Linux Enterprise Server 12 SP2*, SUSE Linux Enterprise Server 11 SP4*, Ubuntu*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPS", + "Board Chipset": "Intel® C622 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® Processor Scalable Family supporting dual SFP+ and 16 DIMMs with two DIMMs per Channel designed for large memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GbE SFP+ ports support", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600BPR", + "Code Name": "Products formerly Buchanan Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2016*, Windows Server 2012 R2*, Red Hat Enterprise Linux 7.3*, Red Hat Enterprise Linux 6.8*, SUSE Linux Enterprise Server 12 SP2*, SUSE Linux Enterprise Server 11 SP4*, Ubuntu*, CentOS 7.3*", + "Board Form Factor": "Custom 6.8\" x 19.1\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "165 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600BPB", + "Board Chipset": "Intel® C621 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® Processor Scalable Family supporting dual 10GbE and 16 DIMMs with two DIMMs per Channel designed for large memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "2", + "USB Revision": "3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "RAID Levels 0/1/10/5/50 (LSI)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "Dual 10GBase-T ports", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CW2R; (1) I/O shield; (2) SATA cables; (1) Quick Start User’s Guide; (1) Attention document and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W, 16 DIMMs, and two 1-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "4", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CW2SR; (1) I/O shield; (2) SATA cables; (1) Quick Start User’s Guide Attention document and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W, 16 DIMMs, two 1-Gb ethernet ports, and an eight port LSI* 3008 SAS controller", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "2", + "PCIe x16 Gen 3": "3", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "8", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CWTR; (1) I/O shield; (2) SATA cables; (1) Quick Start User’s Guide Attention document and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W, 16 DIMMs, and two 10-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "4", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CWTSR; (1) I/O shield; (2) SATA cables; (1) Quick Start User’s Guide Attention document and configuration labels document and configuration labels", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W, 16 DIMMs, two 10-Gb ethernet ports, and an eight port LSI* 3008 SAS controller", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "2", + "PCIe x16 Gen 3": "3", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "8", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CW2S, (1) I/O shield, (2) SATA cables, Quick Start User’s Guide, Attention document, and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 16 DIMMs, two 1-Gb ethernet ports, and an eight port LSI* 3008 SAS controller", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "136 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "2", + "PCIe x16 Gen 3": "3", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G, ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "8", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "936409", + "Ordering Code": "BBS2600CW2S", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473301180", + "936408": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CWT, I/O shield, 2 SATA cables, Quick Start User’s Guide, Attention document, and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 16 DIMMs, and two 10-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "136 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "4", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G, ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "936390", + "Ordering Code": "DBS2600CWT", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473301180", + "936390": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q1'15", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CWTS, (1) I/O shield, (2) SATA cables, a Quick Start User’s Guide, Attention document, and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 16 DIMMs, two 10-Gb ethernet ports, and an eight port LSI* 3008 SAS controller", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "136 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "2", + "PCIe x16 Gen 3": "3", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G, ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "8", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "936411", + "Ordering Code": "BBS2600CWTS", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473301180", + "936410": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600CW Family", + "Code Name": "Products formerly Cottonwood Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "SSI EEB 12\" x 13\"", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600CW2, (1) I/O shield, (2) SATA cables, (1) Quick Start User’s Guide, (1) Attention document, and configuration labels. Note: the OEM 10 Pack does not ship with included items.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Embedded", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A general purpose server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 16 DIMMs, and two 1-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "136 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "4", + "PCIe x4 Gen 2.x": "1", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "PCH SATA 6G, ESRT2 RAID 0,1,10", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "936389", + "Ordering Code": "BBS2600CW2", + "ECCN": "5A992C", + "CCATS": "G145323", + "US HTS": "8473301180", + "936388": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600KPFR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processor E5-2600 V3 family, InfiniBand* FDR, and eight DIMMs with one DIMM per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600KPR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processors E5-2600 V3/V4 family and eight DIMMs with one DIMM per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600KPTR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processors E5-2600 V3/V4 family and eight DIMMs with one DIMM per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600KP", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processors E5-2600 V3 family and eight DIMMs with one DIMM per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "933683", + "Ordering Code": "BBS2600KP", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "933683": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600KP Family", + "Code Name": "Products formerly Kennedy Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 6.4\" x 17.7\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600KPF", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processor E5-2600 V3 family, InfiniBand* FDR, and eight DIMMs with one DIMM per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "512 GB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "8", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "64", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (ESRT2 or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "933685", + "Ordering Code": "BBS2600KPF", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "933685": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600ST", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600STBR (2) SATA cables 880.00mm (1) IO shield (1) Protective insulator (1) Configuration label (sticker to be added to chassis)", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A standard form factor server board supporting two 2nd Generation Intel® Xeon® Scalable Processors, up to 205 W TDP, 16 DIMMs, and Dual 10GBase-T ports.", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933", + "Max # of Memory Channels": "16", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "(Optional) two 10 Gb SFP+ connectors", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986308", + "Ordering Code": "BBS2600STBR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986246": "PCN\n |\n MDDS", + "986308": "PCN" + }, + { + "Product Collection": "Intel® Server Board S2600ST", + "Code Name": "Products formerly Sawtooth", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600STQR (2) SATA cables 880.00mm (1) IO shield (1) Protective insulator (1) Configuration label (sticker to be added to chassis)", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A standard form factor server board supporting two 2nd Generation Intel® Xeon® Scalable Processors, up to 205 W TDP, 16 DIMMs, and Dual 10GBase-T ports. Includes three Intel® QuickAssist Technology (Intel® QAT) engines.", + "Max Memory Size (dependent on memory type)": "2 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933", + "Max # of Memory Channels": "16", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "2", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "(Optional) two 10 Gb SFP+ connectors", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986307", + "Ordering Code": "S2600STQR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986307": "PCN" + }, + { + "Product Collection": "Intel® Server Board S2600ST", + "Code Name": "Products formerly Sawtooth", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600STB. (2) SATA cables 880.00mm (1) IO shield (1) Protective insulator (1) Configuration label (sticker to be added to chassis)", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A standard form factor server board supporting two Intel® Xeon® Scalable Processors, up to 205 W TDP, 16 DIMMs, and Dual 10GBase-T ports.", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "(Optional) two 10 Gb SFP+ connectors", + "Integrated SAS Ports": "0", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600ST", + "Code Name": "Products formerly Sawtooth", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Board Form Factor": "SSI EEB (12 x 13 in)", + "Chassis Form Factor": "Rack or Pedestal", + "Socket": "Socket P", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "Intel® Server Board S2600STQ with (2) Processor sockets – compatible with the Intel® Xeon® processor Scalable family; Intel® C628 Chipset; Support for Quick Assist Technology (QAT); On-board Dual Port RJ45 10GbE LAN; (2) on board PCIe* NVMe OCuLink Connectors; 12x SATA 6Gbps ports", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Small and Medium Business", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A standard form factor server board supporting two Intel® Xeon® Scalable Processors, up to 205 W TDP, 16 DIMMs, and Dual 10GBase-T ports. Includes three Intel® QuickAssist Technology (Intel® QAT) engines.", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "3", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "2", + "# of USB Ports": "7", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "(Optional) two 10 Gb SFP+ connectors", + "Integrated SAS Ports": "0", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "2.0", + "Intel® AES New Instructions": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'17", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "2U Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600TPNR", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A high density server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family and 16 DIMMs with two DIMMs per Channel designed for higher memory capability and I/O capability; an ideal option for high-performance computing and big data.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (LSI RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Sunday, January 13, 2019", + "Last Order": "Thursday, February 14, 2019", + "Last Receipt Attributes": "Sunday, July 14, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600TPFR", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family InfiniBand* FDR and 16 DIMMs with two DIMMs per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600TPR", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Description": "A high density server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family and 16 DIMMs with two DIMMs per Channel designed for higher memory capability and I/O capability; an ideal option for high-performance computing and big data.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (LSI RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "No", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No" + }, + { + "Product Collection": "Intel® Server Board S2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600TPF", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high-density server board supporting two Intel® Xeon® processor E5-2600 V3 family, InfiniBand* FDR, and 16 DIMMs with two DIMMs per Channel designed for higher memory bandwidth; an ideal option for high-performance computing and datacenter deployment.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "16", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (LSI or RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "Yes", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "935280", + "Ordering Code": "BBS2600TPF", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "935280": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600TP Family", + "Code Name": "Products formerly Taylor Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q4'17", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 6.8\" x 18.9\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0", + "Rack-Friendly Board": "Yes", + "TDP": "160 W", + "Included Items": "OEM 10 pack includes (10) Intel® Server Board S2600TP", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "High Performance Computing", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A high density server board supporting two Intel® Xeon® processor E5-2600 V3 family and 16 DIMMs with two DIMMs per Channel designed for higher memory capability and I/O capability; an ideal option for high-performance computing and big data.", + "Max Memory Size (dependent on memory type)": "1 TB", + "Memory Types": "DDR4-1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "16", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "80", + "PCI Express Revision": "3.0", + "PCIe x16 Gen 3": "2", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Riser Slot 1: Total # of Lanes": "16", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "24", + "Riser Slot 4: Total # of Lanes": "16", + "# of USB Ports": "4", + "USB Revision": "2.0", + "Total # of SATA Ports": "5", + "RAID Configuration": "Up to SW Raid 5 (LSI RSTE)", + "# of Serial Ports": "1", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "No", + "MM#": "935279", + "Ordering Code": "BBS2600TP", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "935279": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WF0R with no LAN-on-Board (4) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two 2nd Generation Intel® Xeon® Scalable Processors up to 205W TDP, 24 DIMMs and no Ethernet on board.", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "6", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "1", + "Integrated LAN": "1GbE (mgmt port)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986005", + "Ordering Code": "S2600WF0R", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986005": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WFQR w/Symmetric QAT (2) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two 2nd Generation Intel® Xeon® Scalable processors up to 205W TDP, 24 DIMMs, and Intel® Quick Assist Technology.", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "6", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "2", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "1", + "Integrated LAN": "1GbE (mgmt port)", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986006", + "Ordering Code": "S2600WFQR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986006": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Launched", + "Launch Date": "Q2'19", + "Expected Discontinuance": "2023", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "2nd Generation Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WFTR w/two 10Gb ports (4) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two 2nd Generation Intel® Xeon® Scalable processors up to 205W TDP, 24 DIMMs and two 10-Gb ethernet ports.", + "Max Memory Size (dependent on memory type)": "7.5 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666/2933 & Intel® Optane™ DC Persistent Memory Supported", + "Max # of Memory Channels": "6", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Intel® Optane™ Persistent Memory Supported": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "Max # of UPI Links": "2", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "3", + "Integrated LAN": "1GbE (mgmt port) + 2x 10GbE", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "No", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Includes Statement of Conformance and Platform Certificate": "Yes", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "986004", + "Ordering Code": "S2600WFTR", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "986004": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q4'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WFQ w/Symmetric QAT (2) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C628 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor Scalable family up to 205W 24 DIMMs", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "Registered/Load Reduced DDR4-2133/2400/2666 MHz", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "4", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "0", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 & Redfish", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WF0 with no LAN-on-Board (4) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor Scalable family up to 205W 24 DIMMs and no Ethernet on board", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "0", + "Integrated LAN": "No", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WFR", + "Code Name": "Products formerly Wolf Pass", + "Status": "Discontinued", + "Launch Date": "Q3'17", + "Expected Discontinuance": "Q3'19", + "EOL Announce": "Monday, April 22, 2019", + "Last Order": "Thursday, August 22, 2019", + "Last Receipt Attributes": "Sunday, December 22, 2019", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "Compatible Product Series": "Intel® Xeon® Scalable Processors", + "Supported Operating Systems": "VMware*, Windows Server 2019*, Windows Server 2016*, Red Hat Enterprise Linux 7.6*, Red Hat Enterprise Linux 7.5*, SUSE Linux Enterprise Server 15*, SUSE Linux Enterprise Server 12 SP4*, Ubuntu*", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket P", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "205 W", + "Included Items": "(1) Intel® Server Board S2600WFT w/two 10Gb ports (4) on board PCIe* NVMe OCuLink Connectors", + "Board Chipset": "Intel® C624 Chipset", + "Target Market": "Mainstream", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor Scalable family up to 205W 24 DIMMs and two 10-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1.46 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 2133/2400/2666", + "Max # of Memory Channels": "12", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "No", + "Graphics Output": "VGA", + "Max # of PCI Express Lanes": "96", + "PCI Express Revision": "3.0", + "PCIe x8 Gen 3": "6", + "PCIe x16 Gen 3": "3", + "PCIe OCuLink Connectors (NVMe support)": "4", + "Connector for Intel® Integrated RAID Module": "1", + "Riser Slot 1: Total # of Lanes": "24", + "Riser Slot 2: Total # of Lanes": "24", + "Riser Slot 3: Total # of Lanes": "12", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "12", + "RAID Configuration": "SW RAID 0/1/10 (5 optional)", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "Dual Port RJ45 10 GbE", + "Max CPU Configuration": "2", + "Intel® Optane™ Memory Supported ‡": "Yes", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Includes Statement of Conformance and Platform Certificate": "No", + "TPM Version": "2.0 (optional)", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Discontinued", + "Launch Date": "Q2'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "No", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600WTTR w/two 10Gb ports via Intel® Ethernet Controller X-540, TPM 1.2 module installed", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "rack optimized server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family supports up to 145W and 24 DIMMs. Two on-board 10-Gb ethernet ports and TPM 1.2 Module installed.", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 ECC RDIMM, LRDIMM 1600, 1866, 2133, 2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "PCIe x16 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0 1 10 optional 5", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600WT2R w/two 1Gb ports (Intel® Ethernet Controller I350)", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W 24 DIMMs and two 1-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0 1 10 optional 5", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2/2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Discontinued", + "Launch Date": "Q1'16", + "Expected Discontinuance": "Q3'20", + "EOL Announce": "Friday, July 19, 2019", + "Last Order": "Sunday, July 5, 2020", + "Last Receipt Attributes": "Monday, October 5, 2020", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® Processor E5-2600 v4 Family", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "(1) Intel® Server Board S2600WTTR w/two 10Gb ports (Intel® Ethernet Controller X-540) and TPM module", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor E5-2600 V3/V4 family up to 145W 24 DIMMs and two 10-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 ECC RDIMM/LRDIMM 1600/1866/2133/2400", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "153.6 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0 1 10 optional 5", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2/2.0", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes" + }, + { + "Product Collection": "Intel® Server Board S2600WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Box includes (1) Intel® Server Board S2600WT2. Note: the OEM 10 Pack includes (10) Intel® Server Board S2600WT2.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 24 DIMMs, and two 1-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "2x 1-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "934880", + "Ordering Code": "S2600WT2", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "934880": "PCN\n |\n MDDS" + }, + { + "Product Collection": "Intel® Server Board S2600WT Family", + "Code Name": "Products formerly Wildcat Pass", + "Status": "Discontinued", + "Launch Date": "Q4'14", + "Expected Discontinuance": "Q1'16", + "EOL Announce": "Friday, November 13, 2015", + "Last Order": "Friday, January 29, 2016", + "Last Receipt Attributes": "Friday, February 26, 2016", + "Limited 3-year Warranty": "Yes", + "Extended Warranty Available for Purchase (Select Countries)": "Yes", + "Additional Extended Warranty Details": "Dual Processor Board Extended Warranty", + "# of QPI Links": "2", + "Compatible Product Series": "Intel® Xeon® processor E5-2600 v3 product family", + "Board Form Factor": "Custom 16.7\" x 17\"", + "Chassis Form Factor": "Rack", + "Socket": "Socket R3", + "Integrated Systems Available": "Yes", + "Integrated BMC with IPMI": "IPMI 2.0 with OEM extensions", + "Rack-Friendly Board": "Yes", + "TDP": "145 W", + "Included Items": "Box includes (1) Intel® Server Board S2600WTT. The OEM 10 pack includes (10) Intel® Server Board S2600WTT.", + "Board Chipset": "Intel® C612 Chipset", + "Target Market": "Cloud/Datacenter", + "Embedded Options Available": "No", + "Datasheet": "View now", + "Description": "A rack optimized server board supporting two Intel® Xeon® processor E5-2600 V3 family up to 145W, 24 DIMMs, and two 10-Gb ethernet ports", + "Max Memory Size (dependent on memory type)": "1.5 TB", + "Memory Types": "DDR4 ECC RDIMM 1600/1866/2133, DDR4 ECC LRDIMM 1600/1866/2133", + "Max # of Memory Channels": "8", + "Max Memory Bandwidth": "115 GB/s", + "Physical Address Extensions": "46-bit", + "Max # of DIMMs": "24", + "ECC Memory Supported ‡": "Yes", + "Integrated Graphics ‡": "Yes", + "Graphics Output": "VGA", + "Discrete Graphics": "Supported", + "Max # of PCI Express Lanes": "84", + "PCI Express Revision": "3.0", + "PCIe x4 Gen 3": "1", + "PCIe x8 Gen 3": "1", + "Connector for Intel® I/O Expansion Module x8 Gen 3": "1", + "Connector for Intel® Integrated RAID Module": "1", + "# of USB Ports": "8", + "USB Revision": "2.0 & 3.0", + "Total # of SATA Ports": "10", + "RAID Configuration": "SW RAID 0, 1, 10, optional 5", + "# of Serial Ports": "2", + "# of LAN Ports": "2", + "Integrated LAN": "2x 10-GbE", + "Firewire": "No", + "Embedded USB (eUSB) Solid State Drive Option": "Yes", + "Integrated SAS Ports": "0", + "Integrated InfiniBand*": "No", + "Max CPU Configuration": "2", + "Intel® Virtualization Technology for Directed I/O (VT-d) ‡": "Yes", + "Intel® Remote Management Module Support": "Yes", + "Intel® Node Manager": "Yes", + "Intel® Quick Resume Technology": "No", + "Intel® Quiet System Technology": "No", + "Intel® HD Audio Technology": "No", + "Intel® Matrix Storage Technology": "No", + "Intel® Rapid Storage Technology": "No", + "Intel® Rapid Storage Technology enterprise": "Yes", + "Intel® Fast Memory Access": "Yes", + "Intel® Flex Memory Access": "Yes", + "Intel® I/O Acceleration Technology": "Yes", + "Intel® Advanced Management Technology": "Yes", + "Intel® Server Customization Technology": "Yes", + "Intel® Build Assurance Technology": "Yes", + "Intel® Efficient Power Technology": "Yes", + "Intel® Quiet Thermal Technology": "Yes", + "TPM Version": "1.2", + "Intel® AES New Instructions": "Yes", + "Intel® Trusted Execution Technology ‡": "Yes", + "MM#": "934882", + "Ordering Code": "S2600WTT", + "ECCN": "5A992C", + "CCATS": "G157815L2", + "US HTS": "8473301180", + "934882": "PCN\n |\n MDDS" + } +] \ No newline at end of file diff --git a/src/platforms/intel/intel_processors_itanium.jl b/src/features/qualifiers/intel/intel_processors_itanium.jl similarity index 100% rename from src/platforms/intel/intel_processors_itanium.jl rename to src/features/qualifiers/intel/intel_processors_itanium.jl diff --git a/src/platforms/intel/intel_processors_pentium.jl b/src/features/qualifiers/intel/intel_processors_pentium.jl similarity index 100% rename from src/platforms/intel/intel_processors_pentium.jl rename to src/features/qualifiers/intel/intel_processors_pentium.jl diff --git a/src/platforms/intel/intel_processors_xeon.jl b/src/features/qualifiers/intel/intel_processors_xeon.jl similarity index 100% rename from src/platforms/intel/intel_processors_xeon.jl rename to src/features/qualifiers/intel/intel_processors_xeon.jl diff --git a/src/platforms/nvidia/db-accelerators.NVIDIA.csv b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy 2.csv similarity index 99% rename from src/platforms/nvidia/db-accelerators.NVIDIA.csv rename to src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy 2.csv index d169a1b..8e3f7b8 100644 --- a/src/platforms/nvidia/db-accelerators.NVIDIA.csv +++ b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy 2.csv @@ -1,4 +1,4 @@ -,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memorysize,accelerator_tdp,#chips,chip,memory_type +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memory_size,accelerator_tdp,#chips,chip,memory_type NVIDIA;Tesla;V100;SXM3,32GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 NVIDIA;Tesla;V100;SXM2,32GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 NVIDIA;Tesla;V100;SXM2,16GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,250,1,GV100,HBM2 @@ -139,6 +139,9 @@ NVIDIA;GRID,M3-3020,NVIDIAGrid_M3_3020,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,unknown,1, NVIDIA;GRID,M10-8Q,NVIDIAGrid_M10_8Q,GPU,NVIDIA,CUDA_5_0,Maxwell,8G,225,1,GM107,GDDR5 NVIDIA;GRID,A100B,NVIDIAGrid_A100B,GPU,NVIDIA,CUDA_8_0,Ampere,48G,400,1,GA100,HBM2e NVIDIA;GRID,A100A,NVIDIAGrid_A100A,GPU,NVIDIA,CUDA_8_0,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GeForce;RTX,4090,NVIDIAGeForce_RTX_4090,GPU,NVIDIA,CUDA 9.0,Lovelace,24G,450,1,AD102,GDDR6X +NVIDIA;GeForce;RTX,4080,NVIDIAGeForce_RTX_4080,GPU,NVIDIA,CUDA 9.0,Lovelace,16G,420,1,AD103,GDDR6X +NVIDIA;GeForce;RTX,4070,NVIDIAGeForce_RTX_4070,GPU,NVIDIA,CUDA 9.0,Lovelace,12G,285,1,AD104,GDDR6X NVIDIA;GeForce;RTX;4060,Ti,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA 9.0,Lovelace,10G,300,1,AD104,GDDR6 NVIDIA;GeForce;RTX;4060,,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA 9.0,Lovelace,8G,200,1,AD104,GDDR6 NVIDIA;GeForce;RTX;3090,Ti,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6,Ampere,24G,450,1,GA102,GDDR6X @@ -194,9 +197,6 @@ NVIDIA;GeForce;RTX;2060,TU104,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing, NVIDIA;GeForce;RTX;2060,SUPER,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,8G,175,1,TU106,GDDR6 NVIDIA;GeForce;RTX;2060,12GB,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,12G,184,1,TU106,GDDR6 NVIDIA;GeForce;RTX;2050,Mobile,NVIDIAGeForce_RTX_2050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,45,1,GA107,GDDR6 -NVIDIA;GeForce;RTX,4090,NVIDIAGeForce_RTX_4090,GPU,NVIDIA,CUDA 9.0,Lovelace,24G,450,1,AD102,GDDR6X -NVIDIA;GeForce;RTX,4080,NVIDIAGeForce_RTX_4080,GPU,NVIDIA,CUDA 9.0,Lovelace,16G,420,1,AD103,GDDR6X -NVIDIA;GeForce;RTX,4070,NVIDIAGeForce_RTX_4070,GPU,NVIDIA,CUDA 9.0,Lovelace,12G,285,1,AD104,GDDR6X NVIDIA;GeForce;MX570,GA107S,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6,Ampere,4G,25,1,GA107S,GDDR6 NVIDIA;GeForce;MX570,GA107,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6,Ampere,2G,25,1,GA107,GDDR6 NVIDIA;GeForce;MX250,GP108B,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1,Pascal,2G,10,1,GP108B,GDDR5 @@ -286,7 +286,7 @@ NVIDIA;GeForce,MX230,NVIDIAGeForce_MX230,GPU,NVIDIA,CUDA_6_1,Pascal,2G,10,1,GP10 NVIDIA;GeForce,MX130,NVIDIAGeForce_MX130,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,GDDR5 NVIDIA;GeForce,MX110,NVIDIAGeForce_MX110,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,GDDR5 NVIDIA;GeForce,945A,NVIDIAGeForce_945A,GPU,NVIDIA,CUDA_5_0,Maxwell,1024M,33,1,GM108,GDDR5 -NVIDIA;GeForce;940MX,GM108M,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,23,1,GM108M,DDR3 +NVIDIA;GeForce;940MX,GM108M,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;unset;unset;unset,Maxwell,4G,23,1,GM108M,DDR3 NVIDIA;GeForce;940MX,GM107,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,23,1,GM107,DDR3 NVIDIA;GeForce;940M,GM107,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,DDR3 NVIDIA;GeForce;940M,GM108,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,33,1,GM108,DDR3 diff --git a/src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy.csv b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy.csv new file mode 100644 index 0000000..93d3a0e --- /dev/null +++ b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA copy.csv @@ -0,0 +1,71 @@ +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memory_size,accelerator_tdp,#chips,chip +NVIDIA;Quadro;2200,D2,NVIDIAQuadro_2200_D2,GPU,NVIDIA,CUDA_1_3,Tesla,8G,640,2,GT200GL +NVIDIA;Quadro;2200,S4,NVIDIAQuadro_2200_S4,GPU,NVIDIA,CUDA_1_3,Tesla,16G,1200,4,GT200GL +NVIDIA;Tesla,C870,NVIDIATesla_C870,GPU,NVIDIA,CUDA_1_0,Tesla,1.5G,171,1,G80 +NVIDIA;Tesla,D870,NVIDIATesla_D870,GPU,NVIDIA,CUDA_1_0,Tesla,3G,520,2,G80 +NVIDIA;Tesla,S870,NVIDIATesla_S870,GPU,NVIDIA,CUDA_1_0,Tesla,6G,800,4,G80 +NVIDIA;Tesla,S1070,NVIDIATesla_S1070,GPU,NVIDIA,CUDA_1_3,Tesla,16G,800,4,GT200 +NVIDIA;Tesla,S1070,NVIDIATesla_S1070,GPU,NVIDIA,CUDA_1_3,Tesla,32G,800,4,GT200 +NVIDIA;Tesla,S1075,NVIDIATesla_S1075,GPU,NVIDIA,CUDA_1_3,Tesla,16G,800,4,GT200 +NVIDIA;Tesla,C1060,NVIDIATesla_C1060,GPU,NVIDIA,CUDA_1_3,Tesla,4G,188,1,GT200 +NVIDIA;Tesla,C2050,NVIDIATesla_C2050,GPU,NVIDIA,CUDA_2_0,Fermi,3G,247,1,GF100 +NVIDIA;Tesla,M2050,NVIDIATesla_M2050,GPU,NVIDIA,CUDA_2_0,Fermi,6G,225,1,GF100 +NVIDIA;Tesla,C2070,NVIDIATesla_C2070,GPU,NVIDIA,CUDA_2_0,Fermi,6G,247,1,GF100 +NVIDIA;Tesla,C2075,NVIDIATesla_C2075,GPU,NVIDIA,CUDA_2_0,Fermi,3G,225,1,GF100 +NVIDIA;Tesla,M2070,NVIDIATesla_M2070,GPU,NVIDIA,CUDA_2_0,Fermi,6G,225,1,GF100 +NVIDIA;Tesla,M2070Q,NVIDIATesla_M2070Q,GPU,NVIDIA,CUDA_2_0,Fermi,6G,225,1,GF100 +NVIDIA;Tesla,M2090,NVIDIATesla_M2090,GPU,NVIDIA,CUDA_2_0,Fermi,6G,225,1,GF100 +NVIDIA;Tesla,S2050,NVIDIATesla_S2050,GPU,NVIDIA,CUDA_2_0,Fermi,12G,900,4,GF100 +NVIDIA;Tesla,S2070,NVIDIATesla_S2070,GPU,NVIDIA,CUDA_2_0,Fermi,16G,900,4,GF100 +NVIDIA;Tesla,K10,NVIDIATesla_K10,GPU,NVIDIA,CUDA_3_0,Kepler,8G,225,2,GK104 +NVIDIA;Tesla,K20,NVIDIATesla_K20,GPU,NVIDIA,CUDA_3_5,Kepler,5G,225,1,GK110 +NVIDIA;Tesla,K20X,NVIDIATesla_K20X,GPU,NVIDIA,CUDA_3_5,Kepler,6G,235,1,GK110 +NVIDIA;Tesla,K40,NVIDIATesla_K40,GPU,NVIDIA,CUDA_3_5,Kepler,12G,235,1,GK110B +NVIDIA;Tesla,K80,NVIDIATesla_K80,GPU,NVIDIA,CUDA_3_7,Kepler,24G,300,2,GK210 +NVIDIA;Tesla,M6,NVIDIATesla_M6,GPU,NVIDIA,CUDA_5_2,Maxwell,8G,100,1,GM204_995_A1 +NVIDIA;Tesla,M60,NVIDIATesla_M60,GPU,NVIDIA,CUDA_5_2,Maxwell,16G,300,1,GM204_895_A1 +NVIDIA;Tesla,M4,NVIDIATesla_M4,GPU,NVIDIA,CUDA_5_2,Maxwell,4G,50,1,GM206 +NVIDIA;Tesla,M40,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2,Maxwell,12_24G,250,1,GM200 +NVIDIA;Tesla,M10,NVIDIATesla_M10,GPU,NVIDIA,CUDA_5_2,Maxwell,24G,225,4,GM107 +NVIDIA;Tesla,P100,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,300,1,GP100_890_A1 +NVIDIA;Tesla,P100,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,12G,250,1,GP100 +NVIDIA;Tesla,P100,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,250,1,GP100 +NVIDIA;Tesla,P4,NVIDIATesla_P4,GPU,NVIDIA,CUDA_6_1,Pascal,8G,75,1,GP104 +NVIDIA;Tesla,P40,NVIDIATesla_P40,GPU,NVIDIA,CUDA_6_1,Pascal,24G,250,1,GP102 +NVIDIA;Tesla,P6,NVIDIATesla_P6,GPU,NVIDIA,CUDA_6_1,Pascal,16G,90,1,GP104_995_A1 +NVIDIA;Tesla,V100,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16_32G,300,1,GV100_895_A1 +NVIDIA;Tesla,V100,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16_32G,250,1,GV100 +NVIDIA;Tesla,V100,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,250,1,GV100 +NVIDIA;Tesla,T4,NVIDIATesla_T4,GPU,NVIDIA,CUDA_7_5,Turing,16G,70,1,TU104_895_A1 +NVIDIA;Tesla,A100,NVIDIATesla_A100,GPU,NVIDIA,CUDA_8_0,Ampere,80G,250,1,GA100_883AA_A1 +NVIDIA;Tesla,A40,NVIDIATesla_A40,GPU,NVIDIA,CUDA_8_6,Ampere,48G,300,1,GA102 +NVIDIA;Tesla,A10,NVIDIATesla_A10,GPU,NVIDIA,CUDA_8_6,Ampere,24G,150,1,GA102_890_A1 +NVIDIA;Tesla,A16,NVIDIATesla_A16,GPU,NVIDIA,CUDA_8_6,Ampere,64G,250,1,GA107 +NVIDIA;Tesla,A30,NVIDIATesla_A30,GPU,NVIDIA,CUDA_8_0,Ampere,24G,165,1,GA100 +NVIDIA;Tesla,A2,NVIDIATesla_A2,GPU,NVIDIA,CUDA_8_6,Ampere,24G,60,1,GA107 +NVIDIA;Tesla,H100,NVIDIATesla_H100,GPU,NVIDIA,CUDA_9_0,Hopper,80G,350,1,GH100 +NVIDIA;Tesla,H100,NVIDIATesla_H100,GPU,NVIDIA,CUDA_8_0,Hopper,80G,700,1,GH100 +NVIDIA;GeForce,940MX,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,23,1,GM108M +NVIDIA;GeForce;RTX;3090,,NVIDIAGeForce_RTX3090,GPU,NVIDIA,CUDA_8_6,Ampere,24G,23,unset,uset +NVIDIA;GeForce;RTX;3090,Ti,NVIDIAGeForce_RTX3090Ti,GPU,NVIDIA,CUDA_8_6,Ampere,24G,23,unset,unset +NVIDIA;GeForce;RTX;3080,,NVIDIAGeForce_RTX3080,GPU,NVIDIA,CUDA_8_6,Ampere,12G,23,unset,unset +NVIDIA;GeForce;RTX;3080,Ti,NVIDIAGeForce_RTX3080Ti,GPU,NVIDIA,CUDA_8_6,Ampere,12G,23,unset,unset +NVIDIA;GeForce;RTX;3070,,NVIDIAGeForce_RTX3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,23,unset,unset +NVIDIA;GeForce;RTX;3070,Ti,NVIDIAGeForce_RTX3070Ti,GPU,NVIDIA,CUDA_8_6,Ampere,8G,23,unset,unset +NVIDIA;GeForce;RTX;3060,,NVIDIAGeForce_RTX3060,GPU,NVIDIA,CUDA_8_6,Ampere,12G,23,unset,unset +NVIDIA;GeForce;RTX;3060,Ti,NVIDIAGeForce_RTX3060Ti,GPU,NVIDIA,CUDA_8_6,Ampere,8G,23,unset,unset +NVIDIA;GeForce;RTX;3050,,NVIDIAGeForce_RTX3050,GPU,NVIDIA,CUDA_8_6,Ampere,8G,23,unset,unset +NVIDIA;GeForce;RTX;2080,,NVIDIAGeForce_RTX2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2080,Ti,NVIDIAGeForce_RTX2080Ti,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2080,Super,NVIDIAGeForce_RTX2080Super,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2070,,NVIDIAGeForce_RTX2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2070,Super,NVIDIAGeForce_RTX2070Super,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2060,,NVIDIAGeForce_RTX2060,GPU,NVIDIA,CUDA_7_5,Turing,8G,23,unset,unset +NVIDIA;GeForce;RTX;2060,Super,NVIDIAGeForce_RTX2060Super,GPU,NVIDIA,CUDA_7_5,Turing,6G,23,unset,unset +NVIDIA;GeForce;RTX;1660,,NVIDIAGeForce_GTX1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,23,unset,unset +NVIDIA;GeForce;RTX;1660,Ti,NVIDIAGeForce_GTX1660Super,GPU,NVIDIA,CUDA_7_5,Turing,6G,23,unset,unset +NVIDIA;GeForce;RTX;1660,Super,NVIDIAGeForce_GTX1660Super,GPU,NVIDIA,CUDA_7_5,Turing,6G,23,unset,unset +NVIDIA;GeForce;RTX;1650,G5,NVIDIAGeForce_GTX1650_G5,GPU,NVIDIA,CUDA_7_5,Turing,4G,23,unset,unset +NVIDIA;GeForce;RTX;1650,G6,NVIDIAGeForce_GTX1650_G6,GPU,NVIDIA,CUDA_7_5,Turing,4G,23,unset,unset +NVIDIA;GeForce;RTX;1650,Ti,NVIDIAGeForce_GTX1650Ti,GPU,NVIDIA,CUDA_7_5,Turing,4G,23,unset,unset +NVIDIA;GeForce;RTX;1630,,NVIDIAGeForce_GTX1630,GPU,NVIDIA,CUDA_7_5,Turing,4G,23,unset,unset \ No newline at end of file diff --git a/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.2.csv b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.2.csv new file mode 100644 index 0000000..1a3d038 --- /dev/null +++ b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.2.csv @@ -0,0 +1,335 @@ +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memory_size,accelerator_tdp,#chips,chip,memory_type +NVIDIA;Tesla;V100;SXM3,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,16G,300,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100,FHHL,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;P100;PCIe,16 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100;PCIe,12 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,12G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100,SXM2,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;P100,DGXS,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;M40,24 GB,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Tesla;M40,,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Tesla,V100S,NVIDIATesla_V100S,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,T4,NVIDIATesla_T4,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,70,1,TU104,GDDR6 +NVIDIA;Tesla,PG503-216,NVIDIATesla_PG503_216,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,PG500-216,NVIDIATesla_PG500_216,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,P6,NVIDIATesla_P6,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,90,1,GP104,GDDR5 +NVIDIA;Tesla,P40,NVIDIATesla_P40,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,P4,NVIDIATesla_P4,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,75,1,GP104,GDDR5 +NVIDIA;Tesla,P10,NVIDIATesla_P10,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,M60,NVIDIATesla_M60,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,16G,300,2,GM204,GDDR5 +NVIDIA;Tesla,M6,NVIDIATesla_M6,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Tesla,M4,NVIDIATesla_M4,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,50,1,GM206,GDDR5 +NVIDIA;Tesla,M10,NVIDIATesla_M10,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,32G,225,4,GM107,GDDR5 +NVIDIA,Switch,NVIDIA_Switch,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (12_1),Maxwell2,4G,15,1,GM20B,DDR4 +NVIDIA;Quadro;T2000,Mobile,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,60,1,TU117,GDDR5 +NVIDIA;Quadro;T2000,Max-Q,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,40,1,TU117,GDDR5 +NVIDIA;Quadro;T1000;Mobile,TU117B,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117B,GDDR6 +NVIDIA;Quadro;T1000;Mobile,TU117,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;T1000,Max-Q,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;RTX;8000,Passive,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;8000,,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Passive,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Mobile,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,24G,unknown,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;5000,Refresh,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,110,1,TU104B,GDDR6 +NVIDIA;Quadro;RTX;5000,Mobile,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,Max-Q,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,230,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Mobile,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Max-Q,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,160,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,Refresh,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000,Max-Q,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,60,1,TU106,GDDR6 +NVIDIA;Quadro;P620,Mobile,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P620,,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P600,Mobile,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,25,1,GP107,GDDR5 +NVIDIA;Quadro;P600,,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P5200,Mobile,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5200,Max-Q,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,Mobile,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,180,1,GP104,GDDR5X +NVIDIA;Quadro;P4000,Mobile,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,Max-Q,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,105,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Mobile,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Max-Q,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P2200,,NVIDIAQuadro_P2200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,5G,75,1,GP106,GDDR5X +NVIDIA;Quadro;P2000,Mobile,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,50,1,GP107,GDDR5 +NVIDIA;Quadro;P2000,,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,5G,75,1,GP106,GDDR5 +NVIDIA;Quadro;P1000,Mobile,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P1000,,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,47,1,GP107,GDDR5 +NVIDIA;Quadro;M6000,24 GB,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Quadro;M6000,,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Quadro,T1200,NVIDIAQuadro_T1200,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,18,1,TU117,GDDR6 +NVIDIA;Quadro,P6000,NVIDIAQuadro_P6000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Quadro,P520,NVIDIAQuadro_P520,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P500,NVIDIAQuadro_P500,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P4200,NVIDIAQuadro_P4200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro,P400,NVIDIAQuadro_P400,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,30,1,GP107,GDDR5 +NVIDIA;Quadro,P3000,NVIDIAQuadro_P3000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro,M620,NVIDIAQuadro_M620,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M600M,NVIDIAQuadro_M600M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M5500,NVIDIAQuadro_M5500,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M520,NVIDIAQuadro_M520,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,25,1,GM108,GDDR5 +NVIDIA;Quadro,M500M,NVIDIAQuadro_M500M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,M5000M,NVIDIAQuadro_M5000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M5000,NVIDIAQuadro_M5000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M4000M,NVIDIAQuadro_M4000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M4000,NVIDIAQuadro_M4000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,120,1,GM204,GDDR5 +NVIDIA;Quadro,M3000M,NVIDIAQuadro_M3000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M3000,NVIDIAQuadro_M3000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M2200,NVIDIAQuadro_M2200,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,55,1,GM206,GDDR5 +NVIDIA;Quadro,M2000M,NVIDIAQuadro_M2000M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,55,1,GM107,GDDR5 +NVIDIA;Quadro,M2000,NVIDIAQuadro_M2000,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell2,4G,75,1,GM206,GDDR5 +NVIDIA;Quadro,M1200,NVIDIAQuadro_M1200,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,M1000M,NVIDIAQuadro_M1000M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,40,1,GM107,GDDR5 +NVIDIA;Quadro,K620M,NVIDIAQuadro_K620M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,K1200,NVIDIAQuadro_K1200,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,GV100,NVIDIAQuadro_GV100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,32G,250,1,GV100,HBM2 +NVIDIA;Quadro,GP100,NVIDIAQuadro_GP100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,16G,235,1,GP100,HBM2 +NVIDIA;NVS,810,NVIDIA_NVS_810,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,68,2,GM107,DDR3 +NVIDIA;Jetson;Xavier,NX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12 (12_1),Volta,na,15,1,GV10B,na +NVIDIA;Jetson;Xavier,AGX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12 (12_1),Volta,na,30,1,GV10B,na +NVIDIA;Jetson,TX2,NVIDIA_Jetson_TX2,GPU,NVIDIA,CUDA_6_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12 (12_1),Pascal,na,15,1,GP10B,na +NVIDIA;Jetson,TX1,NVIDIA_Jetson_TX1,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (12_1),Maxwell2,na,15,1,GM20B,na +NVIDIA;Jetson,Nano,NVIDIA_Jetson_Nano,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (12_1),Maxwell2,na,10,1,GM20B,na +NVIDIA;H100,SXM5,NVIDIA_H100,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Hopper,80G,700,1,GH100,HBM3 +NVIDIA;H100,PCIe,NVIDIA_H100,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Hopper,80G,350,1,GH100,HBM2e +NVIDIA;GRID;RTX,T10-8,NVIDIAGrid_RTX_T10_8,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-4,NVIDIAGrid_RTX_T10_4,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,4G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-2,NVIDIAGrid_RTX_T10_2,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,2G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-16,NVIDIAGrid_RTX_T10_16,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,16G,260,1,TU102,GDDR6 +NVIDIA;GRID,M60-8Q,NVIDIAGrid_M60_8Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-4A,NVIDIAGrid_M60_4A,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-2Q,NVIDIAGrid_M60_2Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,2G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-1Q,NVIDIAGrid_M60_1Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,1024M,225,1,GM204,GDDR5 +NVIDIA;GRID,M6-8Q,NVIDIAGrid_M6_8Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;GRID,M40,NVIDIAGrid_M40,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,8G,50,1,GM107,GDDR5 +NVIDIA;GRID,M3-3020,NVIDIAGrid_M3_3020,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,unknown,1,GM107,GDDR5 +NVIDIA;GRID,M10-8Q,NVIDIAGrid_M10_8Q,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,8G,225,1,GM107,GDDR5 +NVIDIA;GRID,A100B,NVIDIAGrid_A100B,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GRID,A100A,NVIDIAGrid_A100A,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GeForce;RTX,4090,NVIDIAGeForce_RTX_4090,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Lovelace,24G,450,1,AD102,GDDR6X +NVIDIA;GeForce;RTX,4080,NVIDIAGeForce_RTX_4080,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Lovelace,16G,420,1,AD103,GDDR6X +NVIDIA;GeForce;RTX,4070,NVIDIAGeForce_RTX_4070,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Lovelace,12G,285,1,AD104,GDDR6X +NVIDIA;GeForce;RTX;4060,Ti,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Lovelace,10G,300,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;4060,,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Lovelace,8G,200,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;3090,Ti,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,24G,450,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3090,,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,24G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,115,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,80,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,20 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,20G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,12 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,16 GB,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,220,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,200,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA103,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,200,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3060,Mobile,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,6G,80,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,Max-Q,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,6G,60,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA106,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,170,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,170,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,75,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,Mobile,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,90,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,115,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,130,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,250,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Ti,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,11G,250,1,TU102,GDDR6 +NVIDIA;GeForce;RTX;2080,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Mobile,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,115,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Max-Q,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,90,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,65,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,65,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU106,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,160,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU104,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,6G,160,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2060,SUPER,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,12 GB,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,12G,184,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2050,Mobile,NVIDIAGeForce_RTX_2050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,45,1,GA107,GDDR6 +NVIDIA;GeForce;MX570,GA107S,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,25,1,GA107S,GDDR6 +NVIDIA;GeForce;MX570,GA107,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,2G,25,1,GA107,GDDR6 +NVIDIA;GeForce;MX250,GP108B,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,10,1,GP108B,GDDR5 +NVIDIA;GeForce;MX250,GP108,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP108,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP107,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,25,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;TITAN,X,NVIDIAGeForce_GTX_TITAN_X,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Ti,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,6G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Mobile,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,4 GB,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,2G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M,GM206,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,2G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,OEM,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,2G,120,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960,GM204,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,3G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;950M,Mac,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950M,,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950,OEM,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,Low,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,2G,75,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell2,2G,90,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;1660;Ti,Mobile,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,Max-Q,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,120,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,SUPER,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,125,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,120,1,TU116,GDDR5 +NVIDIA;GeForce;GTX;1650;Ti,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDI A,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,75,1,TU117,GDDR5 +NVIDIA;GeForce;GTX;1650,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,80,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,TU106,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,4G,90,1,TU106,GDDR6 +NVIDIA;GeForce;GTX;1650,SUPER,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,100,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,Mobile,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,30,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1080;Ti,10 GB,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,10G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080;Ti,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,11G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080,Mobile,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,Max-Q,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,11Gbps,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1070,Ti,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,180,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Mobile,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Max-Q,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,115,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,150,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;6 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,120,1,GP104,GDDR5/GDDR5X +NVIDIA;GeForce;GTX;1060;6 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,3G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,3G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,Mobile,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,80,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,8 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,8G,120,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1060,5 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,5G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP107,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP106,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,75,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,Ti,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX,980MX,NVIDIAGeForce_GTX_980MX,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Maxwell2,8G,148,1,GM204,GDDR5 +NVIDIA;GeForce;GTX,960M,NVIDIAGeForce_GTX_960M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,4G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,960A,NVIDIAGeForce_GTX_960A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,950A,NVIDIAGeForce_GTX_950A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX,860M,NVIDIAGeForce_GTX_860M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,1630,NVIDIAGeForce_GTX_1630,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,75,1,TU117,GDDR6 +NVIDIA;GeForce;GTX,760,NVIDIAGeForce_GTX_760,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,2G,170,1,GK104,GDDR5 +NVIDIA;GeForce;GTX,750,NVIDIAGeForce_GTX_750,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Maxwell2,2G,60,1,GM206,GDDR5 +NVIDIA;GeForce;GT;710,OEM,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler2,1024M,unknown,1,GK208B,DDR3 +NVIDIA;GeForce;GT;710,,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Fermi2,1024M,29,1,GF119,DDR3 +NVIDIA;GeForce;GT;1030,GK107,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,2G,65,1,GK107,GDDR5 +NVIDIA;GeForce;GT;1030,GP108,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,1010,NVIDIAGeForce_GT_1010,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,740,NVIDIAGeForce_GT_740,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,1024M,65,1,GK106,GDDR5 +NVIDIA;GeForce;GT,730,NVIDIAGeForce_GT_730,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,1024M,64,1,GK107,GDDR5 +NVIDIA;GeForce;GT,720,NVIDIAGeForce_GT_720,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;Vulkan_N/A;DirectX_12 (11_0),Kepler,1024M,50,1,GK107,DDR3 +NVIDIA;GeForce;GT,610,NVIDIAGeForce_GT_610,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;Vulkan_N/A;DirectX_12 (11_0),Fermi,2G,29,1,GF108,DDR3 +NVIDIA;GeForce;945M,GM108,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,1024M,23,1,GM108,DDR3 +NVIDIA;GeForce;945M,GM107,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;845M,GM108,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,33,1,GM108,GDDR5 +NVIDIA;GeForce;845M,GM107,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,45,1,GM107,DDR3 +NVIDIA;GeForce,MX550,NVIDIAGeForce_MX550,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX450,NVIDIAGeForce_MX450,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX350,NVIDIAGeForce_MX350,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,20,1,GP107,GDDR5 +NVIDIA;GeForce,MX330,NVIDIAGeForce_MX330,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX230,NVIDIAGeForce_MX230,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX130,NVIDIAGeForce_MX130,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,MX110,NVIDIAGeForce_MX110,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,945A,NVIDIAGeForce_945A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,1024M,33,1,GM108,GDDR5 +NVIDIA;GeForce;940MX,GM108M,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;unset;unset;unset,Maxwell,4G,23,1,GM108M,DDR3 +NVIDIA;GeForce;940MX,GM107,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,23,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM107,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM108,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,940A,NVIDIAGeForce_940A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,1024M,33,1,GM108,DDR3 +NVIDIA;GeForce,930MX,NVIDIAGeForce_930MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,17,1,GM108,DDR3 +NVIDIA;GeForce,930M,NVIDIAGeForce_930M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,930A,NVIDIAGeForce_930A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,920MX,NVIDIAGeForce_920MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Maxwell,2G,16,1,GM108,DDR3 +NVIDIA;GeForce,920M,NVIDIAGeForce_920M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (11_0),Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,920A,NVIDIAGeForce_920A,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,910M,NVIDIAGeForce_910M,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,820M,NVIDIAGeForce_820M,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;Vulkan_N/A;DirectX_12 (11_0),Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,810M,NVIDIAGeForce_810M,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,710A,NVIDIAGeForce_710A,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12 (11_0),Kepler,2G,45,1,GK107,DDR3 +NVIDIA;CMP,90HX,NVIDIACmp_90HX,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;CMP,70HX,NVIDIACmp_70HX,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,8G,unknown,1,GA104,GDDR6X +NVIDIA;CMP,50HX,NVIDIACmp_50HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,10G,250,1,TU102,GDDR6 +NVIDIA;CMP,40HX,NVIDIACmp_40HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,8G,185,1,TU106,GDDR6 +NVIDIA;CMP,30HX,NVIDIACmp_30HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,6G,125,1,TU116,GDDR6 +NVIDIA;CMP,170HX,NVIDIACmp_170HX,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,16G,250,1,GA100,HBM2e +NVIDIA;TITAN,V,NVIDIATitan_V,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Volta,12G,250,1,GV100,HBM2 +NVIDIA;TITAN,Xp,NVIDIATitan_Xp,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,X,NVIDIATitan_X,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,RTX,NVIDIATitan_RTX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Turing,24G,280,1,TU102,GDDR6 +NVIDIA,T600,NVIDIA_T600,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,40,1,TU117,GDDR6 +NVIDIA,T550,NVIDIA_T550,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,23,1,TU117,GDDR6 +NVIDIA,T500,NVIDIA_T500,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,2G,18,1,TU117,GDDR6 +NVIDIA,PG506-242,NVIDIA_PG506_242,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,PG506-232,NVIDIA_PG506_232,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,P106M,NVIDIA_P106M,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,75,1,GP106,GDDR5 +NVIDIA,P106-100,NVIDIA_P106_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,6G,120,1,GP106,GDDR5 +NVIDIA,P106-090,NVIDIA_P106_090,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,3G,75,1,GP106,GDDR5 +NVIDIA,P104-101,NVIDIA_P104_101,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,unknown,1,GP104,GDDR5 +NVIDIA,P104-100,NVIDIA_P104_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,4G,unknown,1,GP104,GDDR5X +NVIDIA,P102-101,NVIDIA_P102_101,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,10G,250,1,GP102,GDDR5 +NVIDIA,P102-100,NVIDIA_P102_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Pascal,5G,250,1,GP102,GDDR5X +NVIDIA,A40,NVIDIA_A40,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,48G,300,1,GA102,GDDR6 +NVIDIA,A30,NVIDIA_A30,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,A2,NVIDIA_A2,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,60,1,GA107,GDDR6 +NVIDIA,A16,NVIDIA_A16,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,64G,250,4,GA107,GDDR6 +NVIDIA,A10G,NVIDIA_A10G,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,150,1,GA102,GDDR6 +NVIDIA,A10,NVIDIA_A10,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,24G,150,1,GA102,GDDR6 +NVIDIA;A100;SXM4,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,80G,400,1,GA100,HBM2e +NVIDIA;A100;SXM4,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,40G,400,1,GA100,HBM2e +NVIDIA;A100;PCIe,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;OpenGL_N/A;Vulkan_N/A;DirectX_N/A,Ampere,80G,250,1,GA100,HBM2e +NVIDIA;A100;PCIe,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0,Ampere,40G,250,1,GA100,HBM2e +NVIDIA;RTX;A5500,Mobile,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,140,1,GA103S,GDDR6 +NVIDIA;RTX;A5500,,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A5000,Mobile,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A5000,,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A500,Embedded,NVIDIA_RTX_A500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,35,1,GA107S,GDDR6 +NVIDIA;RTX;A4500,Mobile,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,Embedded,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,20G,200,1,GA102,GDDR6 +NVIDIA;RTX;A4000,Mobile,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,140,1,GA104,GDDR6 +NVIDIA;RTX;A4000,,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,12 GB,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,130,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,6G,130,1,GA104,GDDR6 +NVIDIA;RTX;A2000,Mobile,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,95,1,GA106,GDDR6 +NVIDIA;RTX;A2000,Embedded,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,8G,60,1,GA107S,GDDR6 +NVIDIA;RTX;A2000,12 GB,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,12G,70,1,GA106,GDDR6 +NVIDIA;RTX;A2000,,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,6G,70,1,GA106,GDDR6 +NVIDIA;RTX;A1000,Mobile,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,60,1,GA107,GDDR6 +NVIDIA;RTX;A1000,Embedded,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,60,1,GA107S,GDDR6 +NVIDIA;RTX,A6000,NVIDIA_RTX_A6000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,48G,300,1,GA102,GDDR6 +NVIDIA;RTX,A4,NVIDIA_RTX_A4,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 Ultimate (12_2),Ampere,4G,unknown,1,GA107,GDDR6 +NVIDIA;T400,4 GB,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,30,1,TU117,GDDR6 +NVIDIA;T400,,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,2G,30,1,TU117,GDDR6 +NVIDIA;T1000,8 GB,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,8G,50,1,TU117,GDDR6 +NVIDIA;T1000,,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12 (12_1),Turing,4G,50,1,TU117,GDDR6 diff --git a/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.3.csv b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.3.csv new file mode 100644 index 0000000..2ee11dd --- /dev/null +++ b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.3.csv @@ -0,0 +1,335 @@ +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memorysize,accelerator_tdp,#chips,chip,memory_type +NVIDIA;Tesla;V100;SXM3,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,300,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100,FHHL,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;P100;PCIe,16 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100;PCIe,12 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,12G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100,SXM2,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;P100,DGXS,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;M40,24 GB,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2,Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Tesla;M40,,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Tesla,V100S,NVIDIATesla_V100S,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,T4,NVIDIATesla_T4,GPU,NVIDIA,CUDA_7_5,Turing,16G,70,1,TU104,GDDR6 +NVIDIA;Tesla,PG503-216,NVIDIATesla_PG503_216,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,PG500-216,NVIDIATesla_PG500_216,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,P6,NVIDIATesla_P6,GPU,NVIDIA,CUDA_6_1,Pascal,16G,90,1,GP104,GDDR5 +NVIDIA;Tesla,P40,NVIDIATesla_P40,GPU,NVIDIA,CUDA_6_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,P4,NVIDIATesla_P4,GPU,NVIDIA,CUDA_6_1,Pascal,8G,75,1,GP104,GDDR5 +NVIDIA;Tesla,P10,NVIDIATesla_P10,GPU,NVIDIA,CUDA_6_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,M60,NVIDIATesla_M60,GPU,NVIDIA,CUDA_5_2,Maxwell2,16G,300,2,GM204,GDDR5 +NVIDIA;Tesla,M6,NVIDIATesla_M6,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Tesla,M4,NVIDIATesla_M4,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,50,1,GM206,GDDR5 +NVIDIA;Tesla,M10,NVIDIATesla_M10,GPU,NVIDIA,CUDA_5_0,Maxwell,32G,225,4,GM107,GDDR5 +NVIDIA,Switch,NVIDIA_Switch,GPU,NVIDIA,CUDA_5_3,Maxwell2,4G,15,1,GM20B,DDR4 +NVIDIA;Quadro;T2000,Mobile,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5,Turing,4G,60,1,TU117,GDDR5 +NVIDIA;Quadro;T2000,Max-Q,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5,Turing,4G,40,1,TU117,GDDR5 +NVIDIA;Quadro;T1000;Mobile,TU117B,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117B,GDDR6 +NVIDIA;Quadro;T1000;Mobile,TU117,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;T1000,Max-Q,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;RTX;8000,Passive,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5,Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;8000,,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5,Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Passive,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5,Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Mobile,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5,Turing,24G,unknown,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5,Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;5000,Refresh,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5,Turing,16G,110,1,TU104B,GDDR6 +NVIDIA;Quadro;RTX;5000,Mobile,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5,Turing,16G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,Max-Q,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5,Turing,16G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5,Turing,16G,230,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Mobile,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5,Turing,8G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Max-Q,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5,Turing,8G,160,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,Refresh,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5,Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5,Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000,Max-Q,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5,Turing,6G,60,1,TU106,GDDR6 +NVIDIA;Quadro;P620,Mobile,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1,Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P620,,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1,Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P600,Mobile,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1,Pascal,4G,25,1,GP107,GDDR5 +NVIDIA;Quadro;P600,,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1,Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P5200,Mobile,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5200,Max-Q,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,Mobile,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1,Pascal,16G,180,1,GP104,GDDR5X +NVIDIA;Quadro;P4000,Mobile,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,Max-Q,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1,Pascal,8G,105,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Mobile,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Max-Q,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P2200,,NVIDIAQuadro_P2200,GPU,NVIDIA,CUDA_6_1,Pascal,5G,75,1,GP106,GDDR5X +NVIDIA;Quadro;P2000,Mobile,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1,Pascal,4G,50,1,GP107,GDDR5 +NVIDIA;Quadro;P2000,,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1,Pascal,5G,75,1,GP106,GDDR5 +NVIDIA;Quadro;P1000,Mobile,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1,Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P1000,,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1,Pascal,4G,47,1,GP107,GDDR5 +NVIDIA;Quadro;M6000,24 GB,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2,Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Quadro;M6000,,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Quadro,T1200,NVIDIAQuadro_T1200,GPU,NVIDIA,CUDA_7_5,Turing,4G,18,1,TU117,GDDR6 +NVIDIA;Quadro,P6000,NVIDIAQuadro_P6000,GPU,NVIDIA,CUDA_6_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Quadro,P520,NVIDIAQuadro_P520,GPU,NVIDIA,CUDA_6_1,Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P500,NVIDIAQuadro_P500,GPU,NVIDIA,CUDA_6_1,Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P4200,NVIDIAQuadro_P4200,GPU,NVIDIA,CUDA_6_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro,P400,NVIDIAQuadro_P400,GPU,NVIDIA,CUDA_6_1,Pascal,2G,30,1,GP107,GDDR5 +NVIDIA;Quadro,P3000,NVIDIAQuadro_P3000,GPU,NVIDIA,CUDA_6_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro,M620,NVIDIAQuadro_M620,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M600M,NVIDIAQuadro_M600M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M5500,NVIDIAQuadro_M5500,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M520,NVIDIAQuadro_M520,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,25,1,GM108,GDDR5 +NVIDIA;Quadro,M500M,NVIDIAQuadro_M500M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,M5000M,NVIDIAQuadro_M5000M,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M5000,NVIDIAQuadro_M5000,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M4000M,NVIDIAQuadro_M4000M,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M4000,NVIDIAQuadro_M4000,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,120,1,GM204,GDDR5 +NVIDIA;Quadro,M3000M,NVIDIAQuadro_M3000M,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M3000,NVIDIAQuadro_M3000,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M2200,NVIDIAQuadro_M2200,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,55,1,GM206,GDDR5 +NVIDIA;Quadro,M2000M,NVIDIAQuadro_M2000M,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,55,1,GM107,GDDR5 +NVIDIA;Quadro,M2000,NVIDIAQuadro_M2000,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,75,1,GM206,GDDR5 +NVIDIA;Quadro,M1200,NVIDIAQuadro_M1200,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,M1000M,NVIDIAQuadro_M1000M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,40,1,GM107,GDDR5 +NVIDIA;Quadro,K620M,NVIDIAQuadro_K620M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,K1200,NVIDIAQuadro_K1200,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,GV100,NVIDIAQuadro_GV100,GPU,NVIDIA,CUDA_7_0,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Quadro,GP100,NVIDIAQuadro_GP100,GPU,NVIDIA,CUDA_6_0,Pascal,16G,235,1,GP100,HBM2 +NVIDIA;NVS,810,NVIDIA_NVS_810,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,68,2,GM107,DDR3 +NVIDIA;Jetson;Xavier,NX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2,Volta,na,15,1,GV10B,na +NVIDIA;Jetson;Xavier,AGX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2,Volta,na,30,1,GV10B,na +NVIDIA;Jetson,TX2,NVIDIA_Jetson_TX2,GPU,NVIDIA,CUDA_6_2,Pascal,na,15,1,GP10B,na +NVIDIA;Jetson,TX1,NVIDIA_Jetson_TX1,GPU,NVIDIA,CUDA_5_3,Maxwell2,na,15,1,GM20B,na +NVIDIA;Jetson,Nano,NVIDIA_Jetson_Nano,GPU,NVIDIA,CUDA_5_3,Maxwell2,na,10,1,GM20B,na +NVIDIA;H100,SXM5,NVIDIA_H100,GPU,NVIDIA,CUDA 9.0,Hopper,80G,700,1,GH100,HBM3 +NVIDIA;H100,PCIe,NVIDIA_H100,GPU,NVIDIA,CUDA 9.0,Hopper,80G,350,1,GH100,HBM2e +NVIDIA;GRID;RTX,T10-8,NVIDIAGrid_RTX_T10_8,GPU,NVIDIA,CUDA_7_5,Turing,8G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-4,NVIDIAGrid_RTX_T10_4,GPU,NVIDIA,CUDA_7_5,Turing,4G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-2,NVIDIAGrid_RTX_T10_2,GPU,NVIDIA,CUDA_7_5,Turing,2G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-16,NVIDIAGrid_RTX_T10_16,GPU,NVIDIA,CUDA_7_5,Turing,16G,260,1,TU102,GDDR6 +NVIDIA;GRID,M60-8Q,NVIDIAGrid_M60_8Q,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-4A,NVIDIAGrid_M60_4A,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-2Q,NVIDIAGrid_M60_2Q,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-1Q,NVIDIAGrid_M60_1Q,GPU,NVIDIA,CUDA_5_2,Maxwell2,1024M,225,1,GM204,GDDR5 +NVIDIA;GRID,M6-8Q,NVIDIAGrid_M6_8Q,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;GRID,M40,NVIDIAGrid_M40,GPU,NVIDIA,CUDA_5_0,Maxwell,8G,50,1,GM107,GDDR5 +NVIDIA;GRID,M3-3020,NVIDIAGrid_M3_3020,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,unknown,1,GM107,GDDR5 +NVIDIA;GRID,M10-8Q,NVIDIAGrid_M10_8Q,GPU,NVIDIA,CUDA_5_0,Maxwell,8G,225,1,GM107,GDDR5 +NVIDIA;GRID,A100B,NVIDIAGrid_A100B,GPU,NVIDIA,CUDA_8_0,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GRID,A100A,NVIDIAGrid_A100A,GPU,NVIDIA,CUDA_8_0,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GeForce;RTX,4090,NVIDIAGeForce_RTX_4090,GPU,NVIDIA,CUDA 9.0,Lovelace,24G,450,1,AD102,GDDR6X +NVIDIA;GeForce;RTX,4080,NVIDIAGeForce_RTX_4080,GPU,NVIDIA,CUDA 9.0,Lovelace,16G,420,1,AD103,GDDR6X +NVIDIA;GeForce;RTX,4070,NVIDIAGeForce_RTX_4070,GPU,NVIDIA,CUDA 9.0,Lovelace,12G,285,1,AD104,GDDR6X +NVIDIA;GeForce;RTX;4060,Ti,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA 9.0,Lovelace,10G,300,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;4060,,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA 9.0,Lovelace,8G,200,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;3090,Ti,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6,Ampere,24G,450,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3090,,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6,Ampere,24G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,16G,115,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,16G,80,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,20 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,20G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,12 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6,Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,16 GB,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,16G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6,Ampere,8G,220,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,8G,200,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA103,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,8G,200,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3060,Mobile,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,6G,80,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,Max-Q,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,6G,60,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA106,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,12G,170,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6,Ampere,12G,170,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,75,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,Mobile,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,90,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,8G,115,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6,Ampere,8G,130,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,250,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Ti,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,11G,250,1,TU102,GDDR6 +NVIDIA;GeForce;RTX;2080,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5,Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Mobile,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,115,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Max-Q,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,90,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5,Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,65,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,65,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU106,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,160,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU104,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,6G,160,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2060,SUPER,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,12 GB,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5,Turing,12G,184,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2050,Mobile,NVIDIAGeForce_RTX_2050,GPU,NVIDIA,CUDA_8_6,Ampere,4G,45,1,GA107,GDDR6 +NVIDIA;GeForce;MX570,GA107S,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6,Ampere,4G,25,1,GA107S,GDDR6 +NVIDIA;GeForce;MX570,GA107,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6,Ampere,2G,25,1,GA107,GDDR6 +NVIDIA;GeForce;MX250,GP108B,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1,Pascal,2G,10,1,GP108B,GDDR5 +NVIDIA;GeForce;MX250,GP108,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1,Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP108,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1,Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP107,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1,Pascal,2G,25,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;TITAN,X,NVIDIAGeForce_GTX_TITAN_X,GPU,NVIDIA,CUDA_5_2,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Ti,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2,Maxwell2,6G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Mobile,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,4 GB,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M,GM206,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,OEM,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,120,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960,GM204,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2,Maxwell2,3G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;950M,Mac,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950M,,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950,OEM,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2,Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,Low,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,75,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,90,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;1660;Ti,Mobile,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,Max-Q,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,120,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,SUPER,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,125,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5,Turing,6G,120,1,TU116,GDDR5 +NVIDIA;GeForce;GTX;1650;Ti,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDI A,CUDA_7_5,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,75,1,TU117,GDDR5 +NVIDIA;GeForce;GTX;1650,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,80,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,TU106,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,90,1,TU106,GDDR6 +NVIDIA;GeForce;GTX;1650,SUPER,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,100,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,Mobile,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5,Turing,4G,30,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1080;Ti,10 GB,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,10G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080;Ti,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,11G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080,Mobile,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,Max-Q,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,11Gbps,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1,Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1070,Ti,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1,Pascal,8G,180,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Mobile,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1,Pascal,8G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Max-Q,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1,Pascal,8G,115,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1,Pascal,8G,150,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;6 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,6G,120,1,GP104,GDDR5/GDDR5X +NVIDIA;GeForce;GTX;1060;6 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,6G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,3G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,3G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,Mobile,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,6G,80,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,8 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,8G,120,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1060,5 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1,Pascal,5G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP107,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP106,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,2G,75,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,Ti,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1,Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX,980MX,NVIDIAGeForce_GTX_980MX,GPU,NVIDIA,CUDA_5_2,Maxwell2,8G,148,1,GM204,GDDR5 +NVIDIA;GeForce;GTX,960M,NVIDIAGeForce_GTX_960M,GPU,NVIDIA,CUDA_5_0,Maxwell,4G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,960A,NVIDIAGeForce_GTX_960A,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,950A,NVIDIAGeForce_GTX_950A,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX,860M,NVIDIAGeForce_GTX_860M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,1630,NVIDIAGeForce_GTX_1630,GPU,NVIDIA,CUDA_7_5,Turing,4G,75,1,TU117,GDDR6 +NVIDIA;GeForce;GTX,760,NVIDIAGeForce_GTX_760,GPU,NVIDIA,CUDA_3_0,Kepler,2G,170,1,GK104,GDDR5 +NVIDIA;GeForce;GTX,750,NVIDIAGeForce_GTX_750,GPU,NVIDIA,CUDA_5_2,Maxwell2,2G,60,1,GM206,GDDR5 +NVIDIA;GeForce;GT;710,OEM,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_3_5,Kepler2,1024M,unknown,1,GK208B,DDR3 +NVIDIA;GeForce;GT;710,,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_2_1,Fermi2,1024M,29,1,GF119,DDR3 +NVIDIA;GeForce;GT;1030,GK107,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_3_0,Kepler,2G,65,1,GK107,GDDR5 +NVIDIA;GeForce;GT;1030,GP108,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_6_1,Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,1010,NVIDIAGeForce_GT_1010,GPU,NVIDIA,CUDA_6_1,Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,740,NVIDIAGeForce_GT_740,GPU,NVIDIA,CUDA_3_0,Kepler,1024M,65,1,GK106,GDDR5 +NVIDIA;GeForce;GT,730,NVIDIAGeForce_GT_730,GPU,NVIDIA,CUDA_3_0,Kepler,1024M,64,1,GK107,GDDR5 +NVIDIA;GeForce;GT,720,NVIDIAGeForce_GT_720,GPU,NVIDIA,CUDA_3_0,Kepler,1024M,50,1,GK107,DDR3 +NVIDIA;GeForce;GT,610,NVIDIAGeForce_GT_610,GPU,NVIDIA,CUDA_2_1,Fermi,2G,29,1,GF108,DDR3 +NVIDIA;GeForce;945M,GM108,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0,Maxwell,1024M,23,1,GM108,DDR3 +NVIDIA;GeForce;945M,GM107,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;845M,GM108,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,33,1,GM108,GDDR5 +NVIDIA;GeForce;845M,GM107,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,45,1,GM107,DDR3 +NVIDIA;GeForce,MX550,NVIDIAGeForce_MX550,GPU,NVIDIA,CUDA_7_5,Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX450,NVIDIAGeForce_MX450,GPU,NVIDIA,CUDA_7_5,Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX350,NVIDIAGeForce_MX350,GPU,NVIDIA,CUDA_6_1,Pascal,2G,20,1,GP107,GDDR5 +NVIDIA;GeForce,MX330,NVIDIAGeForce_MX330,GPU,NVIDIA,CUDA_6_1,Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX230,NVIDIAGeForce_MX230,GPU,NVIDIA,CUDA_6_1,Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX130,NVIDIAGeForce_MX130,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,MX110,NVIDIAGeForce_MX110,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,945A,NVIDIAGeForce_945A,GPU,NVIDIA,CUDA_5_0,Maxwell,1024M,33,1,GM108,GDDR5 +NVIDIA;GeForce;940MX,GM108M,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;unset;unset;unset,Maxwell,4G,23,1,GM108M,DDR3 +NVIDIA;GeForce;940MX,GM107,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,23,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM107,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM108,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,940A,NVIDIAGeForce_940A,GPU,NVIDIA,CUDA_5_0,Maxwell,1024M,33,1,GM108,DDR3 +NVIDIA;GeForce,930MX,NVIDIAGeForce_930MX,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,17,1,GM108,DDR3 +NVIDIA;GeForce,930M,NVIDIAGeForce_930M,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,930A,NVIDIAGeForce_930A,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,920MX,NVIDIAGeForce_920MX,GPU,NVIDIA,CUDA_5_0,Maxwell,2G,16,1,GM108,DDR3 +NVIDIA;GeForce,920M,NVIDIAGeForce_920M,GPU,NVIDIA,CUDA_3_5,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,920A,NVIDIAGeForce_920A,GPU,NVIDIA,CUDA_3_5,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,910M,NVIDIAGeForce_910M,GPU,NVIDIA,CUDA_3_5,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,820M,NVIDIAGeForce_820M,GPU,NVIDIA,CUDA_3_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,810M,NVIDIAGeForce_810M,GPU,NVIDIA,CUDA_3_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,710A,NVIDIAGeForce_710A,GPU,NVIDIA,CUDA_3_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;CMP,90HX,NVIDIACmp_90HX,GPU,NVIDIA,CUDA_8_6,Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;CMP,70HX,NVIDIACmp_70HX,GPU,NVIDIA,CUDA_8_6,Ampere,8G,unknown,1,GA104,GDDR6X +NVIDIA;CMP,50HX,NVIDIACmp_50HX,GPU,NVIDIA,CUDA_7_5,Turing,10G,250,1,TU102,GDDR6 +NVIDIA;CMP,40HX,NVIDIACmp_40HX,GPU,NVIDIA,CUDA_7_5,Turing,8G,185,1,TU106,GDDR6 +NVIDIA;CMP,30HX,NVIDIACmp_30HX,GPU,NVIDIA,CUDA_7_5,Turing,6G,125,1,TU116,GDDR6 +NVIDIA;CMP,170HX,NVIDIACmp_170HX,GPU,NVIDIA,CUDA_8_0,Ampere,16G,250,1,GA100,HBM2e +NVIDIA;TITAN,V,NVIDIATitan_V,GPU,NVIDIA,CUDA_7_0,Volta,12G,250,1,GV100,HBM2 +NVIDIA;TITAN,Xp,NVIDIATitan_Xp,GPU,NVIDIA,CUDA_6_1,Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,X,NVIDIATitan_X,GPU,NVIDIA,CUDA_6_1,Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,RTX,NVIDIATitan_RTX,GPU,NVIDIA,CUDA_7_5,Turing,24G,280,1,TU102,GDDR6 +NVIDIA,T600,NVIDIA_T600,GPU,NVIDIA,CUDA_7_5,Turing,4G,40,1,TU117,GDDR6 +NVIDIA,T550,NVIDIA_T550,GPU,NVIDIA,CUDA_7_5,Turing,4G,23,1,TU117,GDDR6 +NVIDIA,T500,NVIDIA_T500,GPU,NVIDIA,CUDA_7_5,Turing,2G,18,1,TU117,GDDR6 +NVIDIA,PG506-242,NVIDIA_PG506_242,GPU,NVIDIA,CUDA_8_0,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,PG506-232,NVIDIA_PG506_232,GPU,NVIDIA,CUDA_8_0,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,P106M,NVIDIA_P106M,GPU,NVIDIA,CUDA_6_1,Pascal,4G,75,1,GP106,GDDR5 +NVIDIA,P106-100,NVIDIA_P106_100,GPU,NVIDIA,CUDA_6_1,Pascal,6G,120,1,GP106,GDDR5 +NVIDIA,P106-090,NVIDIA_P106_090,GPU,NVIDIA,CUDA_6_1,Pascal,3G,75,1,GP106,GDDR5 +NVIDIA,P104-101,NVIDIA_P104_101,GPU,NVIDIA,CUDA_6_1,Pascal,4G,unknown,1,GP104,GDDR5 +NVIDIA,P104-100,NVIDIA_P104_100,GPU,NVIDIA,CUDA_6_1,Pascal,4G,unknown,1,GP104,GDDR5X +NVIDIA,P102-101,NVIDIA_P102_101,GPU,NVIDIA,CUDA_6_1,Pascal,10G,250,1,GP102,GDDR5 +NVIDIA,P102-100,NVIDIA_P102_100,GPU,NVIDIA,CUDA_6_1,Pascal,5G,250,1,GP102,GDDR5X +NVIDIA,A40,NVIDIA_A40,GPU,NVIDIA,CUDA_8_6,Ampere,48G,300,1,GA102,GDDR6 +NVIDIA,A30,NVIDIA_A30,GPU,NVIDIA,CUDA_8_0,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,A2,NVIDIA_A2,GPU,NVIDIA,CUDA_8_6,Ampere,16G,60,1,GA107,GDDR6 +NVIDIA,A16,NVIDIA_A16,GPU,NVIDIA,CUDA_8_6,Ampere,64G,250,4,GA107,GDDR6 +NVIDIA,A10G,NVIDIA_A10G,GPU,NVIDIA,CUDA_8_6,Ampere,12G,150,1,GA102,GDDR6 +NVIDIA,A10,NVIDIA_A10,GPU,NVIDIA,CUDA_8_6,Ampere,24G,150,1,GA102,GDDR6 +NVIDIA;A100;SXM4,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0,Ampere,80G,400,1,GA100,HBM2e +NVIDIA;A100;SXM4,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0,Ampere,40G,400,1,GA100,HBM2e +NVIDIA;A100;PCIe,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0,Ampere,80G,250,1,GA100,HBM2e +NVIDIA;A100;PCIe,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0,Ampere,40G,250,1,GA100,HBM2e +NVIDIA;RTX;A5500,Mobile,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6,Ampere,16G,140,1,GA103S,GDDR6 +NVIDIA;RTX;A5500,,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6,Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A5000,Mobile,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6,Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A5000,,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6,Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A500,Embedded,NVIDIA_RTX_A500,GPU,NVIDIA,CUDA_8_6,Ampere,4G,35,1,GA107S,GDDR6 +NVIDIA;RTX;A4500,Mobile,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6,Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,Embedded,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6,Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6,Ampere,20G,200,1,GA102,GDDR6 +NVIDIA;RTX;A4000,Mobile,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6,Ampere,8G,140,1,GA104,GDDR6 +NVIDIA;RTX;A4000,,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6,Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,12 GB,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6,Ampere,12G,130,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6,Ampere,6G,130,1,GA104,GDDR6 +NVIDIA;RTX;A2000,Mobile,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6,Ampere,4G,95,1,GA106,GDDR6 +NVIDIA;RTX;A2000,Embedded,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6,Ampere,8G,60,1,GA107S,GDDR6 +NVIDIA;RTX;A2000,12 GB,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6,Ampere,12G,70,1,GA106,GDDR6 +NVIDIA;RTX;A2000,,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6,Ampere,6G,70,1,GA106,GDDR6 +NVIDIA;RTX;A1000,Mobile,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6,Ampere,4G,60,1,GA107,GDDR6 +NVIDIA;RTX;A1000,Embedded,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6,Ampere,4G,60,1,GA107S,GDDR6 +NVIDIA;RTX,A6000,NVIDIA_RTX_A6000,GPU,NVIDIA,CUDA_8_6,Ampere,48G,300,1,GA102,GDDR6 +NVIDIA;RTX,A4,NVIDIA_RTX_A4,GPU,NVIDIA,CUDA_8_6,Ampere,4G,unknown,1,GA107,GDDR6 +NVIDIA;T400,4 GB,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5,Turing,4G,30,1,TU117,GDDR6 +NVIDIA;T400,,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5,Turing,2G,30,1,TU117,GDDR6 +NVIDIA;T1000,8 GB,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5,Turing,8G,50,1,TU117,GDDR6 +NVIDIA;T1000,,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5,Turing,4G,50,1,TU117,GDDR6 \ No newline at end of file diff --git a/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv new file mode 100644 index 0000000..3eab795 --- /dev/null +++ b/src/features/qualifiers/nvidia/db-accelerators.NVIDIA.csv @@ -0,0 +1,335 @@ +,,accelerator,accelerator_type,accelerator_manufacturer,accelerator_api,accelerator_architecture,accelerator_memorysize,accelerator_tdp,accelerator_processor_count,accelerator_processor,accelerator_memory_type +NVIDIA;Tesla;V100;SXM3,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;SXM2,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;PCIe,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,16G,300,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,32 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100;DGXS,16 GB,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;V100,FHHL,NVIDIATesla_V100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,16G,250,1,GV100,HBM2 +NVIDIA;Tesla;P100;PCIe,16 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100;PCIe,12 GB,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,12G,250,1,GP100,HBM2 +NVIDIA;Tesla;P100,SXM2,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;P100,DGXS,NVIDIATesla_P100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,300,1,GP100,HBM2 +NVIDIA;Tesla;M40,24 GB,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Tesla;M40,,NVIDIATesla_M40,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Tesla,V100S,NVIDIATesla_V100S,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,T4,NVIDIATesla_T4,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,70,1,TU104,GDDR6 +NVIDIA;Tesla,PG503-216,NVIDIATesla_PG503_216,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,PG500-216,NVIDIATesla_PG500_216,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Tesla,P6,NVIDIATesla_P6,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,90,1,GP104,GDDR5 +NVIDIA;Tesla,P40,NVIDIATesla_P40,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,P4,NVIDIATesla_P4,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,75,1,GP104,GDDR5 +NVIDIA;Tesla,P10,NVIDIATesla_P10,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Tesla,M60,NVIDIATesla_M60,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,16G,300,2,GM204,GDDR5 +NVIDIA;Tesla,M6,NVIDIATesla_M6,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Tesla,M4,NVIDIATesla_M4,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,50,1,GM206,GDDR5 +NVIDIA;Tesla,M10,NVIDIATesla_M10,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,32G,225,4,GM107,GDDR5 +NVIDIA,Switch,NVIDIA_Switch,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12_1,Maxwell2,4G,15,1,GM20B,DDR4 +NVIDIA;Quadro;T2000,Mobile,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,60,1,TU117,GDDR5 +NVIDIA;Quadro;T2000,Max-Q,NVIDIAQuadro_T2000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,40,1,TU117,GDDR5 +NVIDIA;Quadro;T1000;Mobile,TU117B,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117B,GDDR6 +NVIDIA;Quadro;T1000;Mobile,TU117,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;T1000,Max-Q,NVIDIAQuadro_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR5 +NVIDIA;Quadro;RTX;8000,Passive,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;8000,,NVIDIAQuadro_RTX_8000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,48G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Passive,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,Mobile,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,24G,unknown,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;6000,,NVIDIAQuadro_RTX_6000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,24G,260,1,TU102,GDDR6 +NVIDIA;Quadro;RTX;5000,Refresh,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,110,1,TU104B,GDDR6 +NVIDIA;Quadro;RTX;5000,Mobile,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,Max-Q,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;5000,,NVIDIAQuadro_RTX_5000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,230,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Mobile,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,110,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,Max-Q,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;4000,,NVIDIAQuadro_RTX_4000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,160,1,TU104,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,Refresh,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000;Mobile,,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,80,1,TU106,GDDR6 +NVIDIA;Quadro;RTX;3000,Max-Q,NVIDIAQuadro_RTX_3000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,60,1,TU106,GDDR6 +NVIDIA;Quadro;P620,Mobile,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P620,,NVIDIAQuadro_P620,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P600,Mobile,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,25,1,GP107,GDDR5 +NVIDIA;Quadro;P600,,NVIDIAQuadro_P600,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P5200,Mobile,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5200,Max-Q,NVIDIAQuadro_P5200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,Mobile,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P5000,,NVIDIAQuadro_P5000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,180,1,GP104,GDDR5X +NVIDIA;Quadro;P4000,Mobile,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,Max-Q,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro;P4000,,NVIDIAQuadro_P4000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,105,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Mobile,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P3200,Max-Q,NVIDIAQuadro_P3200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro;P2200,,NVIDIAQuadro_P2200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,5G,75,1,GP106,GDDR5X +NVIDIA;Quadro;P2000,Mobile,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,50,1,GP107,GDDR5 +NVIDIA;Quadro;P2000,,NVIDIAQuadro_P2000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,5G,75,1,GP106,GDDR5 +NVIDIA;Quadro;P1000,Mobile,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,40,1,GP107,GDDR5 +NVIDIA;Quadro;P1000,,NVIDIAQuadro_P1000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,47,1,GP107,GDDR5 +NVIDIA;Quadro;M6000,24 GB,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,24G,250,1,GM200,GDDR5 +NVIDIA;Quadro;M6000,,NVIDIAQuadro_M6000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;Quadro,T1200,NVIDIAQuadro_T1200,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,18,1,TU117,GDDR6 +NVIDIA;Quadro,P6000,NVIDIAQuadro_P6000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,24G,250,1,GP102,GDDR5X +NVIDIA;Quadro,P520,NVIDIAQuadro_P520,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P500,NVIDIAQuadro_P500,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,18,1,GP108,GDDR5 +NVIDIA;Quadro,P4200,NVIDIAQuadro_P4200,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,100,1,GP104,GDDR5 +NVIDIA;Quadro,P400,NVIDIAQuadro_P400,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,30,1,GP107,GDDR5 +NVIDIA;Quadro,P3000,NVIDIAQuadro_P3000,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,75,1,GP104,GDDR5 +NVIDIA;Quadro,M620,NVIDIAQuadro_M620,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M600M,NVIDIAQuadro_M600M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM107,GDDR5 +NVIDIA;Quadro,M5500,NVIDIAQuadro_M5500,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M520,NVIDIAQuadro_M520,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,25,1,GM108,GDDR5 +NVIDIA;Quadro,M500M,NVIDIAQuadro_M500M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,M5000M,NVIDIAQuadro_M5000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M5000,NVIDIAQuadro_M5000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,150,1,GM204,GDDR5 +NVIDIA;Quadro,M4000M,NVIDIAQuadro_M4000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,100,1,GM204,GDDR5 +NVIDIA;Quadro,M4000,NVIDIAQuadro_M4000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,120,1,GM204,GDDR5 +NVIDIA;Quadro,M3000M,NVIDIAQuadro_M3000M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M3000,NVIDIAQuadro_M3000,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,75,1,GM204,GDDR5 +NVIDIA;Quadro,M2200,NVIDIAQuadro_M2200,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,55,1,GM206,GDDR5 +NVIDIA;Quadro,M2000M,NVIDIAQuadro_M2000M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,55,1,GM107,GDDR5 +NVIDIA;Quadro,M2000,NVIDIAQuadro_M2000,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell2,4G,75,1,GM206,GDDR5 +NVIDIA;Quadro,M1200,NVIDIAQuadro_M1200,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,M1000M,NVIDIAQuadro_M1000M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,40,1,GM107,GDDR5 +NVIDIA;Quadro,K620M,NVIDIAQuadro_K620M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM108,DDR3 +NVIDIA;Quadro,K1200,NVIDIAQuadro_K1200,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,45,1,GM107,GDDR5 +NVIDIA;Quadro,GV100,NVIDIAQuadro_GV100,GPU,NVIDIA,CUDA_7_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,32G,250,1,GV100,HBM2 +NVIDIA;Quadro,GP100,NVIDIAQuadro_GP100,GPU,NVIDIA,CUDA_6_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,16G,235,1,GP100,HBM2 +NVIDIA;NVS,810,NVIDIA_NVS_810,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,68,2,GM107,DDR3 +NVIDIA;Jetson;Xavier,NX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12_1,Volta,na,15,1,GV10B,na +NVIDIA;Jetson;Xavier,AGX,NVIDIA_Jetson_Xavier,GPU,NVIDIA,CUDA_7_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12_1,Volta,na,30,1,GV10B,na +NVIDIA;Jetson,TX2,NVIDIA_Jetson_TX2,GPU,NVIDIA,CUDA_6_2;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_2;DirectX_12_1,Pascal,na,15,1,GP10B,na +NVIDIA;Jetson,TX1,NVIDIA_Jetson_TX1,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12_1,Maxwell2,na,15,1,GM20B,na +NVIDIA;Jetson,Nano,NVIDIA_Jetson_Nano,GPU,NVIDIA,CUDA_5_3;OpenCL_1_2;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_12_1,Maxwell2,na,10,1,GM20B,na +NVIDIA;H100,SXM5,NVIDIA_H100,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;na;na;na,Hopper,80G,700,1,GH100,HBM3 +NVIDIA;H100,PCIe,NVIDIA_H100,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;na;na;na,Hopper,80G,350,1,GH100,HBM2e +NVIDIA;GRID;RTX,T10-8,NVIDIAGrid_RTX_T10_8,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-4,NVIDIAGrid_RTX_T10_4,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,4G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-2,NVIDIAGrid_RTX_T10_2,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,2G,260,1,TU102,GDDR6 +NVIDIA;GRID;RTX,T10-16,NVIDIAGrid_RTX_T10_16,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,16G,260,1,TU102,GDDR6 +NVIDIA;GRID,M60-8Q,NVIDIAGrid_M60_8Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-4A,NVIDIAGrid_M60_4A,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-2Q,NVIDIAGrid_M60_2Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,2G,225,1,GM204,GDDR5 +NVIDIA;GRID,M60-1Q,NVIDIAGrid_M60_1Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,1024M,225,1,GM204,GDDR5 +NVIDIA;GRID,M6-8Q,NVIDIAGrid_M6_8Q,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,100,1,GM204,GDDR5 +NVIDIA;GRID,M40,NVIDIAGrid_M40,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,8G,50,1,GM107,GDDR5 +NVIDIA;GRID,M3-3020,NVIDIAGrid_M3_3020,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,unknown,1,GM107,GDDR5 +NVIDIA;GRID,M10-8Q,NVIDIAGrid_M10_8Q,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,8G,225,1,GM107,GDDR5 +NVIDIA;GRID,A100B,NVIDIAGrid_A100B,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GRID,A100A,NVIDIAGrid_A100A,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,48G,400,1,GA100,HBM2e +NVIDIA;GeForce;RTX,4090,NVIDIAGeForce_RTX_4090,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Lovelace,24G,450,1,AD102,GDDR6X +NVIDIA;GeForce;RTX,4080,NVIDIAGeForce_RTX_4080,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Lovelace,16G,420,1,AD103,GDDR6X +NVIDIA;GeForce;RTX,4070,NVIDIAGeForce_RTX_4070,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Lovelace,12G,285,1,AD104,GDDR6X +NVIDIA;GeForce;RTX;4060,Ti,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Lovelace,10G,300,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;4060,,NVIDIAGeForce_RTX_4060,GPU,NVIDIA,CUDA_9_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Lovelace,8G,200,1,AD104,GDDR6 +NVIDIA;GeForce;RTX;3090,Ti,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,24G,450,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3090,,NVIDIAGeForce_RTX_3090,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,24G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,115,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,80,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3080;Ti,20 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,20G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080;Ti,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,Mobile,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,Max-Q,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3080,12 GB,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,350,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3080,,NVIDIAGeForce_RTX_3080,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070;Ti,16 GB,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070;Ti,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,290,1,GA104,GDDR6X +NVIDIA;GeForce;RTX;3070,Mobile,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,115,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,Max-Q,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,80,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3070,,NVIDIAGeForce_RTX_3070,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,220,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,200,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3060;Ti,GA103,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,200,1,GA103S,GDDR6 +NVIDIA;GeForce;RTX;3060,Mobile,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,6G,80,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,Max-Q,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,6G,60,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA106,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,170,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3060,GA104,NVIDIAGeForce_RTX_3060,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,170,1,GA104,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;Ti,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,75,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,Mobile,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,75,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050;4 GB,,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,90,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA107,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,115,1,GA107,GDDR6 +NVIDIA;GeForce;RTX;3050,GA106,NVIDIAGeForce_RTX_3050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,130,1,GA106,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080;SUPER,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,250,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Ti,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,11G,250,1,TU102,GDDR6 +NVIDIA;GeForce;RTX;2080,Mobile,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,150,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,Max-Q,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2080,,NVIDIAGeForce_RTX_2080,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Mobile,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,115,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,Max-Q,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,80,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;SUPER,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,215,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Mobile,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,Refresh,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2070;Max-Q,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,90,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2070,,NVIDIAGeForce_RTX_2070,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,65,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Mobile,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,115,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,Refresh,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,115,1,TU106B,GDDR6 +NVIDIA;GeForce;RTX;2060;Max-Q,,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,65,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU106,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,160,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,TU104,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,6G,160,1,TU104,GDDR6 +NVIDIA;GeForce;RTX;2060,SUPER,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,175,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2060,12 GB,NVIDIAGeForce_RTX_2060,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,12G,184,1,TU106,GDDR6 +NVIDIA;GeForce;RTX;2050,Mobile,NVIDIAGeForce_RTX_2050,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,45,1,GA107,GDDR6 +NVIDIA;GeForce;MX570,GA107S,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,25,1,GA107S,GDDR6 +NVIDIA;GeForce;MX570,GA107,NVIDIAGeForce_MX570,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,2G,25,1,GA107,GDDR6 +NVIDIA;GeForce;MX250,GP108B,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,10,1,GP108B,GDDR5 +NVIDIA;GeForce;MX250,GP108,NVIDIAGeForce_MX250,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP108,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,25,1,GP108,GDDR5 +NVIDIA;GeForce;MX150,GP107,NVIDIAGeForce_MX150,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,25,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;TITAN,X,NVIDIAGeForce_GTX_TITAN_X,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,12G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Ti,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,6G,250,1,GM200,GDDR5 +NVIDIA;GeForce;GTX;980,Mobile,NVIDIAGeForce_GTX_980,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,4 GB,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M;GM204,,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,2G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;965M,GM206,NVIDIAGeForce_GTX_965M,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,2G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,OEM,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960;GM206,,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,2G,120,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;960,GM204,NVIDIAGeForce_GTX_960,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,3G,unknown,1,GM204,GDDR5 +NVIDIA;GeForce;GTX;950M,Mac,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950M,,NVIDIAGeForce_GTX_950M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX;950,OEM,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,4G,unknown,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,Low,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,2G,75,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;950,,NVIDIAGeForce_GTX_950,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell2,2G,90,1,GM206,GDDR5 +NVIDIA;GeForce;GTX;1660;Ti,Mobile,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,Max-Q,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,unknown,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660;Ti,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,120,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,SUPER,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,125,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1660,,NVIDIAGeForce_GTX_1660,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,120,1,TU116,GDDR5 +NVIDIA;GeForce;GTX;1650;Ti,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDI A,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650;Ti,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,TU117,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,75,1,TU117,GDDR5 +NVIDIA;GeForce;GTX;1650,TU116,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,80,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,TU106,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,4G,90,1,TU106,GDDR6 +NVIDIA;GeForce;GTX;1650,SUPER,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,100,1,TU116,GDDR6 +NVIDIA;GeForce;GTX;1650,Mobile,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1650,Max-Q,NVIDIAGeForce_GTX_1650,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,30,1,TU117,GDDR6 +NVIDIA;GeForce;GTX;1080;Ti,10 GB,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,10G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080;Ti,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,11G,250,1,GP102,GDDR5X +NVIDIA;GeForce;GTX;1080,Mobile,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,Max-Q,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,150,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,11Gbps,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1080,,NVIDIAGeForce_GTX_1080,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,180,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1070,Ti,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,180,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Mobile,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,Max-Q,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,115,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1070,,NVIDIAGeForce_GTX_1070,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,150,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;6 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,120,1,GP104,GDDR5/GDDR5X +NVIDIA;GeForce;GTX;1060;6 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP104,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,3G,120,1,GP104,GDDR5 +NVIDIA;GeForce;GTX;1060;3 GB,GP106,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,3G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,Mobile,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,80,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1060,8 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,8G,120,1,GP104,GDDR5X +NVIDIA;GeForce;GTX;1060,5 GB,NVIDIAGeForce_GTX_1060,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,5G,120,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP107,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,GP106,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,75,1,GP106,GDDR5 +NVIDIA;GeForce;GTX;1050;Ti,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,Ti,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;Max-Q,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050;3 GB,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,3G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,Mobile,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX;1050,,NVIDIAGeForce_GTX_1050,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,75,1,GP107,GDDR5 +NVIDIA;GeForce;GTX,980MX,NVIDIAGeForce_GTX_980MX,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Maxwell2,8G,148,1,GM204,GDDR5 +NVIDIA;GeForce;GTX,960M,NVIDIAGeForce_GTX_960M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,960A,NVIDIAGeForce_GTX_960A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,950A,NVIDIAGeForce_GTX_950A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;GTX,860M,NVIDIAGeForce_GTX_860M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,GDDR5 +NVIDIA;GeForce;GTX,1630,NVIDIAGeForce_GTX_1630,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,75,1,TU117,GDDR6 +NVIDIA;GeForce;GTX,760,NVIDIAGeForce_GTX_760,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,2G,170,1,GK104,GDDR5 +NVIDIA;GeForce;GTX,750,NVIDIAGeForce_GTX_750,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Maxwell2,2G,60,1,GM206,GDDR5 +NVIDIA;GeForce;GT;710,OEM,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler2,1024M,unknown,1,GK208B,DDR3 +NVIDIA;GeForce;GT;710,,NVIDIAGeForce_GT_710,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Fermi2,1024M,29,1,GF119,DDR3 +NVIDIA;GeForce;GT;1030,GK107,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,2G,65,1,GK107,GDDR5 +NVIDIA;GeForce;GT;1030,GP108,NVIDIAGeForce_GT_1030,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,1010,NVIDIAGeForce_GT_1010,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,20,1,GP108,DDR4/GDDR5 +NVIDIA;GeForce;GT,740,NVIDIAGeForce_GT_740,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,1024M,65,1,GK106,GDDR5 +NVIDIA;GeForce;GT,730,NVIDIAGeForce_GT_730,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,1024M,64,1,GK107,GDDR5 +NVIDIA;GeForce;GT,720,NVIDIAGeForce_GT_720,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;na;DirectX_11_0,Kepler,1024M,50,1,GK107,DDR3 +NVIDIA;GeForce;GT,610,NVIDIAGeForce_GT_610,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;na;DirectX_11_0,Fermi,2G,29,1,GF108,DDR3 +NVIDIA;GeForce;945M,GM108,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,1024M,23,1,GM108,DDR3 +NVIDIA;GeForce;945M,GM107,NVIDIAGeForce_945M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;845M,GM108,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,33,1,GM108,GDDR5 +NVIDIA;GeForce;845M,GM107,NVIDIAGeForce_845M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,45,1,GM107,DDR3 +NVIDIA;GeForce,MX550,NVIDIAGeForce_MX550,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX450,NVIDIAGeForce_MX450,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,2G,25,1,TU117,GDDR6 +NVIDIA;GeForce,MX350,NVIDIAGeForce_MX350,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,20,1,GP107,GDDR5 +NVIDIA;GeForce,MX330,NVIDIAGeForce_MX330,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX230,NVIDIAGeForce_MX230,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,2G,10,1,GP108,GDDR5 +NVIDIA;GeForce,MX130,NVIDIAGeForce_MX130,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,MX110,NVIDIAGeForce_MX110,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,30,1,GM108,GDDR5 +NVIDIA;GeForce,945A,NVIDIAGeForce_945A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,1024M,33,1,GM108,GDDR5 +NVIDIA;GeForce;940MX,GM108M,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,4G,23,1,GM108M,DDR3 +NVIDIA;GeForce;940MX,GM107,NVIDIAGeForce_940MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,23,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM107,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,75,1,GM107,DDR3 +NVIDIA;GeForce;940M,GM108,NVIDIAGeForce_940M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,940A,NVIDIAGeForce_940A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,1024M,33,1,GM108,DDR3 +NVIDIA;GeForce,930MX,NVIDIAGeForce_930MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,17,1,GM108,DDR3 +NVIDIA;GeForce,930M,NVIDIAGeForce_930M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,930A,NVIDIAGeForce_930A,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,33,1,GM108,DDR3 +NVIDIA;GeForce,920MX,NVIDIAGeForce_920MX,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Maxwell,2G,16,1,GM108,DDR3 +NVIDIA;GeForce,920M,NVIDIAGeForce_920M,GPU,NVIDIA,CUDA_5_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_11_0,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,920A,NVIDIAGeForce_920A,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,910M,NVIDIAGeForce_910M,GPU,NVIDIA,CUDA_3_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler2,2G,33,1,GK208B,DDR3 +NVIDIA;GeForce,820M,NVIDIAGeForce_820M,GPU,NVIDIA,CUDA_2_1;OpenCL_1_1;unset;unset;OpenGL_4_6;na;DirectX_11_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,810M,NVIDIAGeForce_810M,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;GeForce,710A,NVIDIAGeForce_710A,GPU,NVIDIA,CUDA_3_0;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_1;DirectX_11_0,Kepler,2G,45,1,GK107,DDR3 +NVIDIA;CMP,90HX,NVIDIACmp_90HX,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,10G,320,1,GA102,GDDR6X +NVIDIA;CMP,70HX,NVIDIACmp_70HX,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,8G,unknown,1,GA104,GDDR6X +NVIDIA;CMP,50HX,NVIDIACmp_50HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,10G,250,1,TU102,GDDR6 +NVIDIA;CMP,40HX,NVIDIACmp_40HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,8G,185,1,TU106,GDDR6 +NVIDIA;CMP,30HX,NVIDIACmp_30HX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,6G,125,1,TU116,GDDR6 +NVIDIA;CMP,170HX,NVIDIACmp_170HX,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,16G,250,1,GA100,HBM2e +NVIDIA;TITAN,V,NVIDIATitan_V,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Volta,12G,250,1,GV100,HBM2 +NVIDIA;TITAN,Xp,NVIDIATitan_Xp,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,X,NVIDIATitan_X,GPU,NVIDIA,CUDA_5_2;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,12G,250,1,GP102,GDDR5X +NVIDIA;TITAN,RTX,NVIDIATitan_RTX,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Turing,24G,280,1,TU102,GDDR6 +NVIDIA,T600,NVIDIA_T600,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,40,1,TU117,GDDR6 +NVIDIA,T550,NVIDIA_T550,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,23,1,TU117,GDDR6 +NVIDIA,T500,NVIDIA_T500,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,2G,18,1,TU117,GDDR6 +NVIDIA,PG506-242,NVIDIA_PG506_242,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,PG506-232,NVIDIA_PG506_232,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,P106M,NVIDIA_P106M,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,75,1,GP106,GDDR5 +NVIDIA,P106-100,NVIDIA_P106_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,6G,120,1,GP106,GDDR5 +NVIDIA,P106-090,NVIDIA_P106_090,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,3G,75,1,GP106,GDDR5 +NVIDIA,P104-101,NVIDIA_P104_101,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,unknown,1,GP104,GDDR5 +NVIDIA,P104-100,NVIDIA_P104_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,4G,unknown,1,GP104,GDDR5X +NVIDIA,P102-101,NVIDIA_P102_101,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,10G,250,1,GP102,GDDR5 +NVIDIA,P102-100,NVIDIA_P102_100,GPU,NVIDIA,CUDA_6_1;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Pascal,5G,250,1,GP102,GDDR5X +NVIDIA,A40,NVIDIA_A40,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,48G,300,1,GA102,GDDR6 +NVIDIA,A30,NVIDIA_A30,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,24G,165,1,GA100,HBM2 +NVIDIA,A2,NVIDIA_A2,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,60,1,GA107,GDDR6 +NVIDIA,A16,NVIDIA_A16,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,64G,250,4,GA107,GDDR6 +NVIDIA,A10G,NVIDIA_A10G,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,150,1,GA102,GDDR6 +NVIDIA,A10,NVIDIA_A10,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,24G,150,1,GA102,GDDR6 +NVIDIA;A100;SXM4,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,80G,400,1,GA100,HBM2e +NVIDIA;A100;SXM4,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,40G,400,1,GA100,HBM2e +NVIDIA;A100;PCIe,80 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,80G,250,1,GA100,HBM2e +NVIDIA;A100;PCIe,40 GB,NVIDIA_A100,GPU,NVIDIA,CUDA_8_0;OpenCL_3_0;unset;unset;na;na;na,Ampere,40G,250,1,GA100,HBM2e +NVIDIA;RTX;A5500,Mobile,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,140,1,GA103S,GDDR6 +NVIDIA;RTX;A5500,,NVIDIA_RTX_A5500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A5000,Mobile,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A5000,,NVIDIA_RTX_A5000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,24G,230,1,GA102,GDDR6 +NVIDIA;RTX;A500,Embedded,NVIDIA_RTX_A500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,35,1,GA107S,GDDR6 +NVIDIA;RTX;A4500,Mobile,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,Embedded,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,115,1,GA104,GDDR6 +NVIDIA;RTX;A4500,,NVIDIA_RTX_A4500,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,20G,200,1,GA102,GDDR6 +NVIDIA;RTX;A4000,Mobile,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,140,1,GA104,GDDR6 +NVIDIA;RTX;A4000,,NVIDIA_RTX_A4000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,16G,140,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,12 GB,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,130,1,GA104,GDDR6 +NVIDIA;RTX;A3000;Mobile,,NVIDIA_RTX_A3000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,6G,130,1,GA104,GDDR6 +NVIDIA;RTX;A2000,Mobile,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,95,1,GA106,GDDR6 +NVIDIA;RTX;A2000,Embedded,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,8G,60,1,GA107S,GDDR6 +NVIDIA;RTX;A2000,12 GB,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,12G,70,1,GA106,GDDR6 +NVIDIA;RTX;A2000,,NVIDIA_RTX_A2000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,6G,70,1,GA106,GDDR6 +NVIDIA;RTX;A1000,Mobile,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,60,1,GA107,GDDR6 +NVIDIA;RTX;A1000,Embedded,NVIDIA_RTX_A1000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,60,1,GA107S,GDDR6 +NVIDIA;RTX,A6000,NVIDIA_RTX_A6000,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,48G,300,1,GA102,GDDR6 +NVIDIA;RTX,A4,NVIDIA_RTX_A4,GPU,NVIDIA,CUDA_8_6;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_2,Ampere,4G,unknown,1,GA107,GDDR6 +NVIDIA;T400,4 GB,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,30,1,TU117,GDDR6 +NVIDIA;T400,,NVIDIA_T400,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,2G,30,1,TU117,GDDR6 +NVIDIA;T1000,8 GB,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,8G,50,1,TU117,GDDR6 +NVIDIA;T1000,,NVIDIA_T1000,GPU,NVIDIA,CUDA_7_5;OpenCL_3_0;unset;unset;OpenGL_4_6;Vulkan_1_3;DirectX_12_1,Turing,4G,50,1,TU117,GDDR6 \ No newline at end of file diff --git a/src/features/qualifiers/nvidia/gpu_info.json b/src/features/qualifiers/nvidia/gpu_info.json new file mode 100644 index 0000000..13e92f7 --- /dev/null +++ b/src/features/qualifiers/nvidia/gpu_info.json @@ -0,0 +1,116185 @@ +[ + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9170.c2744", + "web_page_access_date": "2022/08/21/, 14:23:03", + "Product Name": "AMD FirePro S9170", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2816", + "TMUs": "176", + "ROPs": "64", + "Memory Size": "32 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii XT GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 8th, 2015", + "Generation": "FirePro\n(Sx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "930 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.52 GPixel/s", + "Texture Rate": "163.7 GTexel/s", + "FP32 (float) performance": "5.238 TFLOPS", + "FP64 (double) performance": "2.619 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C681" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4130m.c2704", + "web_page_access_date": "2022/08/21/, 14:28:51", + "Product Name": "AMD FirePro W4130M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4150m.c2703", + "web_page_access_date": "2022/08/21/, 14:28:58", + "Product Name": "AMD FirePro W4150M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "800 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.800 GPixel/s", + "Texture Rate": "20.40 GTexel/s", + "FP32 (float) performance": "652.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4170m.c2723", + "web_page_access_date": "2022/08/21/, 14:29:11", + "Product Name": "AMD FirePro W4170M", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2015", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4190m.c2799", + "web_page_access_date": "2022/08/21/, 14:30:11", + "Product Name": "AMD FirePro W4190M", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 12th, 2015", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4300.c2781", + "web_page_access_date": "2022/08/21/, 14:31:02", + "Product Name": "AMD FirePro W4300", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire PRO GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 1st, 2015", + "Generation": "FirePro\n(Wx300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "930 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.88 GPixel/s", + "Texture Rate": "44.64 GTexel/s", + "FP32 (float) performance": "1,428 GFLOPS", + "FP64 (double) performance": "89.28 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "171 mm\n\t\t\t\t\t6.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C935" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Bonaire GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w5130m.c2769", + "web_page_access_date": "2022/08/21/, 14:31:52", + "Product Name": "AMD FirePro W5130M", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 2nd, 2015", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "29.60 GTexel/s", + "FP32 (float) performance": "947.2 GFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w6150m.c2798", + "web_page_access_date": "2022/08/21/, 14:32:43", + "Product Name": "AMD FirePro W6150M", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 12th, 2015", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1075 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.20 GPixel/s", + "Texture Rate": "51.60 GTexel/s", + "FP32 (float) performance": "1.651 TFLOPS", + "FP64 (double) performance": "103.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w7170m.c2768", + "web_page_access_date": "2022/08/21/, 14:33:33", + "Product Name": "AMD FirePro W7170M", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT GL", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 2nd, 2015", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "723 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.14 GPixel/s", + "Texture Rate": "92.54 GTexel/s", + "FP16 (half) performance": "2.961 TFLOPS (1:1)", + "FP32 (float) performance": "2.961 TFLOPS", + "FP64 (double) performance": "185.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e6465.c2766", + "web_page_access_date": "2022/08/21/, 14:34:24", + "Product Name": "AMD Radeon E6465", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 29th, 2015", + "Generation": "Embedded\n(6000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C911-47" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e8870.c2767", + "web_page_access_date": "2022/08/21/, 14:35:14", + "Product Name": "AMD Radeon E8870", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 29th, 2015", + "Generation": "Embedded\n(8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "3 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C600" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e8950.c2765", + "web_page_access_date": "2022/08/21/, 14:36:05", + "Product Name": "AMD Radeon E8950", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "E8950", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 29th, 2015", + "Generation": "Embedded\n(8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "3 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP16 (half) performance": "4.096 TFLOPS (1:1)", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "256.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "95 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C769" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r2-mobile-graphics.c2500", + "web_page_access_date": "2022/08/21/, 14:36:55", + "Product Name": "AMD Radeon R2 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 28th, 2015", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.200 GPixel/s", + "Texture Rate": "2.400 GTexel/s", + "FP32 (float) performance": "76.80 GFLOPS", + "FP64 (double) performance": "4.800 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r2-mobile-graphics.c3634", + "web_page_access_date": "2022/08/21/, 14:37:46", + "Product Name": "AMD Radeon R2 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 28th, 2015", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "497 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.988 GPixel/s", + "Texture Rate": "3.976 GTexel/s", + "FP32 (float) performance": "127.2 GFLOPS", + "FP64 (double) performance": "7.952 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r3-mobile-graphics.c2494", + "web_page_access_date": "2022/08/21/, 14:38:36", + "Product Name": "AMD Radeon R3 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 28th, 2015", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r3e-mobile-graphics.c3635", + "web_page_access_date": "2022/08/21/, 14:39:27", + "Product Name": "AMD Radeon R3E Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 28th, 2015", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "351 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.404 GPixel/s", + "Texture Rate": "2.808 GTexel/s", + "FP32 (float) performance": "89.86 GFLOPS", + "FP64 (double) performance": "5.616 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-310-oem.c3025", + "web_page_access_date": "2022/08/21/, 14:40:17", + "Product Name": "AMD Radeon R5 310 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0804070)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R5 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "875 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.500 GPixel/s", + "Texture Rate": "7.000 GTexel/s", + "FP32 (float) performance": "280.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-310-oem.c2680", + "web_page_access_date": "2022/08/21/, 14:41:08", + "Product Name": "AMD Radeon R5 310 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0804070)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R5 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Memory Clock": "805 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1610 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.88 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "6.200 GTexel/s", + "FP32 (float) performance": "248.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-330-oem.c2727", + "web_page_access_date": "2022/08/21/, 14:41:58", + "Product Name": "AMD Radeon R5 330 OEM", + "General Specs": { + "Graphics Processor": "Hainan", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Hainan", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R5 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "830 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Hainan GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-340-oem.c2683", + "web_page_access_date": "2022/08/21/, 14:42:49", + "Product Name": "AMD Radeon R5 340 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0837015)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R5 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C869" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-340x-oem.c2820", + "web_page_access_date": "2022/08/21/, 14:43:39", + "Product Name": "AMD Radeon R5 340X OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R5 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C870-51" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a320.c2728", + "web_page_access_date": "2022/08/21/, 14:44:30", + "Product Name": "AMD Radeon R5 A320", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a330.c3110", + "web_page_access_date": "2022/08/21/, 14:45:20", + "Product Name": "AMD Radeon R5 A330", + "General Specs": { + "Graphics Processor": "Exo", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Exo", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 21st, 2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.0" + }, + "Exo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a335.c2935", + "web_page_access_date": "2022/08/21/, 14:46:11", + "Product Name": "AMD Radeon R5 A335", + "General Specs": { + "Graphics Processor": "Exo", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Exo", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 21st, 2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1070 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.560 GPixel/s", + "Texture Rate": "21.40 GTexel/s", + "FP32 (float) performance": "684.8 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.0" + }, + "Exo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m315.c2895", + "web_page_access_date": "2022/08/21/, 14:47:01", + "Product Name": "AMD Radeon R5 M315", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso LE", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R5 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "970 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.760 GPixel/s", + "Texture Rate": "23.28 GTexel/s", + "FP16 (half) performance": "745.0 GFLOPS (1:1)", + "FP32 (float) performance": "745.0 GFLOPS", + "FP64 (double) performance": "46.56 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m320.c2693", + "web_page_access_date": "2022/08/21/, 14:47:52", + "Product Name": "AMD Radeon R5 M320", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R5 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m330.c2681", + "web_page_access_date": "2022/08/21/, 14:48:43", + "Product Name": "AMD Radeon R5 M330", + "General Specs": { + "Graphics Processor": "Exo", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Exo", + "GPU Variant": "Exo PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R5 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.0" + }, + "Exo GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m335.c2692", + "web_page_access_date": "2022/08/21/, 14:49:33", + "Product Name": "AMD Radeon R5 M335", + "General Specs": { + "Graphics Processor": "Exo", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Exo", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 21st, 2015", + "Generation": "Crystal System\n(R5 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1070 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.560 GPixel/s", + "Texture Rate": "21.40 GTexel/s", + "FP32 (float) performance": "684.8 GFLOPS", + "FP64 (double) performance": "42.80 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.0" + }, + "Exo GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-mobile-graphics.c3005", + "web_page_access_date": "2022/08/21/, 14:50:24", + "Product Name": "AMD Radeon R5 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Wani", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wani", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 7th, 2015", + "Generation": "Carrizo\n(Rx 300 Mobile)", + "Predecessor": "Kaveri", + "Successor": "Stoney Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP16 (half) performance": "553.0 GFLOPS (1:1)", + "FP32 (float) performance": "553.0 GFLOPS", + "FP64 (double) performance": "276.5 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Wani GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-m335dx.c2941", + "web_page_access_date": "2022/08/21/, 14:51:14", + "Product Name": "AMD Radeon R6 M335DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 12th, 2015", + "Generation": "Crystal System\n(Rx M300)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "24.72 GTexel/s", + "FP32 (float) performance": "791.0 GFLOPS", + "FP64 (double) performance": "49.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-m340dx.c2942", + "web_page_access_date": "2022/08/21/, 14:52:05", + "Product Name": "AMD Radeon R6 M340DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 12th, 2015", + "Generation": "Crystal System\n(Rx M300)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "24.72 GTexel/s", + "FP32 (float) performance": "791.0 GFLOPS", + "FP64 (double) performance": "49.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-mobile-graphics.c2780", + "web_page_access_date": "2022/08/21/, 14:52:55", + "Product Name": "AMD Radeon R6 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Wani", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wani", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 7th, 2015", + "Generation": "Carrizo\n(Rx 300 Mobile)", + "Predecessor": "Kaveri", + "Successor": "Stoney Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP16 (half) performance": "553.0 GFLOPS (1:1)", + "FP32 (float) performance": "553.0 GFLOPS", + "FP64 (double) performance": "276.5 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Wani GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-340-oem.c2946", + "web_page_access_date": "2022/08/21/, 14:53:46", + "Product Name": "AMD Radeon R7 340 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-340-oem.c2684", + "web_page_access_date": "2022/08/21/, 14:54:36", + "Product Name": "AMD Radeon R7 340 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-350-oem.c2682", + "web_page_access_date": "2022/08/21/, 14:55:27", + "Product Name": "AMD Radeon R7 350 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-350x-oem.c2819", + "web_page_access_date": "2022/08/21/, 14:56:17", + "Product Name": "AMD Radeon R7 350X OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-360.c2733", + "web_page_access_date": "2022/08/21/, 14:57:08", + "Product Name": "AMD Radeon R7 360", + "General Specs": { + "Graphics Processor": "Tobago", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tobago", + "GPU Variant": "Tobago PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0875010)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "1.613 TFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582, C936" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tobago GPU Notes": {}, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-360-896sp.c2811", + "web_page_access_date": "2022/08/21/, 14:57:58", + "Product Name": "AMD Radeon R7 360 896SP", + "General Specs": { + "Graphics Processor": "Tobago", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tobago", + "GPU Variant": "Tobago XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1100 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Tobago GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-360e.c2827", + "web_page_access_date": "2022/08/21/, 14:58:49", + "Product Name": "AMD Radeon R7 360E", + "General Specs": { + "Graphics Processor": "Tobago", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tobago", + "GPU Variant": "Tobago PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0875010)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 30th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "1.613 TFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C913, C936" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tobago GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-370.c2645", + "web_page_access_date": "2022/08/21/, 14:59:40", + "Product Name": "AMD Radeon R7 370", + "General Specs": { + "Graphics Processor": "Trinidad", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Trinidad", + "GPU Variant": "Trinidad PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0870020)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "21 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "62.40 GTexel/s", + "FP32 (float) performance": "1.997 TFLOPS", + "FP64 (double) performance": "124.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "152 mm\n\t\t\t\t\t6 inches", + "TDP": "110 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C631, C634" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Trinidad GPU Notes": {}, + "Retail boards based on this design (21)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-a360.c3111", + "web_page_access_date": "2022/08/21/, 15:00:30", + "Product Name": "AMD Radeon R7 A360", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP16 (half) performance": "864.0 GFLOPS (1:1)", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-a360.c2717", + "web_page_access_date": "2022/08/21/, 15:01:21", + "Product Name": "AMD Radeon R7 A360", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP32 (float) performance": "752.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-a360.c2712", + "web_page_access_date": "2022/08/21/, 15:02:11", + "Product Name": "AMD Radeon R7 A360", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m260x.c2483", + "web_page_access_date": "2022/08/21/, 15:03:02", + "Product Name": "AMD Radeon R7 M260X", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 6th, 2015", + "Generation": "Crystal System\n(R7 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "620 MHz", + "Boost Clock": "715 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.720 GPixel/s", + "Texture Rate": "17.16 GTexel/s", + "FP32 (float) performance": "549.1 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m340.c3109", + "web_page_access_date": "2022/08/21/, 15:03:53", + "Product Name": "AMD Radeon R7 M340", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 6th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "620 MHz", + "Boost Clock": "715 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.720 GPixel/s", + "Texture Rate": "17.16 GTexel/s", + "FP32 (float) performance": "549.1 GFLOPS", + "FP64 (double) performance": "34.32 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m340.c2687", + "web_page_access_date": "2022/08/21/, 15:04:43", + "Product Name": "AMD Radeon R7 M340", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "943 MHz", + "Boost Clock": "1021 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.168 GPixel/s", + "Texture Rate": "20.42 GTexel/s", + "FP16 (half) performance": "653.4 GFLOPS (1:1)", + "FP32 (float) performance": "653.4 GFLOPS", + "FP64 (double) performance": "40.84 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m350.c2745", + "web_page_access_date": "2022/08/21/, 15:05:34", + "Product Name": "AMD Radeon R7 M350", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1015 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.120 GPixel/s", + "Texture Rate": "24.36 GTexel/s", + "FP16 (half) performance": "779.5 GFLOPS (1:1)", + "FP32 (float) performance": "779.5 GFLOPS", + "FP64 (double) performance": "48.72 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m350.c2696", + "web_page_access_date": "2022/08/22/, 18:51:34", + "Product Name": "AMD Radeon R7 M350", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m360.c2686", + "web_page_access_date": "2022/08/22/, 18:51:40", + "Product Name": "AMD Radeon R7 M360", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP16 (half) performance": "864.0 GFLOPS (1:1)", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m365x.c2762", + "web_page_access_date": "2022/08/22/, 18:51:46", + "Product Name": "AMD Radeon R7 M365X", + "General Specs": { + "Graphics Processor": "Litho", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Litho", + "GPU Variant": "Litho XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "960 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.680 GPixel/s", + "Texture Rate": "23.04 GTexel/s", + "FP32 (float) performance": "737.3 GFLOPS", + "FP64 (double) performance": "46.08 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Litho GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m370.c2695", + "web_page_access_date": "2022/08/22/, 18:51:53", + "Product Name": "AMD Radeon R7 M370", + "General Specs": { + "Graphics Processor": "Litho", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Litho", + "GPU Variant": "Litho XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "960 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.680 GPixel/s", + "Texture Rate": "23.04 GTexel/s", + "FP32 (float) performance": "737.3 GFLOPS", + "FP64 (double) performance": "46.08 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Litho GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m380.c3046", + "web_page_access_date": "2022/08/22/, 18:51:59", + "Product Name": "AMD Radeon R7 M380", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R7 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "915 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.64 GPixel/s", + "Texture Rate": "36.60 GTexel/s", + "FP32 (float) performance": "1,171 GFLOPS", + "FP64 (double) performance": "73.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-mobile-graphics.c2779", + "web_page_access_date": "2022/08/21/, 15:48:52", + "Product Name": "AMD Radeon R7 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Wani", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wani", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 15th, 2015", + "Generation": "Carrizo\n(Rx 300 Mobile)", + "Predecessor": "Kaveri", + "Successor": "Stoney Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "23.04 GTexel/s", + "FP16 (half) performance": "737.3 GFLOPS (1:1)", + "FP32 (float) performance": "737.3 GFLOPS", + "FP64 (double) performance": "368.6 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Wani GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r8-m350dx.c2802", + "web_page_access_date": "2022/08/21/, 15:50:52", + "Product Name": "AMD Radeon R8 M350DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 12th, 2015", + "Generation": "Crystal System\n(Rx M300)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "24.72 GTexel/s", + "FP32 (float) performance": "791.0 GFLOPS", + "FP64 (double) performance": "49.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r8-m365dx.c2803", + "web_page_access_date": "2022/08/21/, 15:52:53", + "Product Name": "AMD Radeon R8 M365DX", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 3rd, 2015", + "Generation": "Crystal System\n(Rx M300)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP16 (half) performance": "864.0 GFLOPS (1:1)", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Card Notes": {}, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-270-1024sp.c2679", + "web_page_access_date": "2022/08/21/, 15:54:53", + "Product Name": "AMD Radeon R9 270 1024SP", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0828062)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 13th, 2015", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "32 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "59.20 GTexel/s", + "FP32 (float) performance": "1.894 TFLOPS", + "FP64 (double) performance": "118.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C403" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-360-oem.c2661", + "web_page_access_date": "2022/08/21/, 15:56:54", + "Product Name": "AMD Radeon R9 360 OEM", + "General Specs": { + "Graphics Processor": "Tobago", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tobago", + "GPU Variant": "Tobago PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0875010)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "104.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "1.613 TFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C913-57" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tobago GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-370.c2726", + "web_page_access_date": "2022/08/21/, 15:58:55", + "Product Name": "AMD Radeon R9 370", + "General Specs": { + "Graphics Processor": "Trinidad", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Trinidad", + "GPU Variant": "Trinidad PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0870020)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "78.00 GTexel/s", + "FP32 (float) performance": "2.496 TFLOPS", + "FP64 (double) performance": "156.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "110 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Trinidad GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-370-1024sp.c2800", + "web_page_access_date": "2022/08/21/, 16:00:55", + "Product Name": "AMD Radeon R9 370 1024SP", + "General Specs": { + "Graphics Processor": "Trinidad", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Trinidad", + "GPU Variant": "Trinidad PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0870020)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 12th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "62.40 GTexel/s", + "FP32 (float) performance": "1.997 TFLOPS", + "FP64 (double) performance": "124.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C634" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Trinidad GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-370x.c2754", + "web_page_access_date": "2022/08/21/, 16:02:56", + "Product Name": "AMD Radeon R9 370X", + "General Specs": { + "Graphics Processor": "Trinidad", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Trinidad", + "GPU Variant": "Trinidad XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 27th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.96 GPixel/s", + "Texture Rate": "82.40 GTexel/s", + "FP32 (float) performance": "2.637 TFLOPS", + "FP64 (double) performance": "164.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C401" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Trinidad GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-380.c2734", + "web_page_access_date": "2022/08/21/, 16:04:57", + "Product Name": "AMD Radeon R9 380", + "General Specs": { + "Graphics Processor": "Antigua", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Antigua", + "GPU Variant": "Antigua PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0877000)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "39 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "970 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.04 GPixel/s", + "Texture Rate": "108.6 GTexel/s", + "FP16 (half) performance": "3.476 TFLOPS (1:1)", + "FP32 (float) performance": "3.476 TFLOPS", + "FP64 (double) performance": "217.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "190 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C766" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Antigua GPU Notes": {}, + "Retail boards based on this design (26)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-380-oem.c2725", + "web_page_access_date": "2022/08/21/, 16:06:57", + "Product Name": "AMD Radeon R9 380 OEM", + "General Specs": { + "Graphics Processor": "Antigua", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Antigua", + "GPU Variant": "Antigua PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0877000)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "May 5th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "918 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.38 GPixel/s", + "Texture Rate": "102.8 GTexel/s", + "FP16 (half) performance": "3.290 TFLOPS (1:1)", + "FP32 (float) performance": "3.290 TFLOPS", + "FP64 (double) performance": "205.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "190 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C766" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Antigua GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-380x.c2758", + "web_page_access_date": "2022/08/21/, 16:08:58", + "Product Name": "AMD Radeon R9 380X", + "General Specs": { + "Graphics Processor": "Antigua", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Antigua", + "GPU Variant": "Antigua XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0877016)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 19th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "36 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "970 MHz", + "Memory Clock": "1425 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "182.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.04 GPixel/s", + "Texture Rate": "124.2 GTexel/s", + "FP16 (half) performance": "3.973 TFLOPS (1:1)", + "FP32 (float) performance": "3.973 TFLOPS", + "FP64 (double) performance": "248.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "190 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C766, C784" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Antigua GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-390.c2664", + "web_page_access_date": "2022/08/21/, 16:10:59", + "Product Name": "AMD Radeon R9 390", + "General Specs": { + "Graphics Processor": "Grenada", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Grenada", + "GPU Variant": "Grenada PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0880030)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "329 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "35 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "160.0 GTexel/s", + "FP32 (float) performance": "5.120 TFLOPS", + "FP64 (double) performance": "640.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C679" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Grenada GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-390-x2.c2755", + "web_page_access_date": "2022/08/21/, 16:12:59", + "Product Name": "AMD Radeon R9 390 X2", + "General Specs": { + "Graphics Processor": "Grenada x2", + "Cores": "2560 x2", + "TMUs": "160 x2", + "ROPs": "64 x2", + "Memory Size": "8 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "512 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Grenada", + "GPU Variant": "Grenada PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0880030)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "1,399 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "345.6 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "160.0 GTexel/s", + "FP32 (float) performance": "5.120 TFLOPS", + "FP64 (double) performance": "640.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "TDP": "580 W", + "Suggested PSU": "950 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "4x 8-pin", + "Board Number": "C671" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Grenada GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-390x.c2663", + "web_page_access_date": "2022/08/21/, 16:15:00", + "Product Name": "AMD Radeon R9 390X", + "General Specs": { + "Graphics Processor": "Grenada", + "Cores": "2816", + "TMUs": "176", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Grenada", + "GPU Variant": "Grenada XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0880004)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "429 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "60 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "67.20 GPixel/s", + "Texture Rate": "184.8 GTexel/s", + "FP32 (float) performance": "5.914 TFLOPS", + "FP64 (double) performance": "739.2 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C671, C679-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Grenada GPU Notes": {}, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-a375.c2716", + "web_page_access_date": "2022/08/21/, 16:17:01", + "Product Name": "AMD Radeon R9 A375", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XTX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "2015", + "Generation": "All-In-One\n(Rx 300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-fury.c2736", + "web_page_access_date": "2022/08/21/, 16:19:01", + "Product Name": "AMD Radeon R9 FURY", + "General Specs": { + "Graphics Processor": "Fiji", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Fiji", + "GPU Variant": "Fiji PRO CB\n\t\t\t\t\t\t\t\t\t\t\n(215-0862046)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 10th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "38 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "224.0 GTexel/s", + "FP16 (half) performance": "7.168 TFLOPS (1:1)", + "FP32 (float) performance": "7.168 TFLOPS", + "FP64 (double) performance": "448.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "195 mm\n\t\t\t\t\t7.7 inches", + "Width": "115 mm\n\t\t\t\t\t4.5 inches", + "Height": "39 mm\n\t\t\t\t\t1.5 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 1.4a3x DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C88003" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Fiji GPU Notes": {}, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-fury-x.c2677", + "web_page_access_date": "2022/08/21/, 16:21:02", + "Product Name": "AMD Radeon R9 FURY X", + "General Specs": { + "Graphics Processor": "Fiji", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Fiji", + "GPU Variant": "Fiji XT C8\n\t\t\t\t\t\t\t\t\t\t\n(215-0862040)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 24th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "67.20 GPixel/s", + "Texture Rate": "268.8 GTexel/s", + "FP16 (half) performance": "8.602 TFLOPS (1:1)", + "FP32 (float) performance": "8.602 TFLOPS", + "FP64 (double) performance": "537.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "195 mm\n\t\t\t\t\t7.7 inches", + "Width": "115 mm\n\t\t\t\t\t4.5 inches", + "Height": "39 mm\n\t\t\t\t\t1.5 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 1.4a3x DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C880-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Fiji GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-fury-x2.c2741", + "web_page_access_date": "2022/08/21/, 16:23:03", + "Product Name": "AMD Radeon R9 FURY X2", + "General Specs": { + "Graphics Processor": "Fiji x2", + "Cores": "4096 x2", + "TMUs": "256 x2", + "ROPs": "64 x2", + "Memory Size": "4 GB x2", + "Memory Type": "HBM", + "Bus Width": "4096 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Fiji", + "GPU Variant": "Fiji XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "67.20 GPixel/s", + "Texture Rate": "268.8 GTexel/s", + "FP32 (float) performance": "8.602 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "1x HDMI 1.4a3x DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C883" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Fiji GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m270x.c2582", + "web_page_access_date": "2022/08/21/, 16:25:03", + "Product Name": "AMD Radeon R9 M270X", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 5th, 2015", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m280x.c2581", + "web_page_access_date": "2022/08/21/, 16:27:04", + "Product Name": "AMD Radeon R9 M280X", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 5th, 2015", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m280x.c2807", + "web_page_access_date": "2022/08/21/, 16:29:05", + "Product Name": "AMD Radeon R9 M280X", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 5th, 2015", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m360.c2688", + "web_page_access_date": "2022/08/21/, 16:31:05", + "Product Name": "AMD Radeon R9 M360", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "29.60 GTexel/s", + "FP32 (float) performance": "947.2 GFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m365x.c2761", + "web_page_access_date": "2022/08/21/, 16:33:06", + "Product Name": "AMD Radeon R9 M365X", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS", + "FP64 (double) performance": "74.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m370x-mac-edition.c2730", + "web_page_access_date": "2022/08/21/, 16:35:07", + "Product Name": "AMD Radeon R9 M370X Mac Edition", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP32 (float) performance": "1,024 GFLOPS", + "FP64 (double) performance": "64.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m375.c2690", + "web_page_access_date": "2022/08/21/, 16:37:07", + "Product Name": "AMD Radeon R9 M375", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XT2", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1015 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.24 GPixel/s", + "Texture Rate": "40.60 GTexel/s", + "FP32 (float) performance": "1,299 GFLOPS", + "FP64 (double) performance": "81.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tropo GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m375x.c2689", + "web_page_access_date": "2022/08/21/, 16:39:08", + "Product Name": "AMD Radeon R9 M375X", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XTX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "1015 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.24 GPixel/s", + "Texture Rate": "40.60 GTexel/s", + "FP32 (float) performance": "1,299 GFLOPS", + "FP64 (double) performance": "81.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m380.c2708", + "web_page_access_date": "2022/08/21/, 16:41:09", + "Product Name": "AMD Radeon R9 M380", + "General Specs": { + "Graphics Processor": "Strato", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Strato", + "GPU Variant": "Strato PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Strato GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m380-mac-edition.c3047", + "web_page_access_date": "2022/08/21/, 16:43:09", + "Product Name": "AMD Radeon R9 M380 Mac Edition", + "General Specs": { + "Graphics Processor": "Strato", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Strato", + "GPU Variant": "Strato PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1021 MHz", + "Memory Clock": "1568 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.3 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "100.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.34 GPixel/s", + "Texture Rate": "49.01 GTexel/s", + "FP32 (float) performance": "1.568 TFLOPS", + "FP64 (double) performance": "98.02 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Strato GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m385.c2709", + "web_page_access_date": "2022/08/21/, 16:45:10", + "Product Name": "AMD Radeon R9 M385", + "General Specs": { + "Graphics Processor": "Strato", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Strato", + "GPU Variant": "Strato XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "76.80 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Strato GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m385x.c2743", + "web_page_access_date": "2022/08/21/, 16:47:11", + "Product Name": "AMD Radeon R9 M385X", + "General Specs": { + "Graphics Processor": "Strato", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Strato", + "GPU Variant": "Strato XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "76.80 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Strato GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m390-mac-edition.c3769", + "web_page_access_date": "2022/08/21/, 16:49:11", + "Product Name": "AMD Radeon R9 M390 Mac Edition", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0828062)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "958 MHz", + "Memory Clock": "1365 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "174.7 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.66 GPixel/s", + "Texture Rate": "61.31 GTexel/s", + "FP32 (float) performance": "1.962 TFLOPS", + "FP64 (double) performance": "122.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m390x.c2732", + "web_page_access_date": "2022/08/21/, 16:51:12", + "Product Name": "AMD Radeon R9 M390X", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "723 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.14 GPixel/s", + "Texture Rate": "92.54 GTexel/s", + "FP16 (half) performance": "2.961 TFLOPS (1:1)", + "FP32 (float) performance": "2.961 TFLOPS", + "FP64 (double) performance": "185.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m395-mac-edition.c2960", + "web_page_access_date": "2022/08/21/, 16:53:13", + "Product Name": "AMD Radeon R9 M395 Mac Edition", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0872004)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "834 MHz", + "Memory Clock": "1365 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "174.7 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28" + }, + "Theoretical Performance": { + "Pixel Rate": "26.69 GPixel/s", + "Texture Rate": "93.41 GTexel/s", + "FP32 (float) performance": "2.989 TFLOPS", + "FP64 (double) performance": "373.6 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m395x.c3577", + "web_page_access_date": "2022/08/21/, 16:55:14", + "Product Name": "AMD Radeon R9 M395X", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "723 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.14 GPixel/s", + "Texture Rate": "92.54 GTexel/s", + "FP16 (half) performance": "2.961 TFLOPS (1:1)", + "FP32 (float) performance": "2.961 TFLOPS", + "FP64 (double) performance": "185.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m395x-mac-edition.c2809", + "web_page_access_date": "2022/08/21/, 16:57:14", + "Product Name": "AMD Radeon R9 M395X Mac Edition", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 5th, 2015", + "Generation": "Crystal System\n(R9 M300)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "909 MHz", + "Memory Clock": "1365 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "174.7 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.09 GPixel/s", + "Texture Rate": "116.4 GTexel/s", + "FP16 (half) performance": "3.723 TFLOPS (1:1)", + "FP32 (float) performance": "3.723 TFLOPS", + "FP64 (double) performance": "232.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-nano.c2735", + "web_page_access_date": "2022/08/21/, 16:59:15", + "Product Name": "AMD Radeon R9 Nano", + "General Specs": { + "Graphics Processor": "Fiji", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Fiji", + "GPU Variant": "Fiji XT CA\n\t\t\t\t\t\t\t\t\t\t\n(215-0862120)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 27th, 2015", + "Generation": "Pirate Islands\n(R9 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "256.0 GTexel/s", + "FP16 (half) performance": "8.192 TFLOPS (1:1)", + "FP32 (float) performance": "8.192 TFLOPS", + "FP64 (double) performance": "512.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "154 mm\n\t\t\t\t\t6.1 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 1.4a3x DisplayPort 1.2", + "Power Connectors": "1x 8-pin", + "Board Number": "C882-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Fiji GPU Notes": {}, + "Retail boards based on this design (11)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s7100x.c2860", + "web_page_access_date": "2022/08/21/, 17:01:16", + "Product Name": "AMD FirePro S7100X", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 25th, 2016", + "Generation": "FirePro Mobile\n(Sx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.20 GPixel/s", + "Texture Rate": "92.80 GTexel/s", + "FP16 (half) performance": "2.970 TFLOPS (1:1)", + "FP32 (float) performance": "2.970 TFLOPS", + "FP64 (double) performance": "185.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s7150.c2751", + "web_page_access_date": "2022/08/21/, 17:03:16", + "Product Name": "AMD FirePro S7150", + "General Specs": { + "Graphics Processor": "Tonga", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Tonga", + "GPU Variant": "Tonga XT GL", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2016", + "Generation": "FirePro\n(Sx100)", + "Production": "End-of-life", + "Launch Price": "2,399 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "920 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.44 GPixel/s", + "Texture Rate": "117.8 GTexel/s", + "FP16 (half) performance": "7.537 TFLOPS (2:1)", + "FP32 (float) performance": "3.768 TFLOPS", + "FP64 (double) performance": "235.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tonga GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s7150-x2.c2812", + "web_page_access_date": "2022/08/21/, 17:05:17", + "Product Name": "AMD FirePro S7150 x2", + "General Specs": { + "Graphics Processor": "Tonga x2", + "Cores": "1792 x2", + "TMUs": "112 x2", + "ROPs": "32 x2", + "Memory Size": "8 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tonga", + "GPU Variant": "Tonga PRO GL", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2016", + "Generation": "FirePro\n(Sx100)", + "Production": "End-of-life", + "Launch Price": "3,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.60 GPixel/s", + "Texture Rate": "117.6 GTexel/s", + "FP16 (half) performance": "3.763 TFLOPS (1:1)", + "FP32 (float) performance": "3.763 TFLOPS", + "FP64 (double) performance": "235.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "265 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C763" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tonga GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9300-x2.c2833", + "web_page_access_date": "2022/08/21/, 17:07:18", + "Product Name": "AMD FirePro S9300 X2", + "General Specs": { + "Graphics Processor": "Capsaicin x2", + "Cores": "4096 x2", + "TMUs": "256 x2", + "ROPs": "64 x2", + "Memory Size": "4 GB x2", + "Memory Type": "HBM", + "Bus Width": "4096 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Capsaicin", + "GPU Variant": "Capsaicin XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 31st, 2016", + "Generation": "FirePro\n(Sx300)", + "Production": "End-of-life", + "Launch Price": "5,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "975 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "62.40 GPixel/s", + "Texture Rate": "249.6 GTexel/s", + "FP32 (float) performance": "7.987 TFLOPS", + "FP64 (double) performance": "499.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "C993-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Capsaicin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-4-pro-gpu.c2876", + "web_page_access_date": "2022/08/21/, 17:09:18", + "Product Name": "AMD Playstation 4 Pro GPU", + "General Specs": { + "Graphics Processor": "Neo", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Neo", + "GPU Variant": "CXD90044GB", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "5,700 million", + "Die Size": "322 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2016", + "Generation": "Console GPU\n(Sony)", + "Production": "End-of-life", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "GPU Clock": "911 MHz", + "Memory Clock": "1700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.6 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36" + }, + "Theoretical Performance": { + "Pixel Rate": "29.15 GPixel/s", + "Texture Rate": "131.2 GTexel/s", + "FP16 (half) performance": "8.396 TFLOPS (2:1)", + "FP32 (float) performance": "4.198 TFLOPS" + }, + "Board Design": { + "Length": "327 mm\n\t\t\t\t\t12.9 inches", + "Width": "295 mm\n\t\t\t\t\t11.6 inches", + "Height": "55 mm\n\t\t\t\t\t2.2 inches", + "Weight": "3.3 kg (7.3 lbs)", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "6.0" + }, + "Neo GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-4-slim-gpu.c3758", + "web_page_access_date": "2022/08/21/, 17:11:19", + "Product Name": "AMD Playstation 4 Slim GPU", + "General Specs": { + "Graphics Processor": "Liverpool 16nm", + "Cores": "1152", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Liverpool 16nm", + "GPU Variant": "CXD90043GB", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "unknown", + "Die Size": "209 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 7th, 2016", + "Generation": "Console GPU\n(Sony)", + "Production": "End-of-life", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "32", + "Compute Units": "18" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "1.843 TFLOPS (1:1)", + "FP32 (float) performance": "1.843 TFLOPS" + }, + "Board Design": { + "Length": "288 mm\n\t\t\t\t\t11.3 inches", + "Width": "265 mm\n\t\t\t\t\t10.4 inches", + "Height": "39 mm\n\t\t\t\t\t1.5 inches", + "Weight": "2.1 kg (4.6 lbs)", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1*", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "5.1" + }, + "Liverpool 16nm GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9260-mxm.c2883", + "web_page_access_date": "2022/08/21/, 17:13:20", + "Product Name": "AMD Radeon E9260 MXM", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 27th, 2016", + "Generation": "Embedded\n(9000)", + "Production": "Active", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.20 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "2.150 TFLOPS (1:1)", + "FP32 (float) performance": "2.150 TFLOPS", + "FP64 (double) performance": "134.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9260-pcie.c2884", + "web_page_access_date": "2022/08/21/, 17:15:21", + "Product Name": "AMD Radeon E9260 PCIe", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 27th, 2016", + "Generation": "Embedded\n(9000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.20 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "2.150 TFLOPS (1:1)", + "FP32 (float) performance": "2.150 TFLOPS", + "FP64 (double) performance": "134.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9550-mxm.c2882", + "web_page_access_date": "2022/08/21/, 17:17:21", + "Product Name": "AMD Radeon E9550 MXM", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 27th, 2016", + "Generation": "Embedded\n(9000)", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1266 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.51 GPixel/s", + "Texture Rate": "182.3 GTexel/s", + "FP16 (half) performance": "5.834 TFLOPS (1:1)", + "FP32 (float) performance": "5.834 TFLOPS", + "FP64 (double) performance": "364.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "95 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi6.c2927", + "web_page_access_date": "2022/08/21/, 17:19:22", + "Product Name": "AMD Radeon Instinct MI6", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 12th, 2016", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1233 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.46 GPixel/s", + "Texture Rate": "177.6 GTexel/s", + "FP16 (half) performance": "5.682 TFLOPS (1:1)", + "FP32 (float) performance": "5.682 TFLOPS", + "FP64 (double) performance": "355.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "D122" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi8.c2928", + "web_page_access_date": "2022/08/21/, 17:21:23", + "Product Name": "AMD Radeon Instinct MI8", + "General Specs": { + "Graphics Processor": "Fiji", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Fiji", + "GPU Variant": "Fiji XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 12th, 2016", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "256.0 GTexel/s", + "FP16 (half) performance": "8.192 TFLOPS (1:1)", + "FP32 (float) performance": "8.192 TFLOPS", + "FP64 (double) performance": "512.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "152 mm\n\t\t\t\t\t6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Fiji GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-450.c2899", + "web_page_access_date": "2022/08/21/, 17:23:23", + "Product Name": "AMD Radeon Pro 450", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin LE", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 30th, 2016", + "Generation": "Radeon Pro Mac\n(400 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "81.28 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP16 (half) performance": "1,024 GFLOPS (1:1)", + "FP32 (float) performance": "1,024 GFLOPS", + "FP64 (double) performance": "64.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-455.c2898", + "web_page_access_date": "2022/08/21/, 17:25:24", + "Product Name": "AMD Radeon Pro 455", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 30th, 2016", + "Generation": "Radeon Pro Mac\n(400 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "855 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "81.28 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.68 GPixel/s", + "Texture Rate": "41.04 GTexel/s", + "FP16 (half) performance": "1,313 GFLOPS (1:1)", + "FP32 (float) performance": "1,313 GFLOPS", + "FP64 (double) performance": "82.08 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-460.c2897", + "web_page_access_date": "2022/08/21/, 17:27:25", + "Product Name": "AMD Radeon Pro 460", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 30th, 2016", + "Generation": "Radeon Pro Mac\n(400 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "907 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "81.28 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.51 GPixel/s", + "Texture Rate": "58.05 GTexel/s", + "FP16 (half) performance": "1.858 TFLOPS (1:1)", + "FP32 (float) performance": "1.858 TFLOPS", + "FP64 (double) performance": "116.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-duo.c2828", + "web_page_access_date": "2022/08/21/, 17:29:26", + "Product Name": "AMD Radeon Pro Duo", + "General Specs": { + "Graphics Processor": "Capsaicin x2", + "Cores": "4096 x2", + "TMUs": "256 x2", + "ROPs": "64 x2", + "Memory Size": "4 GB x2", + "Memory Type": "HBM", + "Bus Width": "4096 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Capsaicin", + "GPU Variant": "Capsaicin XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,900 million", + "Die Size": "596 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 26th, 2016", + "Generation": "Radeon Pro\n(Fiji)", + "Production": "End-of-life", + "Launch Price": "1,499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM", + "Memory Bus": "4096 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "256.0 GTexel/s", + "FP16 (half) performance": "8.192 TFLOPS (1:1)", + "FP32 (float) performance": "8.192 TFLOPS", + "FP64 (double) performance": "512.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "277 mm\n\t\t\t\t\t10.9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 1.4a3x DisplayPort 1.2", + "Power Connectors": "3x 8-pin", + "Board Number": "C888-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Capsaicin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v5300x.c3057", + "web_page_access_date": "2022/08/21/, 17:31:26", + "Product Name": "AMD Radeon Pro V5300X", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Radeon Pro\n(Vx300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1125 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.22 GPixel/s", + "Texture Rate": "76.86 GTexel/s", + "FP32 (float) performance": "2.460 TFLOPS", + "FP64 (double) performance": "153.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v7300x.c3058", + "web_page_access_date": "2022/08/21/, 17:33:27", + "Product Name": "AMD Radeon Pro V7300X", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Radeon Pro\n(Vx300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1188 MHz", + "Boost Clock": "1243 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v7350x2.c3059", + "web_page_access_date": "2022/08/21/, 17:35:28", + "Product Name": "AMD Radeon Pro V7350X2", + "General Specs": { + "Graphics Processor": "Ellesmere x2", + "Cores": "2304 x2", + "TMUs": "144 x2", + "ROPs": "32 x2", + "Memory Size": "16 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Radeon Pro\n(Vx300)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1188 MHz", + "Boost Clock": "1243 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D087-37" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-4100.c2874", + "web_page_access_date": "2022/08/21/, 17:37:28", + "Product Name": "AMD Radeon Pro WX 4100", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2016", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1125 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.22 GPixel/s", + "Texture Rate": "76.86 GTexel/s", + "FP16 (half) performance": "2.460 TFLOPS (1:1)", + "FP32 (float) performance": "2.460 TFLOPS", + "FP64 (double) performance": "153.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D015" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-5100.c2873", + "web_page_access_date": "2022/08/21/, 17:39:29", + "Product Name": "AMD Radeon Pro WX 5100", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 PRO GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0876144)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 18th, 2016", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "Active", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "713 MHz", + "Boost Clock": "1086 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.75 GPixel/s", + "Texture Rate": "121.6 GTexel/s", + "FP16 (half) performance": "3.892 TFLOPS (1:1)", + "FP32 (float) performance": "3.892 TFLOPS", + "FP64 (double) performance": "243.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "173 mm\n\t\t\t\t\t6.8 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C954" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-7100.c2872", + "web_page_access_date": "2022/08/21/, 17:41:30", + "Product Name": "AMD Radeon Pro WX 7100", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 XT GL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2016", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "Active", + "Launch Price": "799 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1188 MHz", + "Boost Clock": "1243 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP16 (half) performance": "5.728 TFLOPS (1:1)", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C954" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r2-mobile-graphics.c3216", + "web_page_access_date": "2022/08/21/, 17:43:31", + "Product Name": "AMD Radeon R2 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Stoney", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Stoney", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2016", + "Generation": "Stoney Ridge\n(Rx 400 Mobile)", + "Predecessor": "Carrizo", + "Successor": "Raven Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP16 (half) performance": "153.6 GFLOPS (1:1)", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Stoney GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r3-mobile-graphics.c3217", + "web_page_access_date": "2022/08/21/, 17:45:31", + "Product Name": "AMD Radeon R3 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Stoney", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Stoney", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2016", + "Generation": "Stoney Ridge\n(Rx 400 Mobile)", + "Predecessor": "Carrizo", + "Successor": "Raven Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "655 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.620 GPixel/s", + "Texture Rate": "5.240 GTexel/s", + "FP16 (half) performance": "167.7 GFLOPS (1:1)", + "FP32 (float) performance": "167.7 GFLOPS", + "FP64 (double) performance": "10.48 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Stoney GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r4-mobile-graphics.c3218", + "web_page_access_date": "2022/08/21/, 17:47:32", + "Product Name": "AMD Radeon R4 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Stoney", + "Cores": "192", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Stoney", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2016", + "Generation": "Stoney Ridge\n(Rx 400 Mobile)", + "Predecessor": "Carrizo", + "Successor": "Raven Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "655 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "8", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "5.240 GPixel/s", + "Texture Rate": "7.860 GTexel/s", + "FP16 (half) performance": "251.5 GFLOPS (1:1)", + "FP32 (float) performance": "251.5 GFLOPS", + "FP64 (double) performance": "15.72 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Stoney GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-430-oem.c2893", + "web_page_access_date": "2022/08/21/, 17:49:33", + "Product Name": "AMD Radeon R5 430 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(R5 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C869-57" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-435-oem.c2894", + "web_page_access_date": "2022/08/21/, 17:51:33", + "Product Name": "AMD Radeon R5 435 OEM", + "General Specs": { + "Graphics Processor": "Hainan", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Hainan", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(R5 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Hainan GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m420.c2859", + "web_page_access_date": "2022/08/21/, 17:53:34", + "Product Name": "AMD Radeon R5 M420", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.800 GPixel/s", + "Texture Rate": "17.00 GTexel/s", + "FP32 (float) performance": "544.0 GFLOPS", + "FP64 (double) performance": "34.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m430.c2834", + "web_page_access_date": "2022/08/21/, 17:55:35", + "Product Name": "AMD Radeon R5 M430", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m430.c2945", + "web_page_access_date": "2022/08/21/, 17:57:36", + "Product Name": "AMD Radeon R5 M430", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "18.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m430.c2846", + "web_page_access_date": "2022/08/21/, 17:59:36", + "Product Name": "AMD Radeon R5 M430", + "General Specs": { + "Graphics Processor": "Exo", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Exo", + "GPU Variant": "Exo PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.0" + }, + "Exo GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m435.c2850", + "web_page_access_date": "2022/08/21/, 18:01:37", + "Product Name": "AMD Radeon R5 M435", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m445.c2750", + "web_page_access_date": "2022/08/21/, 18:03:38", + "Product Name": "AMD Radeon R5 M445", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "920 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.360 GPixel/s", + "Texture Rate": "22.08 GTexel/s", + "FP32 (float) performance": "706.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m465.c2749", + "web_page_access_date": "2022/08/21/, 18:05:38", + "Product Name": "AMD Radeon R5 M465", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "Crystal System\n(R5 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1015 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.120 GPixel/s", + "Texture Rate": "24.36 GTexel/s", + "FP32 (float) performance": "779.5 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Card Notes": {}, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-mobile-graphics.c3215", + "web_page_access_date": "2022/08/21/, 18:07:39", + "Product Name": "AMD Radeon R5 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Stoney", + "Cores": "192", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Stoney", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2016", + "Generation": "Stoney Ridge\n(Rx 400 Mobile)", + "Predecessor": "Carrizo", + "Successor": "Raven Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "847 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "8", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "6.776 GPixel/s", + "Texture Rate": "10.16 GTexel/s", + "FP16 (half) performance": "325.2 GFLOPS (1:1)", + "FP32 (float) performance": "325.2 GFLOPS", + "FP64 (double) performance": "20.33 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Stoney GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-m435dx.c2943", + "web_page_access_date": "2022/08/21/, 18:09:40", + "Product Name": "AMD Radeon R6 M435DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 12th, 2016", + "Generation": "Crystal System\n(Rx M400)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "24.72 GTexel/s", + "FP32 (float) performance": "791.0 GFLOPS", + "FP64 (double) performance": "49.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-350.c3135", + "web_page_access_date": "2022/08/21/, 18:11:40", + "Product Name": "AMD Radeon R7 350", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO MOCHA", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 6th, 2016", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "25.60 GTexel/s", + "FP32 (float) performance": "819.2 GFLOPS", + "FP64 (double) performance": "51.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-430-oem.c2892", + "web_page_access_date": "2022/08/21/, 18:13:46", + "Product Name": "AMD Radeon R7 430 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(R7 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-435-oem.c2891", + "web_page_access_date": "2022/08/21/, 18:15:47", + "Product Name": "AMD Radeon R7 435 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(R7 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "920 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.360 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP32 (float) performance": "588.8 GFLOPS", + "FP64 (double) performance": "36.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-450-oem.c2890", + "web_page_access_date": "2022/08/21/, 18:17:47", + "Product Name": "AMD Radeon R7 450 OEM", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(R7 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "29.60 GTexel/s", + "FP32 (float) performance": "947.2 GFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "C750 C906" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m440.c2851", + "web_page_access_date": "2022/08/21/, 18:19:48", + "Product Name": "AMD Radeon R7 M440", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "891 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.128 GPixel/s", + "Texture Rate": "17.82 GTexel/s", + "FP16 (half) performance": "570.2 GFLOPS (1:1)", + "FP32 (float) performance": "570.2 GFLOPS", + "FP64 (double) performance": "35.64 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m445.c2852", + "web_page_access_date": "2022/08/21/, 18:21:49", + "Product Name": "AMD Radeon R7 M445", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "920 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.360 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP16 (half) performance": "588.8 GFLOPS (1:1)", + "FP32 (float) performance": "588.8 GFLOPS", + "FP64 (double) performance": "36.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m460.c2853", + "web_page_access_date": "2022/08/21/, 18:23:49", + "Product Name": "AMD Radeon R7 M460", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP16 (half) performance": "864.0 GFLOPS (1:1)", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m465.c2854", + "web_page_access_date": "2022/08/21/, 18:25:50", + "Product Name": "AMD Radeon R7 M465", + "General Specs": { + "Graphics Processor": "Litho", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Litho", + "GPU Variant": "Litho XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "960 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.680 GPixel/s", + "Texture Rate": "23.04 GTexel/s", + "FP32 (float) performance": "737.3 GFLOPS", + "FP64 (double) performance": "46.08 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Litho GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m465.c3211", + "web_page_access_date": "2022/08/21/, 18:27:51", + "Product Name": "AMD Radeon R7 M465", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP16 (half) performance": "864.0 GFLOPS (1:1)", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m465x.c2855", + "web_page_access_date": "2022/08/21/, 18:29:52", + "Product Name": "AMD Radeon R7 M465X", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R7 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "29.60 GTexel/s", + "FP32 (float) performance": "947.2 GFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r8-m435dx.c2944", + "web_page_access_date": "2022/08/21/, 18:31:53", + "Product Name": "AMD Radeon R8 M435DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 12th, 2016", + "Generation": "Crystal System\n(Rx M400)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "24.72 GTexel/s", + "FP32 (float) performance": "791.0 GFLOPS", + "FP64 (double) performance": "49.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r8-m445dx.c3128", + "web_page_access_date": "2022/08/21/, 18:33:53", + "Product Name": "AMD Radeon R8 M445DX", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(Rx M400)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1021 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.168 GPixel/s", + "Texture Rate": "20.42 GTexel/s", + "FP16 (half) performance": "653.4 GFLOPS (1:1)", + "FP32 (float) performance": "653.4 GFLOPS", + "FP64 (double) performance": "40.84 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m470.c2856", + "web_page_access_date": "2022/08/21/, 18:41:03", + "Product Name": "AMD Radeon R9 M470", + "General Specs": { + "Graphics Processor": "Emerald", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Emerald", + "GPU Variant": "Emerald PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R9 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Emerald GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m470x.c2857", + "web_page_access_date": "2022/08/21/, 18:43:04", + "Product Name": "AMD Radeon R9 M470X", + "General Specs": { + "Graphics Processor": "Emerald", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Emerald", + "GPU Variant": "Emerald XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R9 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Emerald GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m485x.c2858", + "web_page_access_date": "2022/08/21/, 18:45:04", + "Product Name": "AMD Radeon R9 M485X", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2016", + "Generation": "Crystal System\n(R9 M400)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "723 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.14 GPixel/s", + "Texture Rate": "92.54 GTexel/s", + "FP16 (half) performance": "2.961 TFLOPS (1:1)", + "FP32 (float) performance": "2.961 TFLOPS", + "FP64 (double) performance": "185.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-455-oem.c2889", + "web_page_access_date": "2022/08/21/, 18:47:05", + "Product Name": "AMD Radeon RX 455 OEM", + "General Specs": { + "Graphics Processor": "Tobago", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tobago", + "GPU Variant": "Tobago PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0875010)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 30th, 2016", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "104.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "1.613 TFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582, C936" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tobago GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-460.c2849", + "web_page_access_date": "2022/08/21/, 18:49:06", + "Product Name": "AMD Radeon RX 460", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 8th, 2016", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.20 GPixel/s", + "Texture Rate": "67.20 GTexel/s", + "FP16 (half) performance": "2.150 TFLOPS (1:1)", + "FP32 (float) performance": "2.150 TFLOPS", + "FP64 (double) performance": "134.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {}, + "Retail boards based on this design (42)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-460-mobile.c3072", + "web_page_access_date": "2022/08/21/, 18:51:07", + "Product Name": "AMD Radeon RX 460 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 8th, 2016", + "Generation": "Mobility Radeon\n(RX M400)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1180 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.88 GPixel/s", + "Texture Rate": "66.08 GTexel/s", + "FP16 (half) performance": "2.115 TFLOPS (1:1)", + "FP32 (float) performance": "2.115 TFLOPS", + "FP64 (double) performance": "132.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-470.c2861", + "web_page_access_date": "2022/08/21/, 18:53:07", + "Product Name": "AMD Radeon RX 470", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0876204)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 4th, 2016", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "Active", + "Launch Price": "179 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "926 MHz", + "Boost Clock": "1206 MHz", + "Memory Clock": "1650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "211.2 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.59 GPixel/s", + "Texture Rate": "154.4 GTexel/s", + "FP16 (half) performance": "4.940 TFLOPS (1:1)", + "FP32 (float) performance": "4.940 TFLOPS", + "FP64 (double) performance": "308.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "240 mm\n\t\t\t\t\t9.4 inches", + "Width": "95 mm\n\t\t\t\t\t3.7 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C940, D000-03, D009-07" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (49)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-470-mobile.c3070", + "web_page_access_date": "2022/08/21/, 18:55:08", + "Product Name": "AMD Radeon RX 470 Mobile", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 4th, 2016", + "Generation": "Mobility Radeon\n(RX M400)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "926 MHz", + "Boost Clock": "1074 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.37 GPixel/s", + "Texture Rate": "137.5 GTexel/s", + "FP16 (half) performance": "4.399 TFLOPS (1:1)", + "FP32 (float) performance": "4.399 TFLOPS", + "FP64 (double) performance": "274.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-470d.c2896", + "web_page_access_date": "2022/08/21/, 18:57:09", + "Product Name": "AMD Radeon RX 470D", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 PROD", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 21st, 2016", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "926 MHz", + "Boost Clock": "1206 MHz", + "Memory Clock": "1650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "211.2 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.59 GPixel/s", + "Texture Rate": "135.1 GTexel/s", + "FP16 (half) performance": "4.322 TFLOPS (1:1)", + "FP32 (float) performance": "4.322 TFLOPS", + "FP64 (double) performance": "270.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "D000-03" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-480.c2848", + "web_page_access_date": "2022/08/21/, 18:59:10", + "Product Name": "AMD Radeon RX 480", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0876184)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 29th, 2016", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "Active", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "86 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1266 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.51 GPixel/s", + "Texture Rate": "182.3 GTexel/s", + "FP16 (half) performance": "5.834 TFLOPS (1:1)", + "FP32 (float) performance": "5.834 TFLOPS", + "FP64 (double) performance": "364.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "240 mm\n\t\t\t\t\t9.4 inches", + "Width": "95 mm\n\t\t\t\t\t3.7 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C940, D009-47" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (69)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-480-mobile.c3073", + "web_page_access_date": "2022/08/21/, 19:01:11", + "Product Name": "AMD Radeon RX 480 Mobile", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 4th, 2016", + "Generation": "Mobility Radeon\n(RX M400)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1077 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.46 GPixel/s", + "Texture Rate": "155.1 GTexel/s", + "FP16 (half) performance": "4.963 TFLOPS (1:1)", + "FP32 (float) performance": "4.963 TFLOPS", + "FP64 (double) performance": "310.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580-oem.c3112", + "web_page_access_date": "2022/08/21/, 19:03:11", + "Product Name": "AMD Radeon RX 580 OEM", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0876184)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 29th, 2016", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "52 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1266 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.51 GPixel/s", + "Texture Rate": "182.3 GTexel/s", + "FP16 (half) performance": "5.834 TFLOPS (1:1)", + "FP32 (float) performance": "5.834 TFLOPS", + "FP64 (double) performance": "364.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C940, D009-04" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xbox-one-s-gpu.c2866", + "web_page_access_date": "2022/08/21/, 19:05:12", + "Product Name": "AMD Xbox One S GPU", + "General Specs": { + "Graphics Processor": "Durango 2", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Durango 2", + "GPU Variant": "M1004145-001", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "5,000 million", + "Die Size": "240 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 2nd, 2016", + "Generation": "Console GPU\n(Microsoft)", + "Production": "End-of-life", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "GPU Clock": "914 MHz", + "Memory Clock": "1066 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.1 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Memory Bus": "256 bit", + "Bandwidth": "68.22 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "14.62 GPixel/s", + "Texture Rate": "43.87 GTexel/s", + "FP32 (float) performance": "1,404 GFLOPS" + }, + "Board Design": { + "Length": "295 mm\n\t\t\t\t\t11.6 inches", + "Width": "230 mm\n\t\t\t\t\t9.1 inches", + "Height": "64 mm\n\t\t\t\t\t2.5 inches", + "Weight": "2.9 kg (6.4 lbs)", + "TDP": "95 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "5.1" + }, + "Durango 2 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-520-mobile.c3003", + "web_page_access_date": "2022/08/21/, 19:07:13", + "Product Name": "AMD Radeon 520 Mobile", + "General Specs": { + "Graphics Processor": "Banks", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Banks", + "GPU Variant": "Banks PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Banks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-520-mobile.c3236", + "web_page_access_date": "2022/08/21/, 19:09:13", + "Product Name": "AMD Radeon 520 Mobile", + "General Specs": { + "Graphics Processor": "Banks", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Banks", + "GPU Variant": "Banks PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Banks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-530-mobile.c3002", + "web_page_access_date": "2022/08/21/, 19:11:14", + "Product Name": "AMD Radeon 530 Mobile", + "General Specs": { + "Graphics Processor": "Weston", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Weston", + "GPU Variant": "Weston PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "1024 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.192 GPixel/s", + "Texture Rate": "24.58 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (1:1)", + "FP32 (float) performance": "786.4 GFLOPS", + "FP64 (double) performance": "49.15 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Weston GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-530x-mobile.c3108", + "web_page_access_date": "2022/08/21/, 19:13:15", + "Product Name": "AMD Radeon 530X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 24", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 24", + "GPU Variant": "Polaris 24 XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(M500X)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "1024 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.192 GPixel/s", + "Texture Rate": "24.58 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (1:1)", + "FP32 (float) performance": "786.4 GFLOPS", + "FP64 (double) performance": "49.15 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Polaris 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-535-mobile.c3209", + "web_page_access_date": "2022/08/21/, 19:15:15", + "Product Name": "AMD Radeon 535 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 24", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 24", + "GPU Variant": "Polaris 24 XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "1024 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.192 GPixel/s", + "Texture Rate": "24.58 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (1:1)", + "FP32 (float) performance": "786.4 GFLOPS", + "FP64 (double) performance": "49.15 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Polaris 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-550.c3407", + "web_page_access_date": "2022/08/21/, 19:17:16", + "Product Name": "AMD Radeon 550", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 20th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1183 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "56.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.93 GPixel/s", + "Texture Rate": "37.86 GTexel/s", + "FP16 (half) performance": "1,211 GFLOPS (1:1)", + "FP32 (float) performance": "1,211 GFLOPS", + "FP64 (double) performance": "75.71 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090-01" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9171-mcm.c3028", + "web_page_access_date": "2022/08/21/, 19:19:17", + "Product Name": "AMD Radeon E9171 MCM", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa MCM Pro", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 3rd, 2017", + "Generation": "Embedded\n(9000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "40 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9172-mxm.c3029", + "web_page_access_date": "2022/08/21/, 19:21:18", + "Product Name": "AMD Radeon E9172 MXM", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "E9170", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 3rd, 2017", + "Generation": "Embedded\n(9000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9173-pcie.c3031", + "web_page_access_date": "2022/08/21/, 19:23:18", + "Product Name": "AMD Radeon E9173 PCIe", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "E9170", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 3rd, 2017", + "Generation": "Embedded\n(9000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "35 W", + "Outputs": "1x DisplayPort 1.4a2x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Part Number": "102-D09126", + "Board Number": "109-D09187" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9174-mxm.c3030", + "web_page_access_date": "2022/08/21/, 19:25:19", + "Product Name": "AMD Radeon E9174 MXM", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "E9170", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 3rd, 2017", + "Generation": "Embedded\n(9000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9175-pcie.c3032", + "web_page_access_date": "2022/08/21/, 19:27:20", + "Product Name": "AMD Radeon E9175 PCIe", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "E9170", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 3rd, 2017", + "Generation": "Embedded\n(9000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Outputs": "5x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi25.c2983", + "web_page_access_date": "2022/08/21/, 19:29:21", + "Product Name": "AMD Radeon Instinct MI25", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894124)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 27th, 2017", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1400 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "852 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1704 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "436.2 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "384.0 GTexel/s", + "FP16 (half) performance": "24.58 TFLOPS (2:1)", + "FP32 (float) performance": "12.29 TFLOPS", + "FP64 (double) performance": "768.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "D051" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-555.c2972", + "web_page_access_date": "2022/08/21/, 19:31:21", + "Product Name": "AMD Radeon Pro 555", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 5th, 2017", + "Generation": "Radeon Pro Mac\n(500 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1275 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "81.60 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.60 GPixel/s", + "Texture Rate": "40.80 GTexel/s", + "FP16 (half) performance": "1,306 GFLOPS (1:1)", + "FP32 (float) performance": "1,306 GFLOPS", + "FP64 (double) performance": "81.60 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-560.c2971", + "web_page_access_date": "2022/08/21/, 19:33:22", + "Product Name": "AMD Radeon Pro 560", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0908004)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Radeon Pro Mac\n(500 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "907 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "81.28 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.51 GPixel/s", + "Texture Rate": "58.05 GTexel/s", + "FP16 (half) performance": "1.858 TFLOPS (1:1)", + "FP32 (float) performance": "1.858 TFLOPS", + "FP64 (double) performance": "116.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-570.c2970", + "web_page_access_date": "2022/08/21/, 19:35:23", + "Product Name": "AMD Radeon Pro 570", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 5th, 2017", + "Generation": "Radeon Pro Mac\n(500 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1105 MHz", + "Memory Clock": "1695 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "35.36 GPixel/s", + "Texture Rate": "123.8 GTexel/s", + "FP16 (half) performance": "3.960 TFLOPS (1:1)", + "FP32 (float) performance": "3.960 TFLOPS", + "FP64 (double) performance": "247.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-575.c2969", + "web_page_access_date": "2022/08/21/, 19:37:24", + "Product Name": "AMD Radeon Pro 575", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 5th, 2017", + "Generation": "Radeon Pro Mac\n(500 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1096 MHz", + "Memory Clock": "1695 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "35.07 GPixel/s", + "Texture Rate": "140.3 GTexel/s", + "FP16 (half) performance": "4.489 TFLOPS (1:1)", + "FP32 (float) performance": "4.489 TFLOPS", + "FP64 (double) performance": "280.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-580.c2968", + "web_page_access_date": "2022/08/21/, 19:39:24", + "Product Name": "AMD Radeon Pro 580", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XTA\n\t\t\t\t\t\t\t\t\t\t\n(216-0886220)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 5th, 2017", + "Generation": "Radeon Pro Mac\n(500 Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1695 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.40 GPixel/s", + "Texture Rate": "172.8 GTexel/s", + "FP16 (half) performance": "5.530 TFLOPS (1:1)", + "FP32 (float) performance": "5.530 TFLOPS", + "FP64 (double) performance": "345.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "185 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-duo-polaris.c2953", + "web_page_access_date": "2022/08/21/, 19:41:25", + "Product Name": "AMD Radeon Pro Duo Polaris", + "General Specs": { + "Graphics Processor": "Ellesmere x2", + "Cores": "2304 x2", + "TMUs": "144 x2", + "ROPs": "32 x2", + "Memory Size": "16 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere Gemini GL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2017", + "Generation": "Radeon Pro\n(Polaris)", + "Production": "Active", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1243 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP16 (half) performance": "5.728 TFLOPS (1:1)", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D086" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-ssg.c2998", + "web_page_access_date": "2022/08/21/, 19:43:26", + "Product Name": "AMD Radeon Pro SSG", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894124)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 8th, 2017", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Launch Price": "6,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1440 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "384.0 GTexel/s", + "FP16 (half) performance": "24.58 TFLOPS (2:1)", + "FP32 (float) performance": "12.29 TFLOPS", + "FP64 (double) performance": "768.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v320.c3270", + "web_page_access_date": "2022/08/21/, 19:45:26", + "Product Name": "AMD Radeon Pro V320", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894216)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 29th, 2017", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "852 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "256.0 GTexel/s", + "FP16 (half) performance": "16.38 TFLOPS (2:1)", + "FP32 (float) performance": "8.192 TFLOPS", + "FP64 (double) performance": "512.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-56.c3099", + "web_page_access_date": "2022/08/21/, 19:47:27", + "Product Name": "AMD Radeon Pro Vega 56", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894216)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 14th, 2017", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1138 MHz", + "Boost Clock": "1250 MHz", + "Memory Clock": "786 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1572 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "402.4 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "80.00 GPixel/s", + "Texture Rate": "280.0 GTexel/s", + "FP16 (half) performance": "17.92 TFLOPS (2:1)", + "FP32 (float) performance": "8.960 TFLOPS", + "FP64 (double) performance": "560.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "210 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-64.c3098", + "web_page_access_date": "2022/08/21/, 19:49:28", + "Product Name": "AMD Radeon Pro Vega 64", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 27th, 2017", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1250 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "786 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1572 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "402.4 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "86.40 GPixel/s", + "Texture Rate": "345.6 GTexel/s", + "FP16 (half) performance": "22.12 TFLOPS (2:1)", + "FP32 (float) performance": "11.06 TFLOPS", + "FP64 (double) performance": "691.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-2100.c2979", + "web_page_access_date": "2022/08/21/, 19:51:29", + "Product Name": "AMD Radeon Pro WX 2100", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO GL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 4th, 2017", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DisplayPort 1.4a2x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D091" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-3100.c2978", + "web_page_access_date": "2022/08/21/, 19:53:30", + "Product Name": "AMD Radeon Pro WX 3100", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 12th, 2017", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DisplayPort 1.4a2x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D091" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-4130-mobile.c3093", + "web_page_access_date": "2022/08/21/, 19:55:31", + "Product Name": "AMD Radeon Pro WX 4130 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin LE", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2017", + "Generation": "Radeon Pro Mobile\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1002 MHz", + "Boost Clock": "1053 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.85 GPixel/s", + "Texture Rate": "42.12 GTexel/s", + "FP16 (half) performance": "1,348 GFLOPS (1:1)", + "FP32 (float) performance": "1,348 GFLOPS", + "FP64 (double) performance": "84.24 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-4150-mobile.c3092", + "web_page_access_date": "2022/08/21/, 19:57:32", + "Product Name": "AMD Radeon Pro WX 4150 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2017", + "Generation": "Radeon Pro Mobile\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1002 MHz", + "Boost Clock": "1053 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.85 GPixel/s", + "Texture Rate": "58.97 GTexel/s", + "FP16 (half) performance": "1.887 TFLOPS (1:1)", + "FP32 (float) performance": "1.887 TFLOPS", + "FP64 (double) performance": "117.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-4170-mobile.c3094", + "web_page_access_date": "2022/08/21/, 19:59:33", + "Product Name": "AMD Radeon Pro WX 4170 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2017", + "Generation": "Radeon Pro Mobile\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1002 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.22 GPixel/s", + "Texture Rate": "76.86 GTexel/s", + "FP16 (half) performance": "2.460 TFLOPS (1:1)", + "FP32 (float) performance": "2.460 TFLOPS", + "FP64 (double) performance": "153.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-7100-mobile.c3091", + "web_page_access_date": "2022/08/21/, 20:01:34", + "Product Name": "AMD Radeon Pro WX 7100 Mobile", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2017", + "Generation": "Radeon Pro Mobile\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1188 MHz", + "Boost Clock": "1243 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "Length": "25 mm\n\t\t\t\t\t1 inches", + "TDP": "130 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-7130-mobile.c3457", + "web_page_access_date": "2022/08/21/, 20:03:35", + "Product Name": "AMD Radeon Pro WX 7130 Mobile", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2017", + "Generation": "Radeon Pro Mobile\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1188 MHz", + "Boost Clock": "1243 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.78 GPixel/s", + "Texture Rate": "179.0 GTexel/s", + "FP32 (float) performance": "5.728 TFLOPS", + "FP64 (double) performance": "358.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "Length": "25 mm\n\t\t\t\t\t1 inches", + "TDP": "130 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-8100.c3271", + "web_page_access_date": "2022/08/21/, 20:05:35", + "Product Name": "AMD Radeon Pro WX 8100", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894216)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 3rd, 2017", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "336.0 GTexel/s", + "FP16 (half) performance": "21.50 TFLOPS (2:1)", + "FP32 (float) performance": "10.75 TFLOPS", + "FP64 (double) performance": "672.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "6x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D051" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-9100.c2989", + "web_page_access_date": "2022/08/21/, 20:08:19", + "Product Name": "AMD Radeon Pro WX 9100", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 10th, 2017", + "Generation": "Radeon Pro\n(WX x100)", + "Production": "Active", + "Launch Price": "1,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "384.0 GTexel/s", + "FP16 (half) performance": "24.58 TFLOPS (2:1)", + "FP32 (float) performance": "12.29 TFLOPS", + "FP64 (double) performance": "768.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "6x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D051" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-graphics.c3241", + "web_page_access_date": "2022/08/21/, 20:10:20", + "Product Name": "AMD Radeon R5 Graphics", + "General Specs": { + "Graphics Processor": "Wani", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wani", + "Architecture": "GCN 3.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "1,200 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2017", + "Generation": "Bristol Ridge\n(Rx 300)", + "Predecessor": "Kaveri", + "Successor": "Stoney Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP16 (half) performance": "691.2 GFLOPS (1:1)", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "345.6 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Wani GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r8-m535dx.c3210", + "web_page_access_date": "2022/08/21/, 20:12:21", + "Product Name": "AMD Radeon R8 M535DX", + "General Specs": { + "Graphics Processor": "Meso", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Meso", + "GPU Variant": "Meso PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Crystal System\n(Rx M500)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "891 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.128 GPixel/s", + "Texture Rate": "17.82 GTexel/s", + "FP16 (half) performance": "570.2 GFLOPS (1:1)", + "FP32 (float) performance": "570.2 GFLOPS", + "FP64 (double) performance": "35.64 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Meso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-460-1024sp.c2918", + "web_page_access_date": "2022/08/21/, 20:14:21", + "Product Name": "AMD Radeon RX 460 1024SP", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 17th, 2017", + "Generation": "Arctic Islands\n(RX 400)", + "Predecessor": "Pirate Islands", + "Successor": "Polaris", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.20 GPixel/s", + "Texture Rate": "76.80 GTexel/s", + "FP16 (half) performance": "2.458 TFLOPS (1:1)", + "FP32 (float) performance": "2.458 TFLOPS", + "FP64 (double) performance": "153.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-540-mobile.c3048", + "web_page_access_date": "2022/08/21/, 20:16:23", + "Product Name": "AMD Radeon RX 540 Mobile", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 11th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1219 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.50 GPixel/s", + "Texture Rate": "39.01 GTexel/s", + "FP16 (half) performance": "1,248 GFLOPS (1:1)", + "FP32 (float) performance": "1,248 GFLOPS", + "FP64 (double) performance": "78.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550.c2947", + "web_page_access_date": "2022/08/21/, 20:18:23", + "Product Name": "AMD Radeon RX 550", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 20th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1183 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.93 GPixel/s", + "Texture Rate": "37.86 GTexel/s", + "FP16 (half) performance": "1,211 GFLOPS (1:1)", + "FP32 (float) performance": "1,211 GFLOPS", + "FP64 (double) performance": "75.71 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090-01" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {}, + "Retail boards based on this design (39)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550-512sp.c3740", + "web_page_access_date": "2022/08/21/, 20:20:24", + "Product Name": "AMD Radeon RX 550 512SP", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin LE", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 13th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1019 MHz", + "Boost Clock": "1071 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.14 GPixel/s", + "Texture Rate": "34.27 GTexel/s", + "FP16 (half) performance": "1,097 GFLOPS (1:1)", + "FP32 (float) performance": "1,097 GFLOPS", + "FP64 (double) performance": "68.54 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090-01" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550-640sp.c3083", + "web_page_access_date": "2022/08/21/, 20:22:25", + "Product Name": "AMD Radeon RX 550 640SP", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin LE", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 13th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1019 MHz", + "Boost Clock": "1071 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.14 GPixel/s", + "Texture Rate": "42.84 GTexel/s", + "FP16 (half) performance": "1,371 GFLOPS (1:1)", + "FP32 (float) performance": "1,371 GFLOPS", + "FP64 (double) performance": "85.68 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090-21" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {}, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550-mobile.c3049", + "web_page_access_date": "2022/08/21/, 20:24:26", + "Product Name": "AMD Radeon RX 550 Mobile", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 2nd, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1287 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.59 GPixel/s", + "Texture Rate": "51.48 GTexel/s", + "FP16 (half) performance": "1.647 TFLOPS (1:1)", + "FP32 (float) performance": "1.647 TFLOPS", + "FP64 (double) performance": "103.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560.c2940", + "web_page_access_date": "2022/08/21/, 20:26:27", + "Product Name": "AMD Radeon RX 560", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0908004)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 18th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "99 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1175 MHz", + "Boost Clock": "1275 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.40 GPixel/s", + "Texture Rate": "81.60 GTexel/s", + "FP16 (half) performance": "2.611 TFLOPS (1:1)", + "FP32 (float) performance": "2.611 TFLOPS", + "FP64 (double) performance": "163.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (42)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560-896sp.c3082", + "web_page_access_date": "2022/08/21/, 20:28:27", + "Product Name": "AMD Radeon RX 560 896SP", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 4th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1175 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.80 GPixel/s", + "Texture Rate": "65.80 GTexel/s", + "FP16 (half) performance": "2.106 TFLOPS (1:1)", + "FP32 (float) performance": "2.106 TFLOPS", + "FP64 (double) performance": "131.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "45 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C981-21 C994-71" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560-mobile.c3386", + "web_page_access_date": "2022/08/21/, 20:30:37", + "Product Name": "AMD Radeon RX 560 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "BaffinM-XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "784 MHz", + "Boost Clock": "1032 MHz", + "Memory Clock": "1710 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "109.4 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.51 GPixel/s", + "Texture Rate": "57.79 GTexel/s", + "FP16 (half) performance": "1.849 TFLOPS (1:1)", + "FP32 (float) performance": "1.849 TFLOPS", + "FP64 (double) performance": "115.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560-mobile.c3069", + "web_page_access_date": "2022/08/21/, 20:30:45", + "Product Name": "AMD Radeon RX 560 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1202 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.23 GPixel/s", + "Texture Rate": "76.93 GTexel/s", + "FP16 (half) performance": "2.462 TFLOPS (1:1)", + "FP32 (float) performance": "2.462 TFLOPS", + "FP64 (double) performance": "153.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560-mobile.c3071", + "web_page_access_date": "2022/08/21/, 20:30:52", + "Product Name": "AMD Radeon RX 560 Mobile", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1053 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.85 GPixel/s", + "Texture Rate": "58.97 GTexel/s", + "FP16 (half) performance": "1.887 TFLOPS (1:1)", + "FP32 (float) performance": "1.887 TFLOPS", + "FP64 (double) performance": "117.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560d.c2990", + "web_page_access_date": "2022/08/21/, 20:31:00", + "Product Name": "AMD Radeon RX 560D", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 4th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1175 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.80 GPixel/s", + "Texture Rate": "65.80 GTexel/s", + "FP16 (half) performance": "2.106 TFLOPS (1:1)", + "FP32 (float) performance": "2.106 TFLOPS", + "FP64 (double) performance": "131.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994-57 C994-71" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (31)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-570.c2939", + "web_page_access_date": "2022/08/21/, 20:31:07", + "Product Name": "AMD Radeon RX 570", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 18th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "169 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "29 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1168 MHz", + "Boost Clock": "1244 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.81 GPixel/s", + "Texture Rate": "159.2 GTexel/s", + "FP16 (half) performance": "5.095 TFLOPS (1:1)", + "FP32 (float) performance": "5.095 TFLOPS", + "FP64 (double) performance": "318.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C940, D000" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (73)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-570-mobile.c3068", + "web_page_access_date": "2022/08/21/, 20:31:15", + "Product Name": "AMD Radeon RX 570 Mobile", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 10th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "926 MHz", + "Boost Clock": "1206 MHz", + "Memory Clock": "1650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "211.2 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.59 GPixel/s", + "Texture Rate": "154.4 GTexel/s", + "FP16 (half) performance": "4.940 TFLOPS (1:1)", + "FP32 (float) performance": "4.940 TFLOPS", + "FP64 (double) performance": "308.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-570-x2.c3828", + "web_page_access_date": "2022/08/21/, 20:31:22", + "Product Name": "AMD Radeon RX 570 X2", + "General Specs": { + "Graphics Processor": "Polaris 20 x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "8 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Mining GPUs", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "29 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1206 MHz", + "Memory Clock": "2100 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8.4 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "268.8 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.59 GPixel/s", + "Texture Rate": "154.4 GTexel/s", + "FP16 (half) performance": "4.940 TFLOPS (1:1)", + "FP32 (float) performance": "4.940 TFLOPS", + "FP64 (double) performance": "308.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b", + "Power Connectors": "2x 8-pin", + "Board Number": "P010" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580.c2938", + "web_page_access_date": "2022/08/21/, 20:31:29", + "Product Name": "AMD Radeon RX 580", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-0910038)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 18th, 2017", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "229 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "52 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1257 MHz", + "Boost Clock": "1340 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.88 GPixel/s", + "Texture Rate": "193.0 GTexel/s", + "FP16 (half) performance": "6.175 TFLOPS (1:1)", + "FP32 (float) performance": "6.175 TFLOPS", + "FP64 (double) performance": "385.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "C940, D009-04" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (103)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580-mobile.c3067", + "web_page_access_date": "2022/08/21/, 20:31:37", + "Product Name": "AMD Radeon RX 580 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20M XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2017", + "Generation": "Mobility Radeon\n(RX M500)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1077 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.46 GPixel/s", + "Texture Rate": "155.1 GTexel/s", + "FP16 (half) performance": "4.963 TFLOPS (1:1)", + "FP32 (float) performance": "4.963 TFLOPS", + "FP64 (double) performance": "310.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-10-mobile.c3053", + "web_page_access_date": "2022/08/21/, 20:31:45", + "Product Name": "AMD Radeon RX Vega 10 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "640", + "TMUs": "40", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 26th, 2017", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1301 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "8", + "Compute Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "10.41 GPixel/s", + "Texture Rate": "52.04 GTexel/s", + "FP16 (half) performance": "3.331 TFLOPS (2:1)", + "FP32 (float) performance": "1.665 TFLOPS", + "FP64 (double) performance": "104.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-56.c2993", + "web_page_access_date": "2022/08/21/, 20:31:52", + "Product Name": "AMD Radeon RX Vega 56", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894216)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 14th, 2017", + "Generation": "Vega\n(RX Vega)", + "Predecessor": "Polaris", + "Successor": "Navi", + "Production": "Active", + "Launch Price": "399 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "23 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1156 MHz", + "Boost Clock": "1471 MHz", + "SOC Clock": "960 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "409.6 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "94.14 GPixel/s", + "Texture Rate": "329.5 GTexel/s", + "FP16 (half) performance": "21.09 TFLOPS (2:1)", + "FP32 (float) performance": "10.54 TFLOPS", + "FP64 (double) performance": "659.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "280 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "210 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D050-57" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {}, + "Retail boards based on this design (26)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-64.c2871", + "web_page_access_date": "2022/08/21/, 20:32:00", + "Product Name": "AMD Radeon RX Vega 64", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2017", + "Generation": "Vega\n(RX Vega)", + "Predecessor": "Polaris", + "Successor": "Navi", + "Production": "Active", + "Launch Price": "499 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1247 MHz", + "Boost Clock": "1546 MHz", + "SOC Clock": "960 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.94 GPixel/s", + "Texture Rate": "395.8 GTexel/s", + "FP16 (half) performance": "25.33 TFLOPS (2:1)", + "FP32 (float) performance": "12.66 TFLOPS", + "FP64 (double) performance": "791.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "280 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "295 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D050-57" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {}, + "Retail boards based on this design (24)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-64-limited-edition.c2995", + "web_page_access_date": "2022/08/21/, 20:32:07", + "Product Name": "AMD Radeon RX Vega 64 Limited Edition", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2017", + "Generation": "Vega\n(RX Vega)", + "Predecessor": "Polaris", + "Successor": "Navi", + "Production": "Active", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1247 MHz", + "Boost Clock": "1546 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.94 GPixel/s", + "Texture Rate": "395.8 GTexel/s", + "FP16 (half) performance": "25.33 TFLOPS (2:1)", + "FP32 (float) performance": "12.66 TFLOPS", + "FP64 (double) performance": "791.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "272 mm\n\t\t\t\t\t10.7 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "295 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D05014" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-64-liquid-cooling.c2992", + "web_page_access_date": "2022/08/21/, 20:32:15", + "Product Name": "AMD Radeon RX Vega 64 Liquid Cooling", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XTX", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2017", + "Generation": "Vega\n(RX Vega)", + "Predecessor": "Polaris", + "Successor": "Navi", + "Production": "Active", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1406 MHz", + "Boost Clock": "1677 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "107.3 GPixel/s", + "Texture Rate": "429.3 GTexel/s", + "FP16 (half) performance": "27.48 TFLOPS (2:1)", + "FP32 (float) performance": "13.74 TFLOPS", + "FP64 (double) performance": "858.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "272 mm\n\t\t\t\t\t10.7 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "345 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D05005" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {}, + "Retail boards based on this design (10)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-mobile.c3103", + "web_page_access_date": "2022/08/21/, 20:32:22", + "Product Name": "AMD Radeon Vega 8 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 26th, 2017", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "8.808 GPixel/s", + "Texture Rate": "35.23 GTexel/s", + "FP16 (half) performance": "2.255 TFLOPS (2:1)", + "FP32 (float) performance": "1,127 GFLOPS", + "FP64 (double) performance": "70.46 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-frontier-edition.c2958", + "web_page_access_date": "2022/08/21/, 20:32:30", + "Product Name": "AMD Radeon Vega Frontier Edition", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XTX AIR", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 27th, 2017", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1382 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "102.4 GPixel/s", + "Texture Rate": "409.6 GTexel/s", + "FP16 (half) performance": "26.21 TFLOPS (2:1)", + "FP32 (float) performance": "13.11 TFLOPS", + "FP64 (double) performance": "819.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D050-11" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-frontier-edition-watercooled.c2982", + "web_page_access_date": "2022/08/21/, 20:32:38", + "Product Name": "AMD Radeon Vega Frontier Edition Watercooled", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XTX LCS", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 13th, 2017", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Launch Price": "1,489 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1382 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "102.4 GPixel/s", + "Texture Rate": "409.6 GTexel/s", + "FP16 (half) performance": "26.21 TFLOPS (2:1)", + "FP32 (float) performance": "13.11 TFLOPS", + "FP64 (double) performance": "819.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "D050-12" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xbox-one-x-gpu.c2977", + "web_page_access_date": "2022/08/21/, 20:32:45", + "Product Name": "AMD Xbox One X GPU", + "General Specs": { + "Graphics Processor": "Scorpio", + "Cores": "2560", + "TMUs": "160", + "ROPs": "32", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Scorpio", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,000 million", + "Die Size": "359 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 7th, 2017", + "Generation": "Console GPU\n(Microsoft)", + "Production": "End-of-life", + "Launch Price": "499 USD" + }, + "Clock Speeds": { + "GPU Clock": "1172 MHz", + "Memory Clock": "1700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "326.4 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "32", + "Compute Units": "40" + }, + "Theoretical Performance": { + "Pixel Rate": "37.50 GPixel/s", + "Texture Rate": "187.5 GTexel/s", + "FP16 (half) performance": "6.001 TFLOPS (1:1)", + "FP32 (float) performance": "6.001 TFLOPS" + }, + "Board Design": { + "Length": "300 mm\n\t\t\t\t\t11.8 inches", + "Width": "240 mm\n\t\t\t\t\t9.4 inches", + "Height": "60 mm\n\t\t\t\t\t2.4 inches", + "Weight": "3.8 kg (8.4 lbs)", + "TDP": "150 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "6.0" + }, + "Console Notes": {}, + "Scorpio GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-540x-mobile.c3417", + "web_page_access_date": "2022/08/21/, 20:32:53", + "Product Name": "AMD Radeon 540X Mobile", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 5th, 2018", + "Generation": "Mobility Radeon\n(M500X)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1046 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.74 GPixel/s", + "Texture Rate": "33.47 GTexel/s", + "FP16 (half) performance": "1,071 GFLOPS (1:1)", + "FP32 (float) performance": "1,071 GFLOPS", + "FP64 (double) performance": "66.94 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-550x-640sp.c3206", + "web_page_access_date": "2022/08/21/, 20:33:01", + "Product Name": "AMD Radeon 550X 640SP", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1019 MHz", + "Boost Clock": "1071 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.14 GPixel/s", + "Texture Rate": "42.84 GTexel/s", + "FP16 (half) performance": "1,371 GFLOPS (1:1)", + "FP32 (float) performance": "1,371 GFLOPS", + "FP64 (double) performance": "85.68 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-550x-mobile.c3207", + "web_page_access_date": "2022/08/21/, 20:33:08", + "Product Name": "AMD Radeon 550X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 MXT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1287 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.59 GPixel/s", + "Texture Rate": "51.48 GTexel/s", + "FP16 (half) performance": "1.647 TFLOPS (1:1)", + "FP32 (float) performance": "1.647 TFLOPS", + "FP64 (double) performance": "103.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi50.c3335", + "web_page_access_date": "2022/08/21/, 20:33:16", + "Product Name": "AMD Radeon Instinct MI50", + "General Specs": { + "Graphics Processor": "Vega 20", + "Cores": "3840", + "TMUs": "240", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 GLXT", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 18th, 2018", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1746 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,024 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "64", + "Compute Units": "60", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "111.7 GPixel/s", + "Texture Rate": "419.0 GTexel/s", + "FP16 (half) performance": "26.82 TFLOPS (2:1)", + "FP32 (float) performance": "13.41 TFLOPS", + "FP64 (double) performance": "6.705 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi60.c3233", + "web_page_access_date": "2022/08/21/, 20:33:24", + "Product Name": "AMD Radeon Instinct MI60", + "General Specs": { + "Graphics Processor": "Vega 20", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 GL", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 18th, 2018", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,024 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "115.2 GPixel/s", + "Texture Rate": "460.8 GTexel/s", + "FP16 (half) performance": "29.49 TFLOPS (2:1)", + "FP32 (float) performance": "14.75 TFLOPS", + "FP64 (double) performance": "7.373 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-555x.c3283", + "web_page_access_date": "2022/08/21/, 20:33:31", + "Product Name": "AMD Radeon Pro 555X", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 PRO", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 16th, 2018", + "Generation": "Radeon Pro Mac\n(500X Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "907 MHz", + "Memory Clock": "1470 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.9 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "94.08 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.51 GPixel/s", + "Texture Rate": "43.54 GTexel/s", + "FP16 (half) performance": "1,393 GFLOPS (1:1)", + "FP32 (float) performance": "1,393 GFLOPS", + "FP64 (double) performance": "87.07 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-560x.c3282", + "web_page_access_date": "2022/08/21/, 20:33:39", + "Product Name": "AMD Radeon Pro 560X", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0908004)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 16th, 2018", + "Generation": "Radeon Pro Mac\n(500X Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1004 MHz", + "Memory Clock": "1470 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.9 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "94.08 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.06 GPixel/s", + "Texture Rate": "64.26 GTexel/s", + "FP16 (half) performance": "2.056 TFLOPS (1:1)", + "FP32 (float) performance": "2.056 TFLOPS", + "FP64 (double) performance": "128.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v340.c3267", + "web_page_access_date": "2022/08/21/, 20:33:46", + "Product Name": "AMD Radeon Pro V340", + "General Specs": { + "Graphics Processor": "Vega 10 x2", + "Cores": "3584 x2", + "TMUs": "224 x2", + "ROPs": "64 x2", + "Memory Size": "16 GB x2", + "Memory Type": "HBM2", + "Bus Width": "2048 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894304)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 26th, 2018", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "852 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "945 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1890 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "483.8 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "336.0 GTexel/s", + "FP16 (half) performance": "21.50 TFLOPS (2:1)", + "FP32 (float) performance": "10.75 TFLOPS", + "FP64 (double) performance": "672.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "1x mini-DisplayPort 1.4a", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-16.c3331", + "web_page_access_date": "2022/08/21/, 20:33:54", + "Product Name": "AMD Radeon Pro Vega 16", + "General Specs": { + "Graphics Processor": "Vega 12", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Bus Width": "1024 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 12", + "GPU Variant": "Vega 12 XLA", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Nov 14th, 2018", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "815 MHz", + "Boost Clock": "1190 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Memory Bus": "1024 bit", + "Bandwidth": "307.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.08 GPixel/s", + "Texture Rate": "76.16 GTexel/s", + "FP16 (half) performance": "4.874 TFLOPS (2:1)", + "FP32 (float) performance": "2.437 TFLOPS", + "FP64 (double) performance": "152.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Vega 12 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-20.c3263", + "web_page_access_date": "2022/08/21/, 20:34:01", + "Product Name": "AMD Radeon Pro Vega 20", + "General Specs": { + "Graphics Processor": "Vega 12", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Bus Width": "1024 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 12", + "GPU Variant": "Vega 12 XTA", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Nov 14th, 2018", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "815 MHz", + "Boost Clock": "1283 MHz", + "Memory Clock": "740 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1480 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Memory Bus": "1024 bit", + "Bandwidth": "189.4 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "41.06 GPixel/s", + "Texture Rate": "102.6 GTexel/s", + "FP16 (half) performance": "6.569 TFLOPS (2:1)", + "FP32 (float) performance": "3.284 TFLOPS", + "FP64 (double) performance": "205.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Vega 12 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-8200.c3303", + "web_page_access_date": "2022/08/21/, 20:34:10", + "Product Name": "AMD Radeon Pro WX 8200", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Radeon Pro\n(WX x200)", + "Production": "Active", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.00 GPixel/s", + "Texture Rate": "336.0 GTexel/s", + "FP16 (half) performance": "21.50 TFLOPS (2:1)", + "FP32 (float) performance": "10.75 TFLOPS", + "FP64 (double) performance": "672.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D051" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-vega-m-gl.c3352", + "web_page_access_date": "2022/08/21/, 20:34:17", + "Product Name": "AMD Radeon Pro WX Vega M GL", + "General Specs": { + "Graphics Processor": "Polaris 22", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Bus Width": "1024 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 22", + "GPU Variant": "VegaM MGL XL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,000 million", + "Die Size": "208 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2018", + "Generation": "Vega\n(Vega M)", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "931 MHz", + "Boost Clock": "1011 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Memory Bus": "1024 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.35 GPixel/s", + "Texture Rate": "80.88 GTexel/s", + "FP16 (half) performance": "2.588 TFLOPS (1:1)", + "FP32 (float) performance": "2.588 TFLOPS", + "FP64 (double) performance": "161.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Board Number": "D136" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-540x-mobile.c3204", + "web_page_access_date": "2022/08/21/, 20:34:24", + "Product Name": "AMD Radeon RX 540X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 MXL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1124 MHz", + "Boost Clock": "1211 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.38 GPixel/s", + "Texture Rate": "38.75 GTexel/s", + "FP16 (half) performance": "1,240 GFLOPS (1:1)", + "FP32 (float) performance": "1,240 GFLOPS", + "FP64 (double) performance": "77.50 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550x.c3194", + "web_page_access_date": "2022/08/21/, 20:34:32", + "Product Name": "AMD Radeon RX 550X", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 16th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1183 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.93 GPixel/s", + "Texture Rate": "37.86 GTexel/s", + "FP16 (half) performance": "1,211 GFLOPS (1:1)", + "FP32 (float) performance": "1,211 GFLOPS", + "FP64 (double) performance": "75.71 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550x-640sp.c3203", + "web_page_access_date": "2022/08/21/, 20:34:40", + "Product Name": "AMD Radeon RX 550X 640SP", + "General Specs": { + "Graphics Processor": "Baffin", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Baffin", + "GPU Variant": "Baffin LE", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1019 MHz", + "Boost Clock": "1071 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.14 GPixel/s", + "Texture Rate": "42.84 GTexel/s", + "FP16 (half) performance": "1,371 GFLOPS (1:1)", + "FP32 (float) performance": "1,371 GFLOPS", + "FP64 (double) performance": "85.68 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090-21" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Baffin GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-550x-mobile.c3205", + "web_page_access_date": "2022/08/21/, 20:34:48", + "Product Name": "AMD Radeon RX 550X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 MXT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1176 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.82 GPixel/s", + "Texture Rate": "47.04 GTexel/s", + "FP16 (half) performance": "1.505 TFLOPS (1:1)", + "FP32 (float) performance": "1.505 TFLOPS", + "FP64 (double) performance": "94.08 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560dx.c3198", + "web_page_access_date": "2022/08/21/, 20:34:56", + "Product Name": "AMD Radeon RX 560DX", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1090 MHz", + "Boost Clock": "1175 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.80 GPixel/s", + "Texture Rate": "65.80 GTexel/s", + "FP16 (half) performance": "2.106 TFLOPS (1:1)", + "FP32 (float) performance": "2.106 TFLOPS", + "FP64 (double) performance": "131.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560x.c3193", + "web_page_access_date": "2022/08/21/, 20:35:04", + "Product Name": "AMD Radeon RX 560X", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0908004)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1175 MHz", + "Boost Clock": "1275 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.40 GPixel/s", + "Texture Rate": "81.60 GTexel/s", + "FP16 (half) performance": "2.611 TFLOPS (1:1)", + "FP32 (float) performance": "2.611 TFLOPS", + "FP64 (double) performance": "163.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C994" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560x-mobile.c3197", + "web_page_access_date": "2022/08/21/, 20:35:12", + "Product Name": "AMD Radeon RX 560X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21M XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1175 MHz", + "Boost Clock": "1202 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.23 GPixel/s", + "Texture Rate": "76.93 GTexel/s", + "FP16 (half) performance": "2.462 TFLOPS (1:1)", + "FP32 (float) performance": "2.462 TFLOPS", + "FP64 (double) performance": "153.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560x-mobile.c3632", + "web_page_access_date": "2022/08/21/, 20:35:19", + "Product Name": "AMD Radeon RX 560X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21M XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1275 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.40 GPixel/s", + "Texture Rate": "81.60 GTexel/s", + "FP16 (half) performance": "2.611 TFLOPS (1:1)", + "FP32 (float) performance": "2.611 TFLOPS", + "FP64 (double) performance": "163.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560x-mobile.c3631", + "web_page_access_date": "2022/08/21/, 20:35:28", + "Product Name": "AMD Radeon RX 560X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 21", + "Cores": "1024", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 21", + "GPU Variant": "Polaris 21M XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1275 MHz", + "Memory Clock": "1450 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "92.80 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "16", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.40 GPixel/s", + "Texture Rate": "81.60 GTexel/s", + "FP16 (half) performance": "2.611 TFLOPS (1:1)", + "FP32 (float) performance": "2.611 TFLOPS", + "FP64 (double) performance": "163.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-570x.c3192", + "web_page_access_date": "2022/08/21/, 20:35:36", + "Product Name": "AMD Radeon RX 570X", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1168 MHz", + "Boost Clock": "1244 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.81 GPixel/s", + "Texture Rate": "159.2 GTexel/s", + "FP16 (half) performance": "5.095 TFLOPS (1:1)", + "FP32 (float) performance": "5.095 TFLOPS", + "FP64 (double) performance": "318.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "D000" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580-2048sp.c3321", + "web_page_access_date": "2022/08/21/, 20:35:43", + "Product Name": "AMD Radeon RX 580 2048SP", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 15th, 2018", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "52 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1168 MHz", + "Boost Clock": "1284 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "41.09 GPixel/s", + "Texture Rate": "164.4 GTexel/s", + "FP16 (half) performance": "5.259 TFLOPS (1:1)", + "FP32 (float) performance": "5.259 TFLOPS", + "FP64 (double) performance": "328.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "C940, D000" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580g.c3323", + "web_page_access_date": "2022/08/21/, 20:35:51", + "Product Name": "AMD Radeon RX 580G", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-0910038)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 15th, 2018", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "52 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1257 MHz", + "Boost Clock": "1330 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.56 GPixel/s", + "Texture Rate": "191.5 GTexel/s", + "FP16 (half) performance": "6.129 TFLOPS (1:1)", + "FP32 (float) performance": "6.129 TFLOPS", + "FP64 (double) performance": "383.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "C940, D009-04" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580x.c3190", + "web_page_access_date": "2022/08/21/, 20:35:58", + "Product Name": "AMD Radeon RX 580X", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-0910038)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 11th, 2018", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1257 MHz", + "Boost Clock": "1340 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.88 GPixel/s", + "Texture Rate": "193.0 GTexel/s", + "FP16 (half) performance": "6.175 TFLOPS (1:1)", + "FP32 (float) performance": "6.175 TFLOPS", + "FP64 (double) performance": "385.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "D009" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-580x-mobile.c3235", + "web_page_access_date": "2022/08/21/, 20:36:06", + "Product Name": "AMD Radeon RX 580X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20M XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 11th, 2018", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1077 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.46 GPixel/s", + "Texture Rate": "155.1 GTexel/s", + "FP16 (half) performance": "4.963 TFLOPS (1:1)", + "FP32 (float) performance": "4.963 TFLOPS", + "FP64 (double) performance": "310.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-590.c3322", + "web_page_access_date": "2022/08/21/, 20:36:13", + "Product Name": "AMD Radeon RX 590", + "General Specs": { + "Graphics Processor": "Polaris 30", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 30", + "GPU Variant": "Polaris 30 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0922006)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "12 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 15th, 2018", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Launch Price": "279 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "36 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1469 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.44 GPixel/s", + "Texture Rate": "222.5 GTexel/s", + "FP16 (half) performance": "7.119 TFLOPS (1:1)", + "FP32 (float) performance": "7.119 TFLOPS", + "FP64 (double) performance": "445.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "C944-41" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 30 GPU Notes": {}, + "Retail boards based on this design (22)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-11.c3054", + "web_page_access_date": "2022/08/21/, 20:36:21", + "Product Name": "AMD Radeon RX Vega 11", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 12th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1240 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "9.920 GPixel/s", + "Texture Rate": "54.56 GTexel/s", + "FP16 (half) performance": "3.492 TFLOPS (2:1)", + "FP32 (float) performance": "1.746 TFLOPS", + "FP64 (double) performance": "109.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-11-embedded.c3222", + "web_page_access_date": "2022/08/21/, 20:36:29", + "Product Name": "AMD Radeon RX Vega 11 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 19th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1251 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "10.01 GPixel/s", + "Texture Rate": "55.04 GTexel/s", + "FP16 (half) performance": "3.523 TFLOPS (2:1)", + "FP32 (float) performance": "1.761 TFLOPS", + "FP64 (double) performance": "110.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-11-mobile.c3300", + "web_page_access_date": "2022/08/21/, 20:36:36", + "Product Name": "AMD Radeon RX Vega 11 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 10th, 2018", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1251 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "10.01 GPixel/s", + "Texture Rate": "55.04 GTexel/s", + "FP16 (half) performance": "3.523 TFLOPS (2:1)", + "FP32 (float) performance": "1.761 TFLOPS", + "FP64 (double) performance": "110.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-56-mobile.c3333", + "web_page_access_date": "2022/08/21/, 20:36:44", + "Product Name": "AMD Radeon RX Vega 56 Mobile", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3584", + "TMUs": "224", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0894216)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2018", + "Generation": "Mobility Radeon\n(Vega)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "23 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1138 MHz", + "Boost Clock": "1301 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "409.6 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "64", + "Compute Units": "56", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "83.26 GPixel/s", + "Texture Rate": "291.4 GTexel/s", + "FP16 (half) performance": "18.65 TFLOPS (2:1)", + "FP32 (float) performance": "9.326 TFLOPS", + "FP64 (double) performance": "582.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "Length": "105 mm\n\t\t\t\t\t4.1 inches", + "TDP": "120 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-m-gh.c3056", + "web_page_access_date": "2022/08/21/, 20:36:51", + "Product Name": "AMD Radeon RX Vega M GH", + "General Specs": { + "Graphics Processor": "Polaris 22", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Bus Width": "1024 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 22", + "GPU Variant": "VegaM XT\n\t\t\t\t\t\t\t\t\t\t\n(C7398773)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,000 million", + "Die Size": "208 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2018", + "Generation": "Vega\n(Vega M)", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1063 MHz", + "Boost Clock": "1190 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Memory Bus": "1024 bit", + "Bandwidth": "204.8 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.16 GPixel/s", + "Texture Rate": "114.2 GTexel/s", + "FP16 (half) performance": "3.656 TFLOPS (1:1)", + "FP32 (float) performance": "3.656 TFLOPS", + "FP64 (double) performance": "228.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Polaris 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-m-gl.c3061", + "web_page_access_date": "2022/08/22/, 18:52:05", + "Product Name": "AMD Radeon RX Vega M GL", + "General Specs": { + "Graphics Processor": "Polaris 22", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Bus Width": "1024 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 22", + "GPU Variant": "VegaM XL\n\t\t\t\t\t\t\t\t\t\t\n(D715A714)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,000 million", + "Die Size": "208 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2018", + "Generation": "Vega\n(Vega M)", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "931 MHz", + "Boost Clock": "1011 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "HBM2", + "Memory Bus": "1024 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.35 GPixel/s", + "Texture Rate": "80.88 GTexel/s", + "FP16 (half) performance": "2.588 TFLOPS (1:1)", + "FP32 (float) performance": "2.588 TFLOPS", + "FP64 (double) performance": "161.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Board Number": "D136" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Polaris 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-nano.c2997", + "web_page_access_date": "2022/08/22/, 18:52:12", + "Product Name": "AMD Radeon RX Vega Nano", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Vega\n(RX Vega)", + "Predecessor": "Polaris", + "Successor": "Navi", + "Production": "unknown", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1247 MHz", + "Boost Clock": "1546 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "409.6 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.94 GPixel/s", + "Texture Rate": "395.8 GTexel/s", + "FP32 (float) performance": "12.66 TFLOPS", + "FP64 (double) performance": "791.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "152 mm\n\t\t\t\t\t6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-11-embedded.c3213", + "web_page_access_date": "2022/08/22/, 18:52:18", + "Product Name": "AMD Radeon Vega 11 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 13th, 2018", + "Generation": "Great Horned Owl\n(Vega)", + "Predecessor": "Stoney Ridge", + "Successor": "Raven Ridge", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1301 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "10.41 GPixel/s", + "Texture Rate": "57.24 GTexel/s", + "FP16 (half) performance": "3.664 TFLOPS (2:1)", + "FP32 (float) performance": "1.832 TFLOPS", + "FP64 (double) performance": "114.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-embedded.c3290", + "web_page_access_date": "2022/08/22/, 18:52:24", + "Product Name": "AMD Radeon Vega 3 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 6th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1001 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.004 GPixel/s", + "Texture Rate": "12.01 GTexel/s", + "FP16 (half) performance": "768.8 GFLOPS (2:1)", + "FP32 (float) performance": "384.4 GFLOPS", + "FP64 (double) performance": "24.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-embedded.c3214", + "web_page_access_date": "2022/08/22/, 18:52:31", + "Product Name": "AMD Radeon Vega 3 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 13th, 2018", + "Generation": "Great Horned Owl\n(Vega)", + "Predecessor": "Stoney Ridge", + "Successor": "Raven Ridge", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1001 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.004 GPixel/s", + "Texture Rate": "12.01 GTexel/s", + "FP16 (half) performance": "768.8 GFLOPS (2:1)", + "FP32 (float) performance": "384.4 GFLOPS", + "FP64 (double) performance": "24.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-embedded.c3656", + "web_page_access_date": "2022/08/22/, 18:52:37", + "Product Name": "AMD Radeon Vega 3 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "GPU Variant": "Embedded", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 16th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1001 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.004 GPixel/s", + "Texture Rate": "12.01 GTexel/s", + "FP16 (half) performance": "768.8 GFLOPS (2:1)", + "FP32 (float) performance": "384.4 GFLOPS", + "FP64 (double) performance": "24.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-mobile.c3078", + "web_page_access_date": "2022/08/22/, 18:52:43", + "Product Name": "AMD Radeon Vega 3 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 8th, 2018", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.404 GPixel/s", + "Texture Rate": "13.21 GTexel/s", + "FP16 (half) performance": "845.6 GFLOPS (2:1)", + "FP32 (float) performance": "422.8 GFLOPS", + "FP64 (double) performance": "26.42 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6-embedded.c3291", + "web_page_access_date": "2022/08/22/, 18:52:50", + "Product Name": "AMD Radeon Vega 6 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 10th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1280 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "10.24 GPixel/s", + "Texture Rate": "30.72 GTexel/s", + "FP16 (half) performance": "1.966 TFLOPS (2:1)", + "FP32 (float) performance": "983.0 GFLOPS", + "FP64 (double) performance": "61.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6-mobile.c3079", + "web_page_access_date": "2022/08/22/, 18:52:56", + "Product Name": "AMD Radeon Vega 6 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 8th, 2018", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "8.808 GPixel/s", + "Texture Rate": "26.42 GTexel/s", + "FP16 (half) performance": "1.691 TFLOPS (2:1)", + "FP32 (float) performance": "845.6 GFLOPS", + "FP64 (double) performance": "52.85 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8.c3042", + "web_page_access_date": "2022/08/22/, 18:53:03", + "Product Name": "AMD Radeon Vega 8", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 12th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "8.800 GPixel/s", + "Texture Rate": "35.20 GTexel/s", + "FP16 (half) performance": "2.253 TFLOPS (2:1)", + "FP32 (float) performance": "1,126 GFLOPS", + "FP64 (double) performance": "70.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-embedded.c3212", + "web_page_access_date": "2022/08/21/, 20:41:02", + "Product Name": "AMD Radeon Vega 8 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 13th, 2018", + "Generation": "Great Horned Owl\n(Vega)", + "Predecessor": "Stoney Ridge", + "Successor": "Raven Ridge", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "8.800 GPixel/s", + "Texture Rate": "35.20 GTexel/s", + "FP16 (half) performance": "2.253 TFLOPS (2:1)", + "FP32 (float) performance": "1,126 GFLOPS", + "FP64 (double) performance": "70.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-embedded.c3223", + "web_page_access_date": "2022/08/21/, 20:41:10", + "Product Name": "AMD Radeon Vega 8 Embedded", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 19th, 2018", + "Generation": "Raven Ridge\n(Vega)", + "Predecessor": "Great Horned Owl", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "8.808 GPixel/s", + "Texture Rate": "35.23 GTexel/s", + "FP16 (half) performance": "2.255 TFLOPS (2:1)", + "FP32 (float) performance": "1,127 GFLOPS", + "FP64 (double) performance": "70.46 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/zhongshan-subor-z-gpu.c3301", + "web_page_access_date": "2022/08/21/, 20:41:16", + "Product Name": "AMD Zhongshan Subor Z+ GPU", + "General Specs": { + "Graphics Processor": "Fenghuang", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Fenghuang", + "GPU Variant": "Zhongshan Subor", + "Architecture": "GCN 5.0", + "Foundry": "TSMC", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "397 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 3rd, 2018", + "Generation": "Console GPU\n(Zhongshan Subor)", + "Production": "Active" + }, + "Clock Speeds": { + "GPU Clock": "1300 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "41.60 GPixel/s", + "Texture Rate": "124.8 GTexel/s", + "FP16 (half) performance": "7.987 TFLOPS (2:1)", + "FP32 (float) performance": "3.994 TFLOPS", + "FP64 (double) performance": "249.6 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.2" + }, + "Fenghuang GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-540-mobile.c3419", + "web_page_access_date": "2022/08/21/, 20:41:24", + "Product Name": "AMD Radeon 540 Mobile", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 26th, 2019", + "Generation": "Mobility Radeon\n(M500)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "35.97 GTexel/s", + "FP16 (half) performance": "1,151 GFLOPS (1:1)", + "FP32 (float) performance": "1,151 GFLOPS", + "FP64 (double) performance": "71.94 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-540x-mobile.c3415", + "web_page_access_date": "2022/08/21/, 20:41:38", + "Product Name": "AMD Radeon 540X Mobile", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 11th, 2019", + "Generation": "Mobility Radeon\n(M500X)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1095 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.52 GPixel/s", + "Texture Rate": "35.04 GTexel/s", + "FP16 (half) performance": "1,121 GFLOPS (1:1)", + "FP32 (float) performance": "1,121 GFLOPS", + "FP64 (double) performance": "70.08 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-550x.c3420", + "web_page_access_date": "2022/08/21/, 20:41:45", + "Product Name": "AMD Radeon 550X", + "General Specs": { + "Graphics Processor": "Lexa", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexa", + "GPU Variant": "Lexa PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0904018)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2019", + "Generation": "Polaris\n(RX 500X)", + "Predecessor": "Polaris", + "Successor": "Vega", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1082 MHz", + "Boost Clock": "1218 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.49 GPixel/s", + "Texture Rate": "38.98 GTexel/s", + "FP16 (half) performance": "1,247 GFLOPS (1:1)", + "FP32 (float) performance": "1,247 GFLOPS", + "FP64 (double) performance": "77.95 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lexa GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-610-mobile.c3423", + "web_page_access_date": "2022/08/21/, 20:41:53", + "Product Name": "AMD Radeon 610 Mobile", + "General Specs": { + "Graphics Processor": "Banks", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Banks", + "GPU Variant": "Banks PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 23rd, 2019", + "Generation": "Mobility Radeon\n(M600)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Banks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-620-mobile.c3421", + "web_page_access_date": "2022/08/21/, 20:42:01", + "Product Name": "AMD Radeon 620 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 24", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 24", + "GPU Variant": "Polaris 24 XL", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 13th, 2019", + "Generation": "Mobility Radeon\n(M600)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "1024 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.192 GPixel/s", + "Texture Rate": "24.58 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (1:1)", + "FP32 (float) performance": "786.4 GFLOPS", + "FP64 (double) performance": "49.15 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Polaris 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-625-mobile.c3422", + "web_page_access_date": "2022/08/21/, 20:42:17", + "Product Name": "AMD Radeon 625 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 24", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 24", + "GPU Variant": "Polaris 24 XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0867030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 13th, 2019", + "Generation": "Mobility Radeon\n(M600)", + "Predecessor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "1024 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.192 GPixel/s", + "Texture Rate": "24.58 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (1:1)", + "FP32 (float) performance": "786.4 GFLOPS", + "FP64 (double) performance": "49.15 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Polaris 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-630-mobile.c3414", + "web_page_access_date": "2022/08/21/, 20:42:35", + "Product Name": "AMD Radeon 630 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 MXL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 13th, 2019", + "Generation": "Mobility Radeon\n(M600)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1082 MHz", + "Boost Clock": "1211 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.38 GPixel/s", + "Texture Rate": "38.75 GTexel/s", + "FP16 (half) performance": "1,240 GFLOPS (1:1)", + "FP32 (float) performance": "1,240 GFLOPS", + "FP64 (double) performance": "77.50 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Outputs": "1x DVI1x HDMI 2.0b1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "D090" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9390-pcie.c3617", + "web_page_access_date": "2022/08/21/, 20:42:53", + "Product Name": "AMD Radeon E9390 PCIe", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 15th, 2019", + "Generation": "Embedded\n(9000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "713 MHz", + "Boost Clock": "1089 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.85 GPixel/s", + "Texture Rate": "122.0 GTexel/s", + "FP16 (half) performance": "3.903 TFLOPS (1:1)", + "FP32 (float) performance": "3.903 TFLOPS", + "FP64 (double) performance": "243.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "173 mm\n\t\t\t\t\t6.8 inches", + "TDP": "75 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "C954-87" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e9560-pcie.c3616", + "web_page_access_date": "2022/08/21/, 20:43:00", + "Product Name": "AMD Radeon E9560 PCIe", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 15th, 2019", + "Generation": "Embedded\n(9000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1120 MHz", + "Boost Clock": "1237 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.58 GPixel/s", + "Texture Rate": "178.1 GTexel/s", + "FP16 (half) performance": "5.700 TFLOPS (1:1)", + "FP32 (float) performance": "5.700 TFLOPS", + "FP64 (double) performance": "356.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "C954-87" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5300m.c3464", + "web_page_access_date": "2022/08/21/, 20:43:38", + "Product Name": "AMD Radeon Pro 5300M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PROA", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 13th, 2019", + "Generation": "Radeon Pro Mac\n(Navi Mobile)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1250 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.00 GPixel/s", + "Texture Rate": "100.0 GTexel/s", + "FP16 (half) performance": "6.400 TFLOPS (2:1)", + "FP32 (float) performance": "3.200 TFLOPS", + "FP64 (double) performance": "200.0 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5500m.c3463", + "web_page_access_date": "2022/08/21/, 20:43:45", + "Product Name": "AMD Radeon Pro 5500M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 ULA", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 13th, 2019", + "Generation": "Radeon Pro Mac\n(Navi Mobile)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1450 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.40 GPixel/s", + "Texture Rate": "139.2 GTexel/s", + "FP16 (half) performance": "8.909 TFLOPS (2:1)", + "FP32 (float) performance": "4.454 TFLOPS", + "FP64 (double) performance": "278.4 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-570x.c3396", + "web_page_access_date": "2022/08/21/, 20:43:53", + "Product Name": "AMD Radeon Pro 570X", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 18th, 2019", + "Generation": "Radeon Pro Mac\n(500X Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1105 MHz", + "Memory Clock": "1700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.6 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "35.36 GPixel/s", + "Texture Rate": "123.8 GTexel/s", + "FP16 (half) performance": "3.960 TFLOPS (1:1)", + "FP32 (float) performance": "3.960 TFLOPS", + "FP64 (double) performance": "247.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-575x.c3397", + "web_page_access_date": "2022/08/21/, 20:44:00", + "Product Name": "AMD Radeon Pro 575X", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0910052)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 18th, 2019", + "Generation": "Radeon Pro Mac\n(500X Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1096 MHz", + "Memory Clock": "1700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "217.6 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "35.07 GPixel/s", + "Texture Rate": "140.3 GTexel/s", + "FP16 (half) performance": "4.489 TFLOPS (1:1)", + "FP32 (float) performance": "4.489 TFLOPS", + "FP64 (double) performance": "280.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-580x.c3398", + "web_page_access_date": "2022/08/21/, 20:44:13", + "Product Name": "AMD Radeon Pro 580X", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Ellesmere XTA\n\t\t\t\t\t\t\t\t\t\t\n(216-0886220)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 18th, 2019", + "Generation": "Radeon Pro Mac\n(500X Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1100 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1710 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "218.9 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.40 GPixel/s", + "Texture Rate": "172.8 GTexel/s", + "FP16 (half) performance": "5.530 TFLOPS (1:1)", + "FP32 (float) performance": "5.530 TFLOPS", + "FP64 (double) performance": "345.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "185 W", + "Outputs": "2x HDMI 2.0b", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Ellesmere GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-48.c3395", + "web_page_access_date": "2022/08/21/, 20:44:20", + "Product Name": "AMD Radeon Pro Vega 48", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 PRO", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 19th, 2019", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1200 MHz", + "Memory Clock": "786 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1572 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "402.4 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "Compute Units": "48", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.80 GPixel/s", + "Texture Rate": "230.4 GTexel/s", + "FP16 (half) performance": "14.75 TFLOPS (2:1)", + "FP32 (float) performance": "7.373 TFLOPS", + "FP64 (double) performance": "460.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-64x.c3404", + "web_page_access_date": "2022/08/21/, 20:44:27", + "Product Name": "AMD Radeon Pro Vega 64X", + "General Specs": { + "Graphics Processor": "Vega 10", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 10", + "GPU Variant": "Vega 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0894200)", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "12,500 million", + "Die Size": "495 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 19th, 2019", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1250 MHz", + "Boost Clock": "1468 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "93.95 GPixel/s", + "Texture Rate": "375.8 GTexel/s", + "FP16 (half) performance": "24.05 TFLOPS (2:1)", + "FP32 (float) performance": "12.03 TFLOPS", + "FP64 (double) performance": "751.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-ii.c3426", + "web_page_access_date": "2022/08/21/, 20:44:35", + "Product Name": "AMD Radeon Pro Vega II", + "General Specs": { + "Graphics Processor": "Vega 20", + "Cores": "4096", + "TMUs": "256", + "ROPs": "64", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 XT", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 3rd, 2019", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1574 MHz", + "Boost Clock": "1720 MHz", + "Memory Clock": "806 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1612 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "825.3 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.1 GPixel/s", + "Texture Rate": "440.3 GTexel/s", + "FP16 (half) performance": "28.18 TFLOPS (2:1)", + "FP32 (float) performance": "14.09 TFLOPS", + "FP64 (double) performance": "880.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "TDP": "475 W", + "Suggested PSU": "850 W", + "Outputs": "1x HDMI 2.0b4x Thunderbolt", + "Power Connectors": "None", + "Board Number": "MW672ZM/A" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vega-ii-duo.c3268", + "web_page_access_date": "2022/08/21/, 20:44:48", + "Product Name": "AMD Radeon Pro Vega II Duo", + "General Specs": { + "Graphics Processor": "Vega 20 x2", + "Cores": "4096 x2", + "TMUs": "256 x2", + "ROPs": "64 x2", + "Memory Size": "32 GB x2", + "Memory Type": "HBM2", + "Bus Width": "4096 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 XT", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Radeon Pro Mac\n(Vega Series)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1400 MHz", + "Boost Clock": "1720 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,024 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "64", + "Compute Units": "64", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.1 GPixel/s", + "Texture Rate": "440.3 GTexel/s", + "FP16 (half) performance": "28.18 TFLOPS (2:1)", + "FP32 (float) performance": "14.09 TFLOPS", + "FP64 (double) performance": "880.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "TDP": "475 W", + "Suggested PSU": "850 W", + "Outputs": "1x HDMI 2.0b4x Thunderbolt", + "Power Connectors": "None", + "Board Number": "MW732ZM/A" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w5300m.c3477", + "web_page_access_date": "2022/08/21/, 20:45:00", + "Product Name": "AMD Radeon Pro W5300M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PRO XLM", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 13th, 2019", + "Generation": "Radeon Pro Mobile\n(W5x00M)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1250 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.00 GPixel/s", + "Texture Rate": "100.0 GTexel/s", + "FP16 (half) performance": "6.400 TFLOPS (2:1)", + "FP32 (float) performance": "3.200 TFLOPS", + "FP64 (double) performance": "200.0 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w5700.c3466", + "web_page_access_date": "2022/08/21/, 20:45:12", + "Product Name": "AMD Radeon Pro W5700", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 19th, 2019", + "Generation": "Radeon Pro\n(Navi Series)", + "Production": "Active", + "Launch Price": "799 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1400 MHz", + "Boost Clock": "1880 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "120.3 GPixel/s", + "Texture Rate": "270.7 GTexel/s", + "FP16 (half) performance": "17.33 TFLOPS (2:1)", + "FP32 (float) performance": "8.663 TFLOPS", + "FP64 (double) performance": "541.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "205 W", + "Suggested PSU": "550 W", + "Outputs": "5x mini-DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w5700x.c3583", + "web_page_access_date": "2022/08/21/, 20:45:19", + "Product Name": "AMD Radeon Pro W5700X", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 11th, 2019", + "Generation": "Radeon Pro Mac\n(Navi Series)", + "Production": "Active", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1243 MHz", + "Boost Clock": "2040 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "130.6 GPixel/s", + "Texture Rate": "326.4 GTexel/s", + "FP16 (half) performance": "20.89 TFLOPS (2:1)", + "FP32 (float) performance": "10.44 TFLOPS", + "FP64 (double) performance": "652.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "TDP": "205 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.14x Thunderbolt", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-3200.c3412", + "web_page_access_date": "2022/08/21/, 20:45:27", + "Product Name": "AMD Radeon Pro WX 3200", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "640", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 XT GL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2019", + "Generation": "Radeon Pro\n(WX x200)", + "Production": "Active", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1295 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.72 GPixel/s", + "Texture Rate": "41.44 GTexel/s", + "FP16 (half) performance": "1.658 TFLOPS (1:1)", + "FP32 (float) performance": "1.658 TFLOPS", + "FP64 (double) performance": "103.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "167 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-wx-3200-mobile.c3461", + "web_page_access_date": "2022/08/21/, 20:45:33", + "Product Name": "AMD Radeon Pro WX 3200 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "640", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 XT GLM", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 2nd, 2019", + "Generation": "Radeon Pro Mobile\n(WX x200)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1082 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.31 GPixel/s", + "Texture Rate": "34.62 GTexel/s", + "FP16 (half) performance": "1,385 GFLOPS (1:1)", + "FP32 (float) performance": "1,385 GFLOPS", + "FP64 (double) performance": "86.56 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-350-640sp.c3736", + "web_page_access_date": "2022/08/21/, 20:45:46", + "Product Name": "AMD Radeon R7 350 640SP", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 7th, 2019", + "Generation": "Pirate Islands\n(R7 300)", + "Predecessor": "Volcanic Islands", + "Successor": "Arctic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS", + "FP64 (double) performance": "74.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5300-xt.c3465", + "web_page_access_date": "2022/08/21/, 20:45:59", + "Product Name": "AMD Radeon RX 5300 XT", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XL", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 7th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1670 MHz", + "Game Clock": "1717 MHz", + "Boost Clock": "1845 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.04 GPixel/s", + "Texture Rate": "162.4 GTexel/s", + "FP16 (half) performance": "10.39 TFLOPS (2:1)", + "FP32 (float) performance": "5.196 TFLOPS", + "FP64 (double) performance": "324.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "180 mm\n\t\t\t\t\t7.1 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5300m.c3462", + "web_page_access_date": "2022/08/21/, 20:46:23", + "Product Name": "AMD Radeon RX 5300M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR6", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XLM", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 13th, 2019", + "Generation": "Mobility Radeon\n(Navi)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Game Clock": "1181 MHz", + "Boost Clock": "1445 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR6", + "Memory Bus": "96 bit", + "Bandwidth": "168.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.24 GPixel/s", + "Texture Rate": "127.2 GTexel/s", + "FP16 (half) performance": "8.138 TFLOPS (2:1)", + "FP32 (float) performance": "4.069 TFLOPS", + "FP64 (double) performance": "254.3 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5500-oem.c3459", + "web_page_access_date": "2022/08/22/, 18:53:09", + "Product Name": "AMD Radeon RX 5500 OEM", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0932220)", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 7th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Game Clock": "1670 MHz", + "Boost Clock": "1845 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.04 GPixel/s", + "Texture Rate": "162.4 GTexel/s", + "FP16 (half) performance": "10.39 TFLOPS (2:1)", + "FP32 (float) performance": "5.196 TFLOPS", + "FP64 (double) performance": "324.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "180 mm\n\t\t\t\t\t7.1 inches", + "TDP": "110 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "D332-57" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5500-xt.c3468", + "web_page_access_date": "2022/08/22/, 18:53:15", + "Product Name": "AMD Radeon RX 5500 XT", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-0932396)", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 12th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "169 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "49 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Game Clock": "1717 MHz", + "Boost Clock": "1845 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.04 GPixel/s", + "Texture Rate": "162.4 GTexel/s", + "FP16 (half) performance": "10.39 TFLOPS (2:1)", + "FP32 (float) performance": "5.196 TFLOPS", + "FP64 (double) performance": "324.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "180 mm\n\t\t\t\t\t7.1 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Part Number": "102-D33220", + "Board Number": "109-D33257" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {}, + "Retail boards based on this design (30)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5500m.c3460", + "web_page_access_date": "2022/08/22/, 18:53:22", + "Product Name": "AMD Radeon RX 5500M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XTM", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 7th, 2019", + "Generation": "Mobility Radeon\n(Navi)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1375 MHz", + "Game Clock": "1448 MHz", + "Boost Clock": "1645 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.64 GPixel/s", + "Texture Rate": "144.8 GTexel/s", + "FP16 (half) performance": "9.265 TFLOPS (2:1)", + "FP32 (float) performance": "4.632 TFLOPS", + "FP64 (double) performance": "289.5 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560-xt.c3388", + "web_page_access_date": "2022/08/22/, 18:53:28", + "Product Name": "AMD Radeon RX 560 XT", + "General Specs": { + "Graphics Processor": "Ellesmere", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Ellesmere", + "GPU Variant": "Polaris 10 LE1", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 13th, 2019", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1074 MHz", + "Boost Clock": "1226 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.23 GPixel/s", + "Texture Rate": "137.3 GTexel/s", + "FP16 (half) performance": "4.394 TFLOPS (1:1)", + "FP32 (float) performance": "4.394 TFLOPS", + "FP64 (double) performance": "274.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Ellesmere GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-560x-mobile.c3357", + "web_page_access_date": "2022/08/21/, 21:00:50", + "Product Name": "AMD Radeon RX 560X Mobile", + "General Specs": { + "Graphics Processor": "Polaris 31", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 31", + "GPU Variant": "Polaris 31 MXL", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "3,000 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2019", + "Generation": "Mobility Radeon\n(RX M500X)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1223 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.57 GPixel/s", + "Texture Rate": "68.49 GTexel/s", + "FP16 (half) performance": "2.192 TFLOPS (1:1)", + "FP32 (float) performance": "2.192 TFLOPS", + "FP64 (double) performance": "137.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 31 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5700.c3437", + "web_page_access_date": "2022/08/21/, 21:00:58", + "Product Name": "AMD Radeon RX 5700", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-0917220)", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 7th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "349 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1465 MHz", + "Game Clock": "1625 MHz", + "Boost Clock": "1725 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.4 GPixel/s", + "Texture Rate": "248.4 GTexel/s", + "FP16 (half) performance": "15.90 TFLOPS (2:1)", + "FP32 (float) performance": "7.949 TFLOPS", + "FP64 (double) performance": "496.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "268 mm\n\t\t\t\t\t10.6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Part Number": "102-D18202", + "Board Number": "109-D18237" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {}, + "Retail boards based on this design (39)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5700-xt.c3339", + "web_page_access_date": "2022/08/21/, 21:01:05", + "Product Name": "AMD Radeon RX 5700 XT", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0917210)", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 7th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "399 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "121 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1605 MHz", + "Game Clock": "1755 MHz", + "Boost Clock": "1905 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "121.9 GPixel/s", + "Texture Rate": "304.8 GTexel/s", + "FP16 (half) performance": "19.51 TFLOPS (2:1)", + "FP32 (float) performance": "9.754 TFLOPS", + "FP64 (double) performance": "609.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "272 mm\n\t\t\t\t\t10.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Part Number": "102-D18205", + "Board Number": "109-D18237" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {}, + "Retail boards based on this design (58)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5700-xt-50th-anniversary.c3438", + "web_page_access_date": "2022/08/21/, 21:01:13", + "Product Name": "AMD Radeon RX 5700 XT 50th Anniversary", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XTX", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 7th, 2019", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "121 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1680 MHz", + "Game Clock": "1830 MHz", + "Boost Clock": "1980 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "126.7 GPixel/s", + "Texture Rate": "316.8 GTexel/s", + "FP16 (half) performance": "20.28 TFLOPS (2:1)", + "FP32 (float) performance": "10.14 TFLOPS", + "FP64 (double) performance": "633.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "272 mm\n\t\t\t\t\t10.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Part Number": "102-D18206", + "Board Number": "109-D18237" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-640-mobile.c3413", + "web_page_access_date": "2022/08/21/, 21:01:22", + "Product Name": "AMD Radeon RX 640 Mobile", + "General Specs": { + "Graphics Processor": "Polaris 23", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 23", + "GPU Variant": "Polaris 23 XT", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "2,200 million", + "Die Size": "103 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 13th, 2019", + "Generation": "Mobility Radeon\n(M600)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1082 MHz", + "Boost Clock": "1218 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.49 GPixel/s", + "Texture Rate": "48.72 GTexel/s", + "FP16 (half) performance": "1.559 TFLOPS (1:1)", + "FP32 (float) performance": "1.559 TFLOPS", + "FP64 (double) performance": "97.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Polaris 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-11.c3593", + "web_page_access_date": "2022/08/21/, 21:01:30", + "Product Name": "AMD Radeon RX Vega 11", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 7th, 2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP16 (half) performance": "3.942 TFLOPS (2:1)", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-vega-11-mobile.c3597", + "web_page_access_date": "2022/08/21/, 21:01:38", + "Product Name": "AMD Radeon RX Vega 11 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 22nd, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP16 (half) performance": "3.942 TFLOPS (2:1)", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vii.c3358", + "web_page_access_date": "2022/08/21/, 21:01:46", + "Product Name": "AMD Radeon VII", + "General Specs": { + "Graphics Processor": "Vega 20", + "Cores": "3840", + "TMUs": "240", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 XT", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2019", + "Generation": "Vega II\n(Radeon VII)", + "Predecessor": "Vega", + "Successor": "Navi", + "Production": "Active", + "Launch Price": "699 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1400 MHz", + "Boost Clock": "1750 MHz", + "Peak Clock": "1802 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,024 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "64", + "Compute Units": "60", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "112.0 GPixel/s", + "Texture Rate": "420.0 GTexel/s", + "FP16 (half) performance": "26.88 TFLOPS (2:1)", + "FP32 (float) performance": "13.44 TFLOPS", + "FP64 (double) performance": "3.360 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "280 mm\n\t\t\t\t\t11 inches", + "Width": "125 mm\n\t\t\t\t\t4.9 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "295 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Board Number": "109-D36037-00_04", + "BIOS Number": "113-D3600200-105" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-10-mobile.c3598", + "web_page_access_date": "2022/08/21/, 21:01:54", + "Product Name": "AMD Radeon Vega 10 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "640", + "TMUs": "40", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 8th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "8", + "Compute Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP16 (half) performance": "3.584 TFLOPS (2:1)", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-10-mobile.c3288", + "web_page_access_date": "2022/08/21/, 21:02:03", + "Product Name": "AMD Radeon Vega 10 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "640", + "TMUs": "40", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 8th, 2019", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1301 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "8", + "Compute Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "10.41 GPixel/s", + "Texture Rate": "52.04 GTexel/s", + "FP16 (half) performance": "3.331 TFLOPS (2:1)", + "FP32 (float) performance": "1.665 TFLOPS", + "FP64 (double) performance": "104.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-10-mobile.c3591", + "web_page_access_date": "2022/08/21/, 21:02:11", + "Product Name": "AMD Radeon Vega 10 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "640", + "TMUs": "40", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "8", + "Compute Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP16 (half) performance": "3.584 TFLOPS (2:1)", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-11.c3595", + "web_page_access_date": "2022/08/21/, 21:02:18", + "Product Name": "AMD Radeon Vega 11", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "704", + "TMUs": "44", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 30th, 2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "704", + "TMUs": "44", + "ROPs": "8", + "Compute Units": "11" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP16 (half) performance": "3.942 TFLOPS (2:1)", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3.c3594", + "web_page_access_date": "2022/08/21/, 21:02:26", + "Product Name": "AMD Radeon Vega 3", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 20th, 2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "13.20 GTexel/s", + "FP16 (half) performance": "844.8 GFLOPS (2:1)", + "FP32 (float) performance": "422.4 GFLOPS", + "FP64 (double) performance": "26.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-embedded.c3340", + "web_page_access_date": "2022/08/21/, 21:02:34", + "Product Name": "AMD Radeon Vega 3 Embedded", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "28.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-embedded.c3341", + "web_page_access_date": "2022/08/21/, 21:02:42", + "Product Name": "AMD Radeon Vega 3 Embedded", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "24.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-mobile.c3655", + "web_page_access_date": "2022/08/21/, 21:02:50", + "Product Name": "AMD Radeon Vega 3 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1001 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.004 GPixel/s", + "Texture Rate": "12.01 GTexel/s", + "FP16 (half) performance": "768.8 GFLOPS (2:1)", + "FP32 (float) performance": "384.4 GFLOPS", + "FP64 (double) performance": "24.02 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6-mobile.c3384", + "web_page_access_date": "2022/08/21/, 21:02:58", + "Product Name": "AMD Radeon Vega 6 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 8th, 2019", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "8.808 GPixel/s", + "Texture Rate": "26.42 GTexel/s", + "FP16 (half) performance": "1.691 TFLOPS (2:1)", + "FP32 (float) performance": "845.6 GFLOPS", + "FP64 (double) performance": "52.85 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6-mobile.c3615", + "web_page_access_date": "2022/08/21/, 21:03:05", + "Product Name": "AMD Radeon Vega 6 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP16 (half) performance": "1.843 TFLOPS (2:1)", + "FP32 (float) performance": "921.6 GFLOPS", + "FP64 (double) performance": "57.60 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8.c3286", + "web_page_access_date": "2022/08/21/, 21:03:13", + "Product Name": "AMD Radeon Vega 8", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 7th, 2019", + "Generation": "Picasso\n(Vega)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1250 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "10.00 GPixel/s", + "Texture Rate": "40.00 GTexel/s", + "FP16 (half) performance": "2.560 TFLOPS (2:1)", + "FP32 (float) performance": "1,280 GFLOPS", + "FP64 (double) performance": "80.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-mobile.c3596", + "web_page_access_date": "2022/08/21/, 21:03:21", + "Product Name": "AMD Radeon Vega 8 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 8th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP16 (half) performance": "2.458 TFLOPS (2:1)", + "FP32 (float) performance": "1,229 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-mobile.c3289", + "web_page_access_date": "2022/08/21/, 21:03:28", + "Product Name": "AMD Radeon Vega 8 Mobile", + "General Specs": { + "Graphics Processor": "Raven", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Raven", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 8th, 2019", + "Generation": "Raven Ridge\n(Vega Mobile)", + "Predecessor": "Stoney Ridge", + "Successor": "Picasso", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1101 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "8.808 GPixel/s", + "Texture Rate": "35.23 GTexel/s", + "FP16 (half) performance": "2.255 TFLOPS (2:1)", + "FP32 (float) performance": "1,127 GFLOPS", + "FP64 (double) performance": "70.46 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Raven GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-mobile.c3360", + "web_page_access_date": "2022/08/21/, 21:03:36", + "Product Name": "AMD Radeon Vega 8 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP16 (half) performance": "2.458 TFLOPS (2:1)", + "FP32 (float) performance": "1,229 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-9-mobile.c3614", + "web_page_access_date": "2022/08/21/, 21:03:44", + "Product Name": "AMD Radeon Vega 9 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "576", + "TMUs": "36", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 22nd, 2019", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "36", + "ROPs": "8", + "Compute Units": "9" + }, + "Theoretical Performance": { + "Pixel Rate": "10.40 GPixel/s", + "Texture Rate": "46.80 GTexel/s", + "FP16 (half) performance": "2.995 TFLOPS (2:1)", + "FP32 (float) performance": "1,498 GFLOPS", + "FP64 (double) performance": "93.60 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/aerobox-gpu.c3648", + "web_page_access_date": "2022/08/21/, 21:03:51", + "Product Name": "AMD AeroBox GPU", + "General Specs": { + "Graphics Processor": "Kryptos", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Kryptos", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Mar 13th, 2020", + "Generation": "Console GPU\n(Chuwi)", + "Production": "End-of-life" + }, + "Clock Speeds": { + "Base Clock": "935 MHz", + "Boost Clock": "985 MHz", + "Memory Clock": "1066 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.1 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Memory Bus": "256 bit", + "Bandwidth": "68.22 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14" + }, + "Theoretical Performance": { + "Pixel Rate": "15.76 GPixel/s", + "Texture Rate": "55.16 GTexel/s", + "FP16 (half) performance": "3.530 TFLOPS (2:1)", + "FP32 (float) performance": "1.765 TFLOPS", + "FP64 (double) performance": "110.3 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "289 mm\n\t\t\t\t\t11.4 inches", + "Width": "238 mm\n\t\t\t\t\t9.4 inches", + "Height": "56 mm\n\t\t\t\t\t2.2 inches", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Console Notes": {}, + "Kryptos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/atari-vcs-400-gpu.c3738", + "web_page_access_date": "2022/08/21/, 21:03:59", + "Product Name": "AMD Atari VCS 400 GPU", + "General Specs": { + "Graphics Processor": "Banded Kestrel", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Banded Kestrel", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 14th, 2020", + "Generation": "Console GPU\n(Atari)", + "Production": "Active", + "Launch Price": "249 USD" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Memory Bus": "128 bit", + "Bandwidth": "38.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.804 GPixel/s", + "Texture Rate": "14.41 GTexel/s", + "FP16 (half) performance": "922.4 GFLOPS (2:1)", + "FP32 (float) performance": "461.2 GFLOPS", + "FP64 (double) performance": "28.82 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "295 mm\n\t\t\t\t\t11.6 inches", + "Width": "150 mm\n\t\t\t\t\t5.9 inches", + "Height": "48 mm\n\t\t\t\t\t1.9 inches", + "Weight": "1.4 kg (3.0 lbs)", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Console Notes": {}, + "Banded Kestrel GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/atari-vcs-800-gpu.c3654", + "web_page_access_date": "2022/08/21/, 21:04:07", + "Product Name": "AMD Atari VCS 800 GPU", + "General Specs": { + "Graphics Processor": "Banded Kestrel", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "8 GB", + "Memory Type": "DDR4", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Banded Kestrel", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 14th, 2020", + "Generation": "Console GPU\n(Atari)", + "Production": "Active", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "DDR4", + "Memory Bus": "128 bit", + "Bandwidth": "38.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.804 GPixel/s", + "Texture Rate": "14.41 GTexel/s", + "FP16 (half) performance": "922.4 GFLOPS (2:1)", + "FP32 (float) performance": "461.2 GFLOPS", + "FP64 (double) performance": "28.82 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "295 mm\n\t\t\t\t\t11.6 inches", + "Width": "150 mm\n\t\t\t\t\t5.9 inches", + "Height": "48 mm\n\t\t\t\t\t1.9 inches", + "Weight": "1.4 kg (3.0 lbs)", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Console Notes": {}, + "Banded Kestrel GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-5-gpu.c3480", + "web_page_access_date": "2022/08/21/, 21:04:15", + "Product Name": "AMD Playstation 5 GPU", + "General Specs": { + "Graphics Processor": "Oberon", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Oberon", + "GPU Variant": "CXD90044GB", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "unknown", + "Die Size": "308 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2020", + "Generation": "Console GPU\n(Sony)", + "Production": "Active", + "Launch Price": "499 USD" + }, + "Clock Speeds": { + "GPU Clock": "2233 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "142.9 GPixel/s", + "Texture Rate": "321.6 GTexel/s", + "FP16 (half) performance": "20.58 TFLOPS (2:1)", + "FP32 (float) performance": "10.29 TFLOPS", + "FP64 (double) performance": "643.1 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "390 mm\n\t\t\t\t\t15.4 inches", + "Width": "260 mm\n\t\t\t\t\t10.2 inches", + "Height": "104 mm\n\t\t\t\t\t4.1 inches", + "Weight": "4.5 kg (9.9 lbs)", + "TDP": "180 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Oberon GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-320sp.c3613", + "web_page_access_date": "2022/08/21/, 21:04:22", + "Product Name": "AMD Radeon Graphics 320SP", + "General Specs": { + "Graphics Processor": "Renoir", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Renoir", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2020", + "Generation": "Renoir\n(Vega Mobile)", + "Predecessor": "Picasso", + "Successor": "Cezanne", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "28.00 GTexel/s", + "FP16 (half) performance": "1.792 TFLOPS (2:1)", + "FP32 (float) performance": "896.0 GFLOPS", + "FP64 (double) performance": "56.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Renoir GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-384sp.c3511", + "web_page_access_date": "2022/08/21/, 21:04:30", + "Product Name": "AMD Radeon Graphics 384SP", + "General Specs": { + "Graphics Processor": "Renoir", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Renoir", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2020", + "Generation": "Renoir\n(Vega Mobile)", + "Predecessor": "Picasso", + "Successor": "Cezanne", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "12.00 GPixel/s", + "Texture Rate": "36.00 GTexel/s", + "FP16 (half) performance": "2.304 TFLOPS (2:1)", + "FP32 (float) performance": "1,152 GFLOPS", + "FP64 (double) performance": "72.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Renoir GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-448sp.c3510", + "web_page_access_date": "2022/08/21/, 21:04:38", + "Product Name": "AMD Radeon Graphics 448SP", + "General Specs": { + "Graphics Processor": "Renoir", + "Cores": "448", + "TMUs": "28", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Renoir", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2020", + "Generation": "Renoir\n(Vega Mobile)", + "Predecessor": "Picasso", + "Successor": "Cezanne", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "28", + "ROPs": "8", + "Compute Units": "7" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "44.80 GTexel/s", + "FP16 (half) performance": "2.867 TFLOPS (2:1)", + "FP32 (float) performance": "1,434 GFLOPS", + "FP64 (double) performance": "89.60 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Renoir GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-512sp.c3667", + "web_page_access_date": "2022/08/21/, 21:04:46", + "Product Name": "AMD Radeon Graphics 512SP", + "General Specs": { + "Graphics Processor": "Renoir", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Renoir", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Unknown", + "Generation": "Renoir\n(Vega Mobile)", + "Predecessor": "Picasso", + "Successor": "Cezanne", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1800 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "14.40 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "3.686 TFLOPS (2:1)", + "FP32 (float) performance": "1.843 TFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Renoir GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-512sp.c3587", + "web_page_access_date": "2022/08/21/, 21:04:54", + "Product Name": "AMD Radeon Graphics 512SP", + "General Specs": { + "Graphics Processor": "Renoir", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Renoir", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Mar 7th, 2020", + "Generation": "Renoir\n(Vega Mobile)", + "Predecessor": "Picasso", + "Successor": "Cezanne", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1750 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "14.00 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP16 (half) performance": "3.584 TFLOPS (2:1)", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Renoir GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi100.c3496", + "web_page_access_date": "2022/08/21/, 21:05:01", + "Product Name": "AMD Radeon Instinct MI100", + "General Specs": { + "Graphics Processor": "Arcturus", + "Cores": "7680", + "TMUs": "480", + "ROPs": "64", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Arcturus", + "GPU Variant": "Arcturus XL", + "Architecture": "CDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "25,600 million", + "Die Size": "750 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 16th, 2020", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1502 MHz", + "SOC Clock": "1091 MHz", + "UVD Clock": "1403 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,229 GB/s" + }, + "Render Config": { + "Shading Units": "7680", + "TMUs": "480", + "ROPs": "64", + "Compute Units": "120", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.13 GPixel/s", + "Texture Rate": "721.0 GTexel/s", + "FP16 (half) performance": "184.6 TFLOPS (8:1)", + "FP32 (float) performance": "23.07 TFLOPS", + "FP64 (double) performance": "11.54 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "109-D05187", + "BIOS Number": "113-D3430300-025" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "2.1", + "Vulkan": "N/A", + "Shader Model": "N/A" + }, + "Arcturus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5300.c3665", + "web_page_access_date": "2022/08/21/, 21:05:09", + "Product Name": "AMD Radeon Pro 5300", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PRO XE", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 4th, 2020", + "Generation": "Radeon Pro Mac\n(Navi Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.80 GPixel/s", + "Texture Rate": "132.0 GTexel/s", + "FP16 (half) performance": "8.448 TFLOPS (2:1)", + "FP32 (float) performance": "4.224 TFLOPS", + "FP64 (double) performance": "264.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5500-xt.c3664", + "web_page_access_date": "2022/08/21/, 21:05:17", + "Product Name": "AMD Radeon Pro 5500 XT", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PRO XL", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 4th, 2020", + "Generation": "Radeon Pro Mac\n(Navi Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1187 MHz", + "Boost Clock": "1757 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.22 GPixel/s", + "Texture Rate": "168.7 GTexel/s", + "FP16 (half) performance": "10.80 TFLOPS (2:1)", + "FP32 (float) performance": "5.398 TFLOPS", + "FP64 (double) performance": "337.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "125 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5600m.c3612", + "web_page_access_date": "2022/08/21/, 21:05:24", + "Product Name": "AMD Radeon Pro 5600M", + "General Specs": { + "Graphics Processor": "Navi 12", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 12", + "GPU Variant": "Navi 12", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Jun 15th, 2020", + "Generation": "Radeon Pro Mac\n(Navi Mobile)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1035 MHz", + "Memory Clock": "770 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1540 Mbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "394.2 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "66.24 GPixel/s", + "Texture Rate": "165.6 GTexel/s", + "FP16 (half) performance": "10.60 TFLOPS (2:1)", + "FP32 (float) performance": "5.299 TFLOPS", + "FP64 (double) performance": "331.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 12 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5700.c3663", + "web_page_access_date": "2022/08/21/, 21:05:32", + "Product Name": "AMD Radeon Pro 5700", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XLA", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 4th, 2020", + "Generation": "Radeon Pro Mac\n(Navi Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1243 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "86.40 GPixel/s", + "Texture Rate": "194.4 GTexel/s", + "FP16 (half) performance": "12.44 TFLOPS (2:1)", + "FP32 (float) performance": "6.221 TFLOPS", + "FP64 (double) performance": "388.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-5700-xt.c3662", + "web_page_access_date": "2022/08/21/, 21:05:40", + "Product Name": "AMD Radeon Pro 5700 XT", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XTA", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 4th, 2020", + "Generation": "Radeon Pro Mac\n(Navi Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1243 MHz", + "Boost Clock": "1499 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "95.94 GPixel/s", + "Texture Rate": "239.8 GTexel/s", + "FP16 (half) performance": "15.35 TFLOPS (2:1)", + "FP32 (float) performance": "7.675 TFLOPS", + "FP64 (double) performance": "479.7 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v520.c3755", + "web_page_access_date": "2022/08/21/, 21:05:48", + "Product Name": "AMD Radeon Pro V520", + "General Specs": { + "Graphics Processor": "Navi 12", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Bus Width": "2048 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 12", + "GPU Variant": "Navi 12", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Dec 1st, 2020", + "Generation": "Radeon Pro\n(Navi Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "HBM2", + "Memory Bus": "2048 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "102.4 GPixel/s", + "Texture Rate": "230.4 GTexel/s", + "FP16 (half) performance": "14.75 TFLOPS (2:1)", + "FP32 (float) performance": "7.373 TFLOPS", + "FP64 (double) performance": "460.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 12 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-vii.c3575", + "web_page_access_date": "2022/08/21/, 21:05:55", + "Product Name": "AMD Radeon Pro VII", + "General Specs": { + "Graphics Processor": "Vega 20", + "Cores": "3840", + "TMUs": "240", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Vega 20", + "GPU Variant": "Vega 20 GL XT", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "13,230 million", + "Die Size": "331 mm²" + }, + "Graphics Card": { + "Release Date": "May 13th, 2020", + "Generation": "Radeon Pro\n(Vega Series)", + "Production": "Active", + "Launch Price": "1,899 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1400 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,024 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "64", + "Compute Units": "60", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "108.8 GPixel/s", + "Texture Rate": "408.0 GTexel/s", + "FP16 (half) performance": "26.11 TFLOPS (2:1)", + "FP32 (float) performance": "13.06 TFLOPS", + "FP64 (double) performance": "6.528 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D360-37" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Vega 20 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w5500.c3479", + "web_page_access_date": "2022/08/21/, 21:06:04", + "Product Name": "AMD Radeon Pro W5500", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PRO XL", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 10th, 2020", + "Generation": "Radeon Pro\n(Navi Series)", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1744 MHz", + "Boost Clock": "1855 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.36 GPixel/s", + "Texture Rate": "163.2 GTexel/s", + "FP16 (half) performance": "10.45 TFLOPS (2:1)", + "FP32 (float) performance": "5.224 TFLOPS", + "FP64 (double) performance": "326.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "125 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "D325-87" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w5500m.c3478", + "web_page_access_date": "2022/08/21/, 21:06:11", + "Product Name": "AMD Radeon Pro W5500M", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 PRO XTM", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 10th, 2020", + "Generation": "Radeon Pro Mobile\n(W5x00M)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.40 GPixel/s", + "Texture Rate": "149.6 GTexel/s", + "FP16 (half) performance": "9.574 TFLOPS (2:1)", + "FP32 (float) performance": "4.787 TFLOPS", + "FP64 (double) performance": "299.2 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "85 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5300.c3584", + "web_page_access_date": "2022/08/21/, 21:06:19", + "Product Name": "AMD Radeon RX 5300", + "General Specs": { + "Graphics Processor": "Navi 14", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR6", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 14", + "GPU Variant": "Navi 14 XE", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "6,400 million", + "Die Size": "158 mm²" + }, + "Graphics Card": { + "Release Date": "May 28th, 2020", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "129 USD", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1327 MHz", + "Game Clock": "1448 MHz", + "Boost Clock": "1645 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR6", + "Memory Bus": "96 bit", + "Bandwidth": "168.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.64 GPixel/s", + "Texture Rate": "144.8 GTexel/s", + "FP16 (half) performance": "9.265 TFLOPS (2:1)", + "FP32 (float) performance": "4.632 TFLOPS", + "FP64 (double) performance": "289.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "180 mm\n\t\t\t\t\t7.1 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 14 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5600-oem.c3475", + "web_page_access_date": "2022/08/21/, 21:06:27", + "Product Name": "AMD Radeon RX 5600 OEM", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XE", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 21st, 2020", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1130 MHz", + "Game Clock": "1375 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Compute Units": "32", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.84 GPixel/s", + "Texture Rate": "199.7 GTexel/s", + "FP16 (half) performance": "12.78 TFLOPS (2:1)", + "FP32 (float) performance": "6.390 TFLOPS", + "FP64 (double) performance": "399.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5600-xt.c3474", + "web_page_access_date": "2022/08/21/, 21:06:34", + "Product Name": "AMD Radeon RX 5600 XT", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XLE\n\t\t\t\t\t\t\t\t\t\t\n(215-0917338)", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 21st, 2020", + "Generation": "Navi\n(RX 5000)", + "Predecessor": "Vega", + "Successor": "Navi II", + "Production": "Active", + "Launch Price": "279 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "78 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1130 MHz", + "Game Clock": "1375 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.84 GPixel/s", + "Texture Rate": "224.6 GTexel/s", + "FP16 (half) performance": "14.38 TFLOPS (2:1)", + "FP32 (float) performance": "7.188 TFLOPS", + "FP64 (double) performance": "449.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {}, + "Retail boards based on this design (50)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5600m.c3492", + "web_page_access_date": "2022/08/21/, 21:06:42", + "Product Name": "AMD Radeon RX 5600M", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XME", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 7th, 2020", + "Generation": "Mobility Radeon\n(Navi)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1035 MHz", + "Game Clock": "1190 MHz", + "Boost Clock": "1265 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "80.96 GPixel/s", + "Texture Rate": "182.2 GTexel/s", + "FP16 (half) performance": "11.66 TFLOPS (2:1)", + "FP32 (float) performance": "5.829 TFLOPS", + "FP64 (double) performance": "364.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-5700m.c3476", + "web_page_access_date": "2022/08/21/, 21:06:50", + "Product Name": "AMD Radeon RX 5700M", + "General Specs": { + "Graphics Processor": "Navi 10", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 10", + "GPU Variant": "Navi 10 XML", + "Architecture": "RDNA 1.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "10,300 million", + "Die Size": "251 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2020", + "Generation": "Mobility Radeon\n(Navi)", + "Predecessor": "Crystal System", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1465 MHz", + "Game Clock": "1620 MHz", + "Boost Clock": "1720 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.1 GPixel/s", + "Texture Rate": "247.7 GTexel/s", + "FP16 (half) performance": "15.85 TFLOPS (2:1)", + "FP32 (float) performance": "7.926 TFLOPS", + "FP64 (double) performance": "495.4 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "180 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 10 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-590-gme.c3505", + "web_page_access_date": "2022/08/21/, 21:06:57", + "Product Name": "AMD Radeon RX 590 GME", + "General Specs": { + "Graphics Processor": "Polaris 20", + "Cores": "2304", + "TMUs": "144", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Polaris 20", + "GPU Variant": "Polaris 20 XTR\n\t\t\t\t\t\t\t\t\t\t\n(215-0910066)", + "Architecture": "GCN 4.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "5,700 million", + "Die Size": "232 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 9th, 2020", + "Generation": "Polaris\n(RX 500)", + "Predecessor": "Arctic Islands", + "Successor": "Vega", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1257 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "32", + "Compute Units": "36", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.16 GPixel/s", + "Texture Rate": "198.7 GTexel/s", + "FP16 (half) performance": "6.359 TFLOPS (1:1)", + "FP32 (float) performance": "6.359 TFLOPS", + "FP64 (double) performance": "397.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.0b3x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "C940" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Polaris 20 GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6800.c3713", + "web_page_access_date": "2022/08/21/, 21:07:05", + "Product Name": "AMD Radeon RX 6800", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-121000187)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 28th, 2020", + "Availability": "Nov 18th, 2020", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "579 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "22 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1700 MHz", + "Game Clock": "1815 MHz", + "Boost Clock": "2105 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "Compute Units": "60", + "RT Cores": "60", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "202.1 GPixel/s", + "Texture Rate": "505.2 GTexel/s", + "FP16 (half) performance": "32.33 TFLOPS (2:1)", + "FP32 (float) performance": "16.17 TFLOPS", + "FP64 (double) performance": "1,010 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Part Number": "102-D41209", + "Board Number": "109-D412A7" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {}, + "Retail boards based on this design (29)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6800-xt.c3694", + "web_page_access_date": "2022/08/21/, 21:07:13", + "Product Name": "AMD Radeon RX 6800 XT", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "4608", + "TMUs": "288", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-121000177)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 28th, 2020", + "Availability": "Nov 18th, 2020", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "57 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1825 MHz", + "Game Clock": "2015 MHz", + "Boost Clock": "2250 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "128", + "Compute Units": "72", + "RT Cores": "72", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "288.0 GPixel/s", + "Texture Rate": "648.0 GTexel/s", + "FP16 (half) performance": "41.47 TFLOPS (2:1)", + "FP32 (float) performance": "20.74 TFLOPS", + "FP64 (double) performance": "1,296 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Part Number": "102-D41205", + "Board Number": "109-D412A7" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {}, + "Retail boards based on this design (36)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6900-xt.c3481", + "web_page_access_date": "2022/08/22/, 18:53:35", + "Product Name": "AMD Radeon RX 6900 XT", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-121000167)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 28th, 2020", + "Availability": "Dec 8th, 2020", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "33 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1825 MHz", + "Game Clock": "2015 MHz", + "Boost Clock": "2250 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "Compute Units": "80", + "RT Cores": "80", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "288.0 GPixel/s", + "Texture Rate": "720.0 GTexel/s", + "FP16 (half) performance": "46.08 TFLOPS (2:1)", + "FP32 (float) performance": "23.04 TFLOPS", + "FP64 (double) performance": "1,440 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Part Number": "102-D412", + "Board Number": "109-D412A7" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {}, + "Retail boards based on this design (46)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6900-xtx.c3800", + "web_page_access_date": "2022/08/22/, 18:53:41", + "Product Name": "AMD Radeon RX 6900 XTX", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 XTXH\n\t\t\t\t\t\t\t\t\t\t\n(215-121000247)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2075 MHz", + "Game Clock": "2250 MHz", + "Boost Clock": "2435 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "576.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "Compute Units": "80", + "RT Cores": "80", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "311.7 GPixel/s", + "Texture Rate": "779.2 GTexel/s", + "FP16 (half) performance": "49.87 TFLOPS (2:1)", + "FP32 (float) performance": "24.93 TFLOPS", + "FP64 (double) performance": "1.558 TFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "135 mm\n\t\t\t\t\t5.3 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "330 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Part Number": "102-D412" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-3-mobile.c3592", + "web_page_access_date": "2022/08/22/, 18:53:47", + "Product Name": "AMD Radeon Vega 3 Mobile", + "General Specs": { + "Graphics Processor": "Picasso", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Picasso", + "Architecture": "GCN 5.0", + "Foundry": "GlobalFoundries", + "Process Size": "14 nm", + "Transistors": "4,940 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 6th, 2020", + "Generation": "Picasso\n(Vega Mobile)", + "Predecessor": "Raven Ridge", + "Successor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "24.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Picasso GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xbox-series-s-gpu.c3683", + "web_page_access_date": "2022/08/22/, 18:53:54", + "Product Name": "AMD Xbox Series S GPU", + "General Specs": { + "Graphics Processor": "Lockhart", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lockhart", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "8,000 million", + "Die Size": "197 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2020", + "Generation": "Console GPU\n(Microsoft)", + "Production": "Active", + "Launch Price": "299 USD" + }, + "Clock Speeds": { + "GPU Clock": "1565 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "50.08 GPixel/s", + "Texture Rate": "125.2 GTexel/s", + "FP16 (half) performance": "8.013 TFLOPS (2:1)", + "FP32 (float) performance": "4.006 TFLOPS", + "FP64 (double) performance": "250.4 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "274 mm\n\t\t\t\t\t10.8 inches", + "Width": "151 mm\n\t\t\t\t\t5.9 inches", + "Height": "64 mm\n\t\t\t\t\t2.5 inches", + "Weight": "1.93 kg (4.25 lbs)", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Console Notes": {}, + "Lockhart GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xbox-series-x-gpu.c3482", + "web_page_access_date": "2022/08/22/, 18:54:00", + "Product Name": "AMD Xbox Series X GPU", + "General Specs": { + "Graphics Processor": "Scarlett", + "Cores": "3328", + "TMUs": "208", + "ROPs": "64", + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "Scarlett", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "15,300 million", + "Die Size": "360 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2020", + "Generation": "Console GPU\n(Microsoft)", + "Production": "Active", + "Launch Price": "499 USD" + }, + "Clock Speeds": { + "GPU Clock": "1825 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Memory Bus": "320 bit", + "Bandwidth": "560.0 GB/s" + }, + "Render Config": { + "Shading Units": "3328", + "TMUs": "208", + "ROPs": "64", + "Compute Units": "52", + "L2 Cache": "5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "116.8 GPixel/s", + "Texture Rate": "379.6 GTexel/s", + "FP16 (half) performance": "24.29 TFLOPS (2:1)", + "FP32 (float) performance": "12.15 TFLOPS", + "FP64 (double) performance": "759.2 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "301 mm\n\t\t\t\t\t11.9 inches", + "Width": "151 mm\n\t\t\t\t\t5.9 inches", + "Height": "151 mm\n\t\t\t\t\t5.9 inches", + "Weight": "4.85 kg (9.8 lbs)", + "TDP": "200 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Console Notes": {}, + "Scarlett GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-graphics-448sp.c3784", + "web_page_access_date": "2022/08/22/, 18:54:06", + "Product Name": "AMD Radeon Graphics 448SP", + "General Specs": { + "Graphics Processor": "Lucienne", + "Cores": "448", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Lucienne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 12th, 2021", + "Generation": "Lucienne\n(Vega Mobile)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "7" + }, + "Theoretical Performance": { + "Pixel Rate": "14.40 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "3.226 TFLOPS (2:1)", + "FP32 (float) performance": "1.613 TFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Lucienne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi210.c3857", + "web_page_access_date": "2022/08/22/, 18:54:13", + "Product Name": "AMD Radeon Instinct MI210", + "General Specs": { + "Graphics Processor": "Aldebaran", + "Cores": "6656", + "TMUs": "416", + "ROPs": "N/A", + "Memory Size": "64 GB", + "Memory Type": "HBM2e", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Aldebaran", + "GPU Variant": "Aldebaran", + "Architecture": "CDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "58,200 million", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Dec 2021", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "1600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "64 GB", + "Memory Type": "HBM2e", + "Memory Bus": "4096 bit", + "Bandwidth": "1,638 GB/s" + }, + "Render Config": { + "Shading Units": "6656", + "TMUs": "416", + "ROPs": "0", + "Compute Units": "104", + "MCM": "1", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "707.2 GTexel/s", + "FP16 (half) performance": "181.0 TFLOPS (8:1)", + "FP32 (float) performance": "22.63 TFLOPS", + "FP64 (double) performance": "22.63 TFLOPS (1:1)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "Shader Model": "N/A" + }, + "Aldebaran GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi250.c3847", + "web_page_access_date": "2022/08/22/, 18:54:19", + "Product Name": "AMD Radeon Instinct MI250", + "General Specs": { + "Graphics Processor": "Aldebaran", + "Cores": "13312", + "TMUs": "832", + "ROPs": "N/A", + "Memory Size": "128 GB", + "Memory Type": "HBM2e", + "Bus Width": "8192 bit" + }, + "Graphics Processor": { + "GPU Name": "Aldebaran", + "GPU Variant": "Aldebaran", + "Architecture": "CDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "58,200 million", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Nov 8th, 2021", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "1600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "128 GB", + "Memory Type": "HBM2e", + "Memory Bus": "8192 bit", + "Bandwidth": "3,277 GB/s" + }, + "Render Config": { + "Shading Units": "13312", + "TMUs": "832", + "ROPs": "0", + "Compute Units": "208", + "MCM": "2", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "1,414 GTexel/s", + "FP16 (half) performance": "362.1 TFLOPS (8:1)", + "FP32 (float) performance": "45.26 TFLOPS", + "FP64 (double) performance": "45.26 TFLOPS (1:1)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "Shader Model": "N/A" + }, + "Aldebaran GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-instinct-mi250x.c3837", + "web_page_access_date": "2022/08/22/, 18:54:25", + "Product Name": "AMD Radeon Instinct MI250X", + "General Specs": { + "Graphics Processor": "Aldebaran", + "Cores": "14080", + "TMUs": "880", + "ROPs": "N/A", + "Memory Size": "128 GB", + "Memory Type": "HBM2e", + "Bus Width": "8192 bit" + }, + "Graphics Processor": { + "GPU Name": "Aldebaran", + "GPU Variant": "Aldebaran XT", + "Architecture": "CDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "58,200 million", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Nov 8th, 2021", + "Generation": "Radeon Instinct\n(MIx)", + "Production": "unknown", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "1600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "128 GB", + "Memory Type": "HBM2e", + "Memory Bus": "8192 bit", + "Bandwidth": "3,277 GB/s" + }, + "Render Config": { + "Shading Units": "14080", + "TMUs": "880", + "ROPs": "0", + "Compute Units": "220", + "MCM": "2", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "1,496 GTexel/s", + "FP16 (half) performance": "383.0 TFLOPS (8:1)", + "FP32 (float) performance": "47.87 TFLOPS", + "FP64 (double) performance": "47.87 TFLOPS (1:1)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "Shader Model": "N/A" + }, + "Aldebaran GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-v620.c3846", + "web_page_access_date": "2022/08/22/, 18:54:32", + "Product Name": "AMD Radeon Pro V620", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "4608", + "TMUs": "288", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-121000177)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 4th, 2021", + "Generation": "Radeon Pro\n(Navi II Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1825 MHz", + "Boost Clock": "2200 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "128", + "Compute Units": "72", + "RT Cores": "72", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "281.6 GPixel/s", + "Texture Rate": "633.6 GTexel/s", + "FP16 (half) performance": "40.55 TFLOPS (2:1)", + "FP32 (float) performance": "20.28 TFLOPS", + "FP64 (double) performance": "1,267 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6600.c3818", + "web_page_access_date": "2022/08/21/, 21:16:42", + "Product Name": "AMD Radeon Pro W6600", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 8th, 2021", + "Availability": "Jul, 2021", + "Generation": "Radeon Pro\n(Navi II Series)", + "Production": "Active", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2331 MHz", + "Boost Clock": "2580 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.1 GPixel/s", + "Texture Rate": "289.0 GTexel/s", + "FP16 (half) performance": "18.49 TFLOPS (2:1)", + "FP32 (float) performance": "9.247 TFLOPS", + "FP64 (double) performance": "577.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6600m.c3819", + "web_page_access_date": "2022/08/21/, 21:17:30", + "Product Name": "AMD Radeon Pro W6600M", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 8th, 2021", + "Generation": "Radeon Pro Mobile\n(W6x00M)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2200 MHz", + "Boost Clock": "2903 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "185.8 GPixel/s", + "Texture Rate": "325.1 GTexel/s", + "FP16 (half) performance": "20.81 TFLOPS (2:1)", + "FP32 (float) performance": "10.40 TFLOPS", + "FP64 (double) performance": "650.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "90 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6800.c3809", + "web_page_access_date": "2022/08/21/, 21:17:35", + "Product Name": "AMD Radeon Pro W6800", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 8th, 2021", + "Generation": "Radeon Pro\n(Navi II Series)", + "Production": "Active", + "Launch Price": "2,249 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2075 MHz", + "Boost Clock": "2320 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "Compute Units": "60", + "RT Cores": "60", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "222.7 GPixel/s", + "Texture Rate": "556.8 GTexel/s", + "FP16 (half) performance": "35.64 TFLOPS (2:1)", + "FP32 (float) performance": "17.82 TFLOPS", + "FP64 (double) performance": "1,114 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Part Number": "102-D16487", + "Board Number": "D164" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6800x.c3826", + "web_page_access_date": "2022/08/21/, 21:17:44", + "Product Name": "AMD Radeon Pro W6800X", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 Pro-XLA", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 3rd, 2021", + "Generation": "Radeon Pro Mac\n(Navi II Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1800 MHz", + "Boost Clock": "2075 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "Compute Units": "60", + "RT Cores": "60", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "199.2 GPixel/s", + "Texture Rate": "498.0 GTexel/s", + "FP16 (half) performance": "31.87 TFLOPS (2:1)", + "FP32 (float) performance": "15.94 TFLOPS", + "FP64 (double) performance": "996.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "1x HDMI 2.14x Thunderbolt", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6800x-duo.c3824", + "web_page_access_date": "2022/08/21/, 21:17:55", + "Product Name": "AMD Radeon Pro W6800X Duo", + "General Specs": { + "Graphics Processor": "Navi 21 x2", + "Cores": "3840 x2", + "TMUs": "240 x2", + "ROPs": "96 x2", + "Memory Size": "32 GB x2", + "Memory Type": "GDDR6", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 Pro-XLA", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 3rd, 2021", + "Generation": "Radeon Pro Mac\n(Navi II Series)", + "Production": "Active", + "Launch Price": "4,999 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1800 MHz", + "Boost Clock": "1975 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "Compute Units": "60", + "RT Cores": "60", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "189.6 GPixel/s", + "Texture Rate": "474.0 GTexel/s", + "FP16 (half) performance": "30.34 TFLOPS (2:1)", + "FP32 (float) performance": "15.17 TFLOPS", + "FP64 (double) performance": "948.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "1x HDMI 2.14x Thunderbolt", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6900x.c3825", + "web_page_access_date": "2022/08/21/, 21:18:00", + "Product Name": "AMD Radeon Pro W6900X", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 Pro-XTA", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 3rd, 2021", + "Generation": "Radeon Pro Mac\n(Navi II Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1825 MHz", + "Boost Clock": "2150 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "Compute Units": "80", + "RT Cores": "80", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "275.2 GPixel/s", + "Texture Rate": "688.0 GTexel/s", + "FP16 (half) performance": "44.03 TFLOPS (2:1)", + "FP32 (float) performance": "22.02 TFLOPS", + "FP64 (double) performance": "1,376 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.14x Thunderbolt", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6600.c3696", + "web_page_access_date": "2022/08/21/, 21:18:07", + "Product Name": "AMD Radeon RX 6600", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "GPU Variant": "Navi 23 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-130000016)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 13th, 2021", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "329 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "21 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1626 MHz", + "Game Clock": "2044 MHz", + "Boost Clock": "2491 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "159.4 GPixel/s", + "Texture Rate": "279.0 GTexel/s", + "FP16 (half) performance": "17.86 TFLOPS (2:1)", + "FP32 (float) performance": "8.928 TFLOPS", + "FP64 (double) performance": "558.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "190 mm\n\t\t\t\t\t7.5 inches", + "Width": "110 mm\n\t\t\t\t\t4.3 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "132 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6600-xt.c3774", + "web_page_access_date": "2022/08/21/, 21:18:12", + "Product Name": "AMD Radeon RX 6600 XT", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "GPU Variant": "Navi 23 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-130000006)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 30th, 2021", + "Availability": "Aug 10th, 2021", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "379 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1968 MHz", + "Game Clock": "2359 MHz", + "Boost Clock": "2589 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Compute Units": "32", + "RT Cores": "32", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.7 GPixel/s", + "Texture Rate": "331.4 GTexel/s", + "FP16 (half) performance": "21.21 TFLOPS (2:1)", + "FP32 (float) performance": "10.60 TFLOPS", + "FP64 (double) performance": "662.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "190 mm\n\t\t\t\t\t7.5 inches", + "Width": "110 mm\n\t\t\t\t\t4.3 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {}, + "Retail boards based on this design (27)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6600m.c3776", + "web_page_access_date": "2022/08/21/, 21:18:18", + "Product Name": "AMD Radeon RX 6600M", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 31st, 2021", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2068 MHz", + "Game Clock": "2177 MHz", + "Boost Clock": "2416 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "154.6 GPixel/s", + "Texture Rate": "270.6 GTexel/s", + "FP16 (half) performance": "17.32 TFLOPS (2:1)", + "FP32 (float) performance": "8.659 TFLOPS", + "FP64 (double) performance": "541.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6700.c3716", + "web_page_access_date": "2022/08/21/, 21:18:24", + "Product Name": "AMD Radeon RX 6700", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22 XTL", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 9th, 2021", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1941 MHz", + "Game Clock": "2174 MHz", + "Boost Clock": "2450 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Memory Bus": "160 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "RT Cores": "36", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "80 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "156.8 GPixel/s", + "Texture Rate": "352.8 GTexel/s", + "FP16 (half) performance": "22.58 TFLOPS (2:1)", + "FP32 (float) performance": "11.29 TFLOPS", + "FP64 (double) performance": "705.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "110 mm\n\t\t\t\t\t4.3 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 22 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6700-xt.c3695", + "web_page_access_date": "2022/08/21/, 21:18:30", + "Product Name": "AMD Radeon RX 6700 XT", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-127000006)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 3rd, 2021", + "Availability": "Mar 18th, 2021", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "479 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2321 MHz", + "Game Clock": "2424 MHz", + "Boost Clock": "2581 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "RT Cores": "40", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "96 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.2 GPixel/s", + "Texture Rate": "413.0 GTexel/s", + "FP16 (half) performance": "26.43 TFLOPS (2:1)", + "FP32 (float) performance": "13.21 TFLOPS", + "FP64 (double) performance": "825.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "110 mm\n\t\t\t\t\t4.3 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D512" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 22 GPU Notes": {}, + "Retail boards based on this design (37)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6700m.c3775", + "web_page_access_date": "2022/08/21/, 21:18:35", + "Product Name": "AMD Radeon RX 6700M", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 31st, 2021", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1489 MHz", + "Game Clock": "2300 MHz", + "Boost Clock": "2400 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Memory Bus": "160 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "Compute Units": "36", + "RT Cores": "36", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "80 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "153.6 GPixel/s", + "Texture Rate": "345.6 GTexel/s", + "FP16 (half) performance": "22.12 TFLOPS (2:1)", + "FP32 (float) performance": "11.06 TFLOPS", + "FP64 (double) performance": "691.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "135 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6800m.c3786", + "web_page_access_date": "2022/08/21/, 21:18:41", + "Product Name": "AMD Radeon RX 6800M", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22 XTM", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 31st, 2021", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2116 MHz", + "Game Clock": "2300 MHz", + "Boost Clock": "2390 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "RT Cores": "40", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "96 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "153.0 GPixel/s", + "Texture Rate": "382.4 GTexel/s", + "FP16 (half) performance": "24.47 TFLOPS (2:1)", + "FP32 (float) performance": "12.24 TFLOPS", + "FP64 (double) performance": "764.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "145 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6.c3855", + "web_page_access_date": "2022/08/21/, 21:18:46", + "Product Name": "AMD Radeon Vega 6", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 13th, 2021", + "Generation": "Cezanne\n(Vega)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "13.60 GPixel/s", + "Texture Rate": "40.80 GTexel/s", + "FP16 (half) performance": "2.611 TFLOPS (2:1)", + "FP32 (float) performance": "1,306 GFLOPS", + "FP64 (double) performance": "81.60 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-6-mobile.c3856", + "web_page_access_date": "2022/08/21/, 21:18:56", + "Product Name": "AMD Radeon Vega 6 Mobile", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 13th, 2021", + "Generation": "Cezanne\n(Vega Mobile)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP16 (half) performance": "2.458 TFLOPS (2:1)", + "FP32 (float) performance": "1,229 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-7.c3833", + "web_page_access_date": "2022/08/21/, 21:19:07", + "Product Name": "AMD Radeon Vega 7", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "448", + "TMUs": "28", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 13th, 2021", + "Generation": "Cezanne\n(Vega)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "28", + "ROPs": "8", + "Compute Units": "7" + }, + "Theoretical Performance": { + "Pixel Rate": "15.20 GPixel/s", + "Texture Rate": "53.20 GTexel/s", + "FP16 (half) performance": "3.405 TFLOPS (2:1)", + "FP32 (float) performance": "1.702 TFLOPS", + "FP64 (double) performance": "106.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-7-mobile.c3854", + "web_page_access_date": "2022/08/21/, 21:19:13", + "Product Name": "AMD Radeon Vega 7 Mobile", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "448", + "TMUs": "28", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 13th, 2021", + "Generation": "Cezanne\n(Vega Mobile)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "28", + "ROPs": "8", + "Compute Units": "7" + }, + "Theoretical Performance": { + "Pixel Rate": "15.20 GPixel/s", + "Texture Rate": "53.20 GTexel/s", + "FP16 (half) performance": "3.405 TFLOPS (2:1)", + "FP32 (float) performance": "1.702 TFLOPS", + "FP64 (double) performance": "106.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8.c3768", + "web_page_access_date": "2022/08/21/, 21:19:19", + "Product Name": "AMD Radeon Vega 8", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 12th, 2021", + "Generation": "Cezanne\n(Vega)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "2000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "64.00 GTexel/s", + "FP16 (half) performance": "4.096 TFLOPS (2:1)", + "FP32 (float) performance": "2.048 TFLOPS", + "FP64 (double) performance": "128.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-vega-8-mobile.c3771", + "web_page_access_date": "2022/08/21/, 21:19:26", + "Product Name": "AMD Radeon Vega 8 Mobile", + "General Specs": { + "Graphics Processor": "Cezanne", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cezanne", + "Architecture": "GCN 5.1", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "9,800 million", + "Die Size": "156 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 12th, 2021", + "Generation": "Cezanne\n(Vega Mobile)", + "Predecessor": "Renoir", + "Production": "Active", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "2000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "64.00 GTexel/s", + "FP16 (half) performance": "4.096 TFLOPS (2:1)", + "FP32 (float) performance": "2.048 TFLOPS", + "FP64 (double) performance": "128.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.2", + "Shader Model": "6.4" + }, + "Cezanne GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-660m.c3870", + "web_page_access_date": "2022/08/21/, 21:19:33", + "Product Name": "AMD Radeon 660M", + "General Specs": { + "Graphics Processor": "Rembrandt", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rembrandt", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "13,100 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Rembrandt\n(600)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "1900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "RT Cores": "6", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "45.60 GTexel/s", + "FP16 (half) performance": "2.918 TFLOPS (2:1)", + "FP32 (float) performance": "1,459 GFLOPS", + "FP64 (double) performance": "91.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Rembrandt GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-680m.c3871", + "web_page_access_date": "2022/08/21/, 21:19:39", + "Product Name": "AMD Radeon 680M", + "General Specs": { + "Graphics Processor": "Rembrandt", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rembrandt", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "13,100 million", + "Die Size": "210 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Rembrandt\n(600)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2000 MHz", + "Boost Clock": "2400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "RT Cores": "12", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.80 GPixel/s", + "Texture Rate": "115.2 GTexel/s", + "FP16 (half) performance": "7.373 TFLOPS (2:1)", + "FP32 (float) performance": "3.686 TFLOPS", + "FP64 (double) performance": "230.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Rembrandt GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-pro-w6400.c3873", + "web_page_access_date": "2022/08/21/, 21:19:47", + "Product Name": "AMD Radeon Pro W6400", + "General Specs": { + "Graphics Processor": "Navi 24", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 24", + "GPU Variant": "Navi 24 XL-W", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "5,400 million", + "Die Size": "107 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 19th, 2022", + "Generation": "Radeon Pro\n(Navi II Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2331 MHz", + "Boost Clock": "2331 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "RT Cores": "12", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "74.59 GPixel/s", + "Texture Rate": "111.9 GTexel/s", + "FP16 (half) performance": "7.161 TFLOPS (2:1)", + "FP32 (float) performance": "3.580 TFLOPS", + "FP64 (double) performance": "223.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "2x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Navi 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6300m.c3866", + "web_page_access_date": "2022/08/21/, 21:19:52", + "Product Name": "AMD Radeon RX 6300M", + "General Specs": { + "Graphics Processor": "Navi 24", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "32 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 24", + "GPU Variant": "Navi 24 XML", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "5,400 million", + "Die Size": "107 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2000 MHz", + "Game Clock": "2300 MHz", + "Boost Clock": "2400 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "32 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "RT Cores": "12", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.80 GPixel/s", + "Texture Rate": "115.2 GTexel/s", + "FP16 (half) performance": "7.373 TFLOPS (2:1)", + "FP32 (float) performance": "3.686 TFLOPS", + "FP64 (double) performance": "230.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Navi 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6400.c3813", + "web_page_access_date": "2022/08/21/, 21:19:58", + "Product Name": "AMD Radeon RX 6400", + "General Specs": { + "Graphics Processor": "Navi 24", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 24", + "GPU Variant": "Navi 24 XL\n\t\t\t\t\t\t\t\t\t\t\n(215-135000046)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "5,400 million", + "Die Size": "107 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 19th, 2022", + "Availability": "Apr 20th, 2022", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1923 MHz", + "Game Clock": "2039 MHz", + "Boost Clock": "2321 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "RT Cores": "12", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "74.27 GPixel/s", + "Texture Rate": "111.4 GTexel/s", + "FP16 (half) performance": "7.130 TFLOPS (2:1)", + "FP32 (float) performance": "3.565 TFLOPS", + "FP64 (double) performance": "222.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "53 W", + "Suggested PSU": "250 W", + "Outputs": "1x HDMI 2.11x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Navi 24 GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6500-xt.c3850", + "web_page_access_date": "2022/08/21/, 21:20:03", + "Product Name": "AMD Radeon RX 6500 XT", + "General Specs": { + "Graphics Processor": "Navi 24", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 24", + "GPU Variant": "Navi 24 XT\n\t\t\t\t\t\t\t\t\t\t\n(215-135000006)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "5,400 million", + "Die Size": "107 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 19th, 2022", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 4.0 x4", + "Reviews": "16 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2310 MHz", + "Game Clock": "2610 MHz", + "Boost Clock": "2815 MHz", + "Memory Clock": "2248 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "143.9 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "RT Cores": "16", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "90.08 GPixel/s", + "Texture Rate": "180.2 GTexel/s", + "FP16 (half) performance": "11.53 TFLOPS (2:1)", + "FP32 (float) performance": "5.765 TFLOPS", + "FP64 (double) performance": "360.3 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "107 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.11x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Navi 24 GPU Notes": {}, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6500m.c3865", + "web_page_access_date": "2022/08/21/, 21:20:09", + "Product Name": "AMD Radeon RX 6500M", + "General Specs": { + "Graphics Processor": "Navi 24", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 24", + "GPU Variant": "Navi 24 XM", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "5,400 million", + "Die Size": "107 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2000 MHz", + "Game Clock": "2191 MHz", + "Boost Clock": "2400 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "144.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "RT Cores": "16", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.80 GPixel/s", + "Texture Rate": "153.6 GTexel/s", + "FP16 (half) performance": "9.830 TFLOPS (2:1)", + "FP32 (float) performance": "4.915 TFLOPS", + "FP64 (double) performance": "307.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.2", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Navi 24 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6600s.c3869", + "web_page_access_date": "2022/08/21/, 21:20:15", + "Product Name": "AMD Radeon RX 6600S", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1700 MHz", + "Game Clock": "1881 MHz", + "Boost Clock": "2000 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "128.0 GPixel/s", + "Texture Rate": "224.0 GTexel/s", + "FP16 (half) performance": "14.34 TFLOPS (2:1)", + "FP32 (float) performance": "7.168 TFLOPS", + "FP64 (double) performance": "448.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6650-xt.c3898", + "web_page_access_date": "2022/08/21/, 21:22:09", + "Product Name": "AMD Radeon RX 6650 XT", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "GPU Variant": "Navi 23 KXT\n\t\t\t\t\t\t\t\t\t\t\n(215-130000136)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Graphics Card": { + "Release Date": "May 10th, 2022", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "12 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2055 MHz", + "Game Clock": "2410 MHz", + "Boost Clock": "2635 MHz", + "Memory Clock": "2190 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t17.5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "280.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Compute Units": "32", + "RT Cores": "32", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "168.6 GPixel/s", + "Texture Rate": "337.3 GTexel/s", + "FP16 (half) performance": "21.59 TFLOPS (2:1)", + "FP32 (float) performance": "10.79 TFLOPS", + "FP64 (double) performance": "674.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "176 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {}, + "Retail boards based on this design (23)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6650m.c3863", + "web_page_access_date": "2022/08/21/, 21:22:15", + "Product Name": "AMD Radeon RX 6650M", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2068 MHz", + "Game Clock": "2222 MHz", + "Boost Clock": "2416 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "154.6 GPixel/s", + "Texture Rate": "270.6 GTexel/s", + "FP16 (half) performance": "17.32 TFLOPS (2:1)", + "FP32 (float) performance": "8.659 TFLOPS", + "FP64 (double) performance": "541.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "120 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6650m-xt.c3864", + "web_page_access_date": "2022/08/21/, 21:22:21", + "Product Name": "AMD Radeon RX 6650M XT", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2068 MHz", + "Game Clock": "2162 MHz", + "Boost Clock": "2416 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Compute Units": "32", + "RT Cores": "32", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "154.6 GPixel/s", + "Texture Rate": "309.2 GTexel/s", + "FP16 (half) performance": "19.79 TFLOPS (2:1)", + "FP32 (float) performance": "9.896 TFLOPS", + "FP64 (double) performance": "618.5 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "120 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6700s.c3868", + "web_page_access_date": "2022/08/21/, 21:22:29", + "Product Name": "AMD Radeon RX 6700S", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1700 MHz", + "Game Clock": "1890 MHz", + "Boost Clock": "2000 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "Compute Units": "28", + "RT Cores": "28", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "128.0 GPixel/s", + "Texture Rate": "224.0 GTexel/s", + "FP16 (half) performance": "14.34 TFLOPS (2:1)", + "FP32 (float) performance": "7.168 TFLOPS", + "FP64 (double) performance": "448.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6750-xt.c3879", + "web_page_access_date": "2022/08/21/, 21:22:37", + "Product Name": "AMD Radeon RX 6750 XT", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22 KXT\n\t\t\t\t\t\t\t\t\t\t\n(215-127000144)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 3rd, 2022", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "20 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2150 MHz", + "Game Clock": "2495 MHz", + "Boost Clock": "2600 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "432.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "RT Cores": "40", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "96 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "166.4 GPixel/s", + "Texture Rate": "416.0 GTexel/s", + "FP16 (half) performance": "26.62 TFLOPS (2:1)", + "FP32 (float) performance": "13.31 TFLOPS", + "FP64 (double) performance": "832.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "110 mm\n\t\t\t\t\t4.3 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "D512" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 22 GPU Notes": {}, + "Retail boards based on this design (18)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6800s.c3867", + "web_page_access_date": "2022/08/21/, 21:22:42", + "Product Name": "AMD Radeon RX 6800S", + "General Specs": { + "Graphics Processor": "Navi 23", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 23", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "11,060 million", + "Die Size": "237 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1800 MHz", + "Game Clock": "1975 MHz", + "Boost Clock": "2100 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "256.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Compute Units": "32", + "RT Cores": "32", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "32 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "134.4 GPixel/s", + "Texture Rate": "268.8 GTexel/s", + "FP16 (half) performance": "17.20 TFLOPS (2:1)", + "FP32 (float) performance": "8.602 TFLOPS", + "FP64 (double) performance": "537.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 23 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6850m-xt.c3862", + "web_page_access_date": "2022/08/21/, 21:22:48", + "Product Name": "AMD Radeon RX 6850M XT", + "General Specs": { + "Graphics Processor": "Navi 22", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 22", + "GPU Variant": "Navi 22 XTM", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "17,200 million", + "Die Size": "335 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "Mobility Radeon\n(Navi II)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2321 MHz", + "Game Clock": "2463 MHz", + "Boost Clock": "2581 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "RT Cores": "40", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "96 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.2 GPixel/s", + "Texture Rate": "413.0 GTexel/s", + "FP16 (half) performance": "26.43 TFLOPS (2:1)", + "FP32 (float) performance": "13.21 TFLOPS", + "FP64 (double) performance": "825.9 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "165 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 22 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-6950-xt.c3875", + "web_page_access_date": "2022/08/21/, 21:22:54", + "Product Name": "AMD Radeon RX 6950 XT", + "General Specs": { + "Graphics Processor": "Navi 21", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 21", + "GPU Variant": "Navi 21 KXTX\n\t\t\t\t\t\t\t\t\t\t\n(215-121000289)", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "26,800 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "May 10th, 2022", + "Generation": "Navi II\n(RX 6000)", + "Predecessor": "Navi", + "Successor": "Navi III", + "Production": "Active", + "Launch Price": "1,099 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "19 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1925 MHz", + "Game Clock": "2116 MHz", + "Boost Clock": "2324 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "576.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "Compute Units": "80", + "RT Cores": "80", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "128 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "297.5 GPixel/s", + "Texture Rate": "743.7 GTexel/s", + "FP16 (half) performance": "47.60 TFLOPS (2:1)", + "FP32 (float) performance": "23.80 TFLOPS", + "FP64 (double) performance": "1,487 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "120 mm\n\t\t\t\t\t4.7 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "335 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.12x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Navi 21 GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-7700-xt.c3911", + "web_page_access_date": "2022/08/21/, 21:23:00", + "Product Name": "AMD Radeon RX 7700 XT", + "General Specs": { + "Graphics Processor": "Navi 33", + "Cores": "4096", + "TMUs": "256", + "ROPs": "128", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 33", + "GPU Variant": "Navi 33 XT", + "Architecture": "RDNA 3.0", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "Navi III\n(RX 7000)", + "Predecessor": "Navi II", + "Production": "Unreleased", + "Bus Interface": "PCIe 5.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2300 MHz", + "Game Clock": "2400 MHz", + "Boost Clock": "2500 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "128", + "Compute Units": "64", + "RT Cores": "64", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "2 MB", + "L3 Cache": "256 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "320.0 GPixel/s", + "Texture Rate": "640.0 GTexel/s", + "FP16 (half) performance": "40.96 TFLOPS (2:1)", + "FP32 (float) performance": "20.48 TFLOPS", + "FP64 (double) performance": "1,280 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "135 mm\n\t\t\t\t\t5.3 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Part Number": "" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 33 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-7800-xt.c3839", + "web_page_access_date": "2022/08/21/, 21:23:06", + "Product Name": "AMD Radeon RX 7800 XT", + "General Specs": { + "Graphics Processor": "Navi 32", + "Cores": "8192", + "TMUs": "512", + "ROPs": "192", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 32", + "GPU Variant": "Navi 32 XT", + "Architecture": "RDNA 3.0", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "Navi III\n(RX 7000)", + "Predecessor": "Navi II", + "Production": "Unreleased", + "Bus Interface": "PCIe 5.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2400 MHz", + "Game Clock": "2500 MHz", + "Boost Clock": "2600 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "432.0 GB/s" + }, + "Render Config": { + "Shading Units": "8192", + "TMUs": "512", + "ROPs": "192", + "Compute Units": "128", + "RT Cores": "128", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "3 MB", + "L3 Cache": "384 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "499.2 GPixel/s", + "Texture Rate": "1,331 GTexel/s", + "FP16 (half) performance": "85.20 TFLOPS (2:1)", + "FP32 (float) performance": "42.60 TFLOPS", + "FP64 (double) performance": "2.662 TFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "135 mm\n\t\t\t\t\t5.3 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Part Number": "" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 32 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-rx-7900-xt.c3912", + "web_page_access_date": "2022/08/21/, 21:23:11", + "Product Name": "AMD Radeon RX 7900 XT", + "General Specs": { + "Graphics Processor": "Navi 31", + "Cores": "12288", + "TMUs": "768", + "ROPs": "256", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Navi 31", + "GPU Variant": "Navi 31 XT", + "Architecture": "RDNA 3.0", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "350 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "Navi III\n(RX 7000)", + "Predecessor": "Navi II", + "Production": "Unreleased", + "Bus Interface": "PCIe 5.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2500 MHz", + "Game Clock": "2600 MHz", + "Boost Clock": "2700 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "864.0 GB/s" + }, + "Render Config": { + "Shading Units": "12288", + "TMUs": "768", + "ROPs": "256", + "Compute Units": "192", + "RT Cores": "192", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "4 MB", + "L3 Cache": "512 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "691.2 GPixel/s", + "Texture Rate": "2,074 GTexel/s", + "FP16 (half) performance": "132.7 TFLOPS (2:1)", + "FP32 (float) performance": "66.36 TFLOPS", + "FP64 (double) performance": "4.147 TFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "135 mm\n\t\t\t\t\t5.3 inches", + "Height": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin", + "Part Number": "" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "2.1", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Card Notes": {}, + "Navi 31 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/steam-deck-gpu.c3897", + "web_page_access_date": "2022/08/21/, 21:23:19", + "Product Name": "AMD Steam Deck GPU", + "General Specs": { + "Graphics Processor": "Van Gogh", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "16 GB", + "Memory Type": "LPDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Van Gogh", + "GPU Variant": "100-000000405", + "Architecture": "RDNA 2.0", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "unknown", + "Die Size": "163 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 25th, 2022", + "Generation": "Console GPU\n(Valve)", + "Production": "Active" + }, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1600 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "LPDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8", + "RT Cores": "8", + "L0 Cache": "32 KB per WGP", + "L1 Cache": "128 KB per Array", + "L2 Cache": "1024 KB", + "L3 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "51.20 GTexel/s", + "FP16 (half) performance": "3.277 TFLOPS (2:1)", + "FP32 (float) performance": "1.638 TFLOPS", + "FP64 (double) performance": "102.4 GFLOPS (1:16)" + }, + "Board Design": { + "Length": "298 mm\n\t\t\t\t\t11.7 inches", + "Width": "117 mm\n\t\t\t\t\t4.6 inches", + "Height": "49 mm\n\t\t\t\t\t1.9 inches", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.5" + }, + "Console Notes": {}, + "Van Gogh GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m6-8q.c3052", + "web_page_access_date": "2022/08/21/, 20:37:03", + "Product Name": "NVIDIA GRID M6-8Q", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-995-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "722 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "SMM Count": "12", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.21 GPixel/s", + "Texture Rate": "69.31 GTexel/s", + "FP32 (float) performance": "2.218 TFLOPS", + "FP64 (double) performance": "69.31 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m60-1q.c3087", + "web_page_access_date": "2022/08/21/, 20:39:04", + "Product Name": "NVIDIA GRID M60-1Q", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "557 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "150.8 GTexel/s", + "FP32 (float) performance": "4.825 TFLOPS", + "FP64 (double) performance": "150.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m60-2q.c3088", + "web_page_access_date": "2022/08/21/, 20:41:04", + "Product Name": "NVIDIA GRID M60-2Q", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "557 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "150.8 GTexel/s", + "FP32 (float) performance": "4.825 TFLOPS", + "FP64 (double) performance": "150.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m60-4a.c3090", + "web_page_access_date": "2022/08/21/, 20:43:05", + "Product Name": "NVIDIA GRID M60-4A", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "557 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "150.8 GTexel/s", + "FP32 (float) performance": "4.825 TFLOPS", + "FP64 (double) performance": "150.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m60-8q.c3089", + "web_page_access_date": "2022/08/21/, 20:45:06", + "Product Name": "NVIDIA GRID M60-8Q", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "557 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "150.8 GTexel/s", + "FP32 (float) performance": "4.825 TFLOPS", + "FP64 (double) performance": "150.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-710a.c2700", + "web_page_access_date": "2022/08/21/, 20:47:06", + "Product Name": "NVIDIA GeForce 710A", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 21st, 2015", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Memory Clock": "901 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1802 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.83 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.480 GPixel/s", + "Texture Rate": "25.92 GTexel/s", + "FP32 (float) performance": "622.1 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-810m.c2774", + "web_page_access_date": "2022/08/21/, 20:49:07", + "Product Name": "NVIDIA GeForce 810M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 21st, 2015", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "835 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "30.40 GTexel/s", + "FP32 (float) performance": "729.6 GFLOPS", + "FP64 (double) performance": "30.40 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-820m.c2701", + "web_page_access_date": "2022/08/21/, 20:51:03", + "Product Name": "NVIDIA GeForce 820M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 21st, 2015", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Memory Clock": "901 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1802 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.83 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.480 GPixel/s", + "Texture Rate": "25.92 GTexel/s", + "FP32 (float) performance": "622.1 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-845m.c2753", + "web_page_access_date": "2022/08/21/, 20:51:10", + "Product Name": "NVIDIA GeForce 845M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Aug 26th, 2015", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1071 MHz", + "Boost Clock": "1176 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.82 GPixel/s", + "Texture Rate": "37.63 GTexel/s", + "FP32 (float) performance": "903.2 GFLOPS", + "FP64 (double) performance": "28.22 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-845m.c2660", + "web_page_access_date": "2022/08/21/, 20:51:16", + "Product Name": "NVIDIA GeForce 845M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N15S-GT1R", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 7th, 2015", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "863 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.81 GPixel/s", + "Texture Rate": "27.62 GTexel/s", + "FP32 (float) performance": "883.7 GFLOPS", + "FP64 (double) performance": "27.62 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-910m.c2764", + "web_page_access_date": "2022/08/21/, 20:51:23", + "Product Name": "NVIDIA GeForce 910M", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "N16V-GL", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "641 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.128 GPixel/s", + "Texture Rate": "20.51 GTexel/s", + "FP32 (float) performance": "492.3 GFLOPS", + "FP64 (double) performance": "20.51 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-920a.c2647", + "web_page_access_date": "2022/08/21/, 20:51:29", + "Product Name": "NVIDIA GeForce 920A", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "N16V-GM", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.632 GPixel/s", + "Texture Rate": "30.53 GTexel/s", + "FP32 (float) performance": "732.7 GFLOPS", + "FP64 (double) performance": "30.53 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-920m.c2646", + "web_page_access_date": "2022/08/21/, 20:51:36", + "Product Name": "NVIDIA GeForce 920M", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "N16V-GM", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.632 GPixel/s", + "Texture Rate": "30.53 GTexel/s", + "FP32 (float) performance": "732.7 GFLOPS", + "FP64 (double) performance": "30.53 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-930a.c2816", + "web_page_access_date": "2022/08/21/, 20:51:42", + "Product Name": "NVIDIA GeForce 930A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "928 MHz", + "Boost Clock": "941 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.528 GPixel/s", + "Texture Rate": "22.58 GTexel/s", + "FP32 (float) performance": "722.7 GFLOPS", + "FP64 (double) performance": "22.58 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-930m.c2644", + "web_page_access_date": "2022/08/21/, 20:51:49", + "Product Name": "NVIDIA GeForce 930M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GM", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "928 MHz", + "Boost Clock": "941 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.528 GPixel/s", + "Texture Rate": "22.58 GTexel/s", + "FP32 (float) performance": "722.7 GFLOPS", + "FP64 (double) performance": "22.58 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940a.c2737", + "web_page_access_date": "2022/08/21/, 20:51:55", + "Product Name": "NVIDIA GeForce 940A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.992 GPixel/s", + "Texture Rate": "17.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940a.c2649", + "web_page_access_date": "2022/08/21/, 20:52:02", + "Product Name": "NVIDIA GeForce 940A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GT-S", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1072 MHz", + "Boost Clock": "1176 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.408 GPixel/s", + "Texture Rate": "18.82 GTexel/s", + "FP32 (float) performance": "903.2 GFLOPS", + "FP64 (double) performance": "28.22 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940m.c2648", + "web_page_access_date": "2022/08/21/, 20:52:08", + "Product Name": "NVIDIA GeForce 940M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16S-GT1-KB-B", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1098 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.57 GPixel/s", + "Texture Rate": "35.14 GTexel/s", + "FP32 (float) performance": "1,124 GFLOPS", + "FP64 (double) performance": "35.14 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940m.c2643", + "web_page_access_date": "2022/08/21/, 20:52:15", + "Product Name": "NVIDIA GeForce 940M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GT-S", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1072 MHz", + "Boost Clock": "1176 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.408 GPixel/s", + "Texture Rate": "28.22 GTexel/s", + "FP32 (float) performance": "903.2 GFLOPS", + "FP64 (double) performance": "28.22 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-945a.c2813", + "web_page_access_date": "2022/08/21/, 20:52:21", + "Product Name": "NVIDIA GeForce 945A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1006 MHz", + "Boost Clock": "1189 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.512 GPixel/s", + "Texture Rate": "28.54 GTexel/s", + "FP32 (float) performance": "913.2 GFLOPS", + "FP64 (double) performance": "28.54 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-945m.c2773", + "web_page_access_date": "2022/08/21/, 20:52:28", + "Product Name": "NVIDIA GeForce 945M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 27th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "928 MHz", + "Boost Clock": "1020 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.32 GPixel/s", + "Texture Rate": "40.80 GTexel/s", + "FP32 (float) performance": "1,306 GFLOPS", + "FP64 (double) performance": "40.80 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710-oem.c2711", + "web_page_access_date": "2022/08/21/, 20:52:34", + "Product Name": "NVIDIA GeForce GT 710 OEM", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 9th, 2015", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "Active", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.188 GPixel/s", + "Texture Rate": "12.75 GTexel/s", + "FP32 (float) performance": "306.0 GFLOPS", + "FP64 (double) performance": "12.75 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730-oem.c2710", + "web_page_access_date": "2022/08/21/, 20:52:41", + "Product Name": "NVIDIA GeForce GT 730 OEM", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 9th, 2015", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "Active", + "Launch Price": "89 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.216 GPixel/s", + "Texture Rate": "28.86 GTexel/s", + "FP32 (float) performance": "692.7 GFLOPS", + "FP64 (double) performance": "28.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "64 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2011" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740-oem.c2699", + "web_page_access_date": "2022/08/21/, 20:52:47", + "Product Name": "NVIDIA GeForce GT 740 OEM", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 14th, 2015", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1006 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.048 GPixel/s", + "Texture Rate": "32.19 GTexel/s", + "FP32 (float) performance": "772.6 GFLOPS", + "FP64 (double) performance": "32.19 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2010 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740-oem.c2844", + "web_page_access_date": "2022/08/21/, 20:52:54", + "Product Name": "NVIDIA GeForce GT 740 OEM", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 14th, 2015", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "33.60 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "33.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-750-gm206.c2778", + "web_page_access_date": "2022/08/21/, 20:53:00", + "Product Name": "NVIDIA GeForce GTX 750 GM206", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "512", + "TMUs": "32", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 17th, 2015", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1087 MHz", + "Boost Clock": "1239 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "32", + "SMM Count": "4", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.65 GPixel/s", + "Texture Rate": "39.65 GTexel/s", + "FP32 (float) performance": "1,269 GFLOPS", + "FP64 (double) performance": "39.65 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x HDMI 2.0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-860m-oem.c2659", + "web_page_access_date": "2022/08/21/, 20:53:07", + "Product Name": "NVIDIA GeForce GTX 860M OEM", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N15P-GX-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 5th, 2015", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.36 GPixel/s", + "Texture Rate": "43.40 GTexel/s", + "FP32 (float) performance": "1,389 GFLOPS", + "FP64 (double) performance": "43.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2704 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950.c2747", + "web_page_access_date": "2022/08/21/, 20:53:13", + "Product Name": "NVIDIA GeForce GTX 950", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GM206-250-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 20th, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "76 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1024 MHz", + "Boost Clock": "1188 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "105.8 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SMM Count": "6", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.02 GPixel/s", + "Texture Rate": "57.02 GTexel/s", + "FP32 (float) performance": "1.825 TFLOPS", + "FP64 (double) performance": "57.02 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "202 mm\n\t\t\t\t\t8 inches", + "TDP": "90 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (50)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950a.c2776", + "web_page_access_date": "2022/08/21/, 20:53:20", + "Product Name": "NVIDIA GeForce GTX 950A", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-GT", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "993 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.03 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "44.96 GTexel/s", + "FP32 (float) performance": "1,439 GFLOPS", + "FP64 (double) performance": "44.96 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950m.c2642", + "web_page_access_date": "2022/08/21/, 20:53:26", + "Product Name": "NVIDIA GeForce GTX 950M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-GT", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "993 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "44.96 GTexel/s", + "FP32 (float) performance": "1,439 GFLOPS", + "FP64 (double) performance": "44.96 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (11)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950m-mac-edition.c2777", + "web_page_access_date": "2022/08/21/, 20:53:33", + "Product Name": "NVIDIA GeForce GTX 950M Mac Edition", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-GT", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "993 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "44.96 GTexel/s", + "FP32 (float) performance": "1,439 GFLOPS", + "FP64 (double) performance": "44.96 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-960.c2637", + "web_page_access_date": "2022/08/21/, 20:53:39", + "Product Name": "NVIDIA GeForce GTX 960", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GM206-300-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 22nd, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "124 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1127 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "37.70 GPixel/s", + "Texture Rate": "75.39 GTexel/s", + "FP32 (float) performance": "2.413 TFLOPS", + "FP64 (double) performance": "75.39 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG301" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (104)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-960-oem.c2782", + "web_page_access_date": "2022/08/21/, 20:53:46", + "Product Name": "NVIDIA GeForce GTX 960 OEM", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GTX 960 OEM", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1176 MHz", + "Boost Clock": "1201 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.43 GPixel/s", + "Texture Rate": "76.86 GTexel/s", + "FP32 (float) performance": "2.460 TFLOPS", + "FP64 (double) performance": "76.86 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-960-oem.c3034", + "web_page_access_date": "2022/08/21/, 20:53:52", + "Product Name": "NVIDIA GeForce GTX 960 OEM", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GTX 960 OEM", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "924 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "120.3 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SMM Count": "10", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.35 GPixel/s", + "Texture Rate": "73.92 GTexel/s", + "FP32 (float) performance": "2.365 TFLOPS", + "FP64 (double) performance": "73.92 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-960a.c2775", + "web_page_access_date": "2022/08/21/, 20:53:59", + "Product Name": "NVIDIA GeForce GTX 960A", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-GX-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900A", + "Predecessor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.36 GPixel/s", + "Texture Rate": "43.40 GTexel/s", + "FP32 (float) performance": "1,389 GFLOPS", + "FP64 (double) performance": "43.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-960m.c2635", + "web_page_access_date": "2022/08/21/, 20:54:06", + "Product Name": "NVIDIA GeForce GTX 960M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-GX-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 13th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1097 MHz", + "Boost Clock": "1176 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.82 GPixel/s", + "Texture Rate": "47.04 GTexel/s", + "FP32 (float) performance": "1.505 TFLOPS", + "FP64 (double) performance": "47.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Board Number": "E2704 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-965m.c2880", + "web_page_access_date": "2022/08/21/, 20:54:12", + "Product Name": "NVIDIA GeForce GTX 965M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "540 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.28 GPixel/s", + "Texture Rate": "34.56 GTexel/s", + "FP32 (float) performance": "1,106 GFLOPS", + "FP64 (double) performance": "34.56 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 7" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-965m.c2634", + "web_page_access_date": "2022/08/21/, 20:54:19", + "Product Name": "NVIDIA GeForce GTX 965M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GS-KAB-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "924 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "60.80 GTexel/s", + "FP32 (float) performance": "1.946 TFLOPS", + "FP64 (double) performance": "60.80 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 7" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-965m.c2814", + "web_page_access_date": "2022/08/21/, 20:54:25", + "Product Name": "NVIDIA GeForce GTX 965M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "935 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.92 GPixel/s", + "Texture Rate": "59.84 GTexel/s", + "FP32 (float) performance": "1.915 TFLOPS", + "FP64 (double) performance": "59.84 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 7" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980-mobile.c2763", + "web_page_access_date": "2022/08/21/, 20:54:32", + "Product Name": "NVIDIA GeForce GTX 980 Mobile", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GXX-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 21st, 2015", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "146 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1064 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "68.10 GPixel/s", + "Texture Rate": "136.2 GTexel/s", + "FP32 (float) performance": "4.358 TFLOPS", + "FP64 (double) performance": "136.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980-ti.c2724", + "web_page_access_date": "2022/08/21/, 20:54:38", + "Product Name": "NVIDIA GeForce GTX 980 Ti", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "2816", + "TMUs": "176", + "ROPs": "96", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "GPU Variant": "GM200-310-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 2nd, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "169 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1076 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.6 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "96", + "SMM Count": "22", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "103.3 GPixel/s", + "Texture Rate": "189.4 GTexel/s", + "FP32 (float) performance": "6.060 TFLOPS", + "FP64 (double) performance": "189.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG600 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (69)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-titan-x.c2632", + "web_page_access_date": "2022/08/21/, 20:54:45", + "Product Name": "NVIDIA GeForce GTX TITAN X", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "3072", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "GPU Variant": "GM200-400-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 17th, 2015", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "29 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1089 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.6 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "96", + "SMM Count": "24", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "104.5 GPixel/s", + "Texture Rate": "209.1 GTexel/s", + "FP32 (float) performance": "6.691 TFLOPS", + "FP64 (double) performance": "209.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG600" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (16)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-tx1-gpu.c3230", + "web_page_access_date": "2022/08/21/, 20:54:51", + "Product Name": "NVIDIA Jetson TX1 GPU", + "General Specs": { + "Graphics Processor": "GM20B", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GM20B", + "GPU Variant": "TM670D-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "20 nm", + "Transistors": "2,000 million", + "Die Size": "118 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2015", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SMM Count": "2", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP16 (half) performance": "1,024 GFLOPS (2:1)", + "FP32 (float) performance": "512.0 GFLOPS", + "FP64 (double) performance": "16.00 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "CUDA": "5.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-810.c2772", + "web_page_access_date": "2022/08/21/, 20:54:58", + "Product Name": "NVIDIA NVS 810", + "General Specs": { + "Graphics Processor": "GM107 x2", + "Cores": "512 x2", + "TMUs": "32 x2", + "ROPs": "16 x2", + "Memory Size": "2 GB x2", + "Memory Type": "DDR3", + "Bus Width": "64 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 4th, 2015", + "Generation": "NVS", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "902 MHz", + "Boost Clock": "1033 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.53 GPixel/s", + "Texture Rate": "33.06 GTexel/s", + "FP32 (float) performance": "1,058 GFLOPS", + "FP64 (double) performance": "33.06 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "198 mm\n\t\t\t\t\t7.8 inches", + "TDP": "68 W", + "Suggested PSU": "250 W", + "Outputs": "8x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k1200.c2641", + "web_page_access_date": "2022/08/21/, 20:55:05", + "Product Name": "NVIDIA Quadro K1200", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-860-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 28th, 2015", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1058 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "35.97 GTexel/s", + "FP32 (float) performance": "1,151 GFLOPS", + "FP64 (double) performance": "35.97 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "45 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k620m.c2678", + "web_page_access_date": "2022/08/21/, 20:55:11", + "Product Name": "NVIDIA Quadro K620M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N15M-Q3", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2015", + "Generation": "Quadro Mobile\n(Kx200M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.992 GPixel/s", + "Texture Rate": "17.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m1000m.c2739", + "web_page_access_date": "2022/08/21/, 20:55:18", + "Product Name": "NVIDIA Quadro M1000M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-Q1-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 18th, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "993 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "15.89 GPixel/s", + "Texture Rate": "31.78 GTexel/s", + "FP32 (float) performance": "1,017 GFLOPS", + "FP64 (double) performance": "31.78 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "40 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m2000m.c2740", + "web_page_access_date": "2022/08/21/, 20:55:24", + "Product Name": "NVIDIA Quadro M2000M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16P-Q3-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 3rd, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1098 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.57 GPixel/s", + "Texture Rate": "43.92 GTexel/s", + "FP32 (float) performance": "1,405 GFLOPS", + "FP64 (double) performance": "43.92 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m3000m.c2759", + "web_page_access_date": "2022/08/21/, 20:55:31", + "Product Name": "NVIDIA Quadro M3000M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-Q1-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 18th, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.60 GPixel/s", + "Texture Rate": "67.20 GTexel/s", + "FP32 (float) performance": "2.150 TFLOPS", + "FP64 (double) performance": "67.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m4000.c2757", + "web_page_access_date": "2022/08/21/, 20:55:38", + "Product Name": "NVIDIA Quadro M4000", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1664", + "TMUs": "104", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-850-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 29th, 2015", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "773 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1664", + "TMUs": "104", + "ROPs": "64", + "SMM Count": "13", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.47 GPixel/s", + "Texture Rate": "80.39 GTexel/s", + "FP32 (float) performance": "2.573 TFLOPS", + "FP64 (double) performance": "80.39 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m4000m.c2822", + "web_page_access_date": "2022/08/22/, 18:54:38", + "Product Name": "NVIDIA Quadro M4000M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1280", + "TMUs": "80", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-Q3-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 18th, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "975 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "64", + "SMM Count": "10", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "62.40 GPixel/s", + "Texture Rate": "78.00 GTexel/s", + "FP32 (float) performance": "2.496 TFLOPS", + "FP64 (double) performance": "78.00 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m5000.c2756", + "web_page_access_date": "2022/08/22/, 18:54:44", + "Product Name": "NVIDIA Quadro M5000", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-875-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 29th, 2015", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "861 MHz", + "Boost Clock": "1038 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "211.6 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "66.43 GPixel/s", + "Texture Rate": "132.9 GTexel/s", + "FP32 (float) performance": "4.252 TFLOPS", + "FP64 (double) performance": "132.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG400 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m5000m.c2823", + "web_page_access_date": "2022/08/22/, 18:54:51", + "Product Name": "NVIDIA Quadro M5000M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-Q5-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 18th, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "975 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "SMM Count": "12", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "62.40 GPixel/s", + "Texture Rate": "93.60 GTexel/s", + "FP32 (float) performance": "2.995 TFLOPS", + "FP64 (double) performance": "93.60 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m6000.c2638", + "web_page_access_date": "2022/08/22/, 18:54:57", + "Product Name": "NVIDIA Quadro M6000", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "3072", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 21st, 2015", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "988 MHz", + "Boost Clock": "1114 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "317.4 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "96", + "SMM Count": "24", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "106.9 GPixel/s", + "Texture Rate": "213.9 GTexel/s", + "FP32 (float) performance": "6.844 TFLOPS", + "FP64 (double) performance": "213.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG600 SKU 0500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m600m.c2738", + "web_page_access_date": "2022/08/22/, 18:55:03", + "Product Name": "NVIDIA Quadro M600M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 18th, 2015", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "837 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.008 GPixel/s", + "Texture Rate": "14.02 GTexel/s", + "FP32 (float) performance": "672.8 GFLOPS", + "FP64 (double) performance": "21.02 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m4.c2770", + "web_page_access_date": "2022/08/22/, 18:55:10", + "Product Name": "NVIDIA Tesla M4", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2015", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "872 MHz", + "Boost Clock": "1072 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.30 GPixel/s", + "Texture Rate": "68.61 GTexel/s", + "FP32 (float) performance": "2.195 TFLOPS", + "FP64 (double) performance": "68.61 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m40.c2771", + "web_page_access_date": "2022/08/22/, 18:55:16", + "Product Name": "NVIDIA Tesla M40", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "3072", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "GPU Variant": "GM200-895-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2015", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "948 MHz", + "Boost Clock": "1112 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "96", + "SMM Count": "24", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "106.8 GPixel/s", + "Texture Rate": "213.5 GTexel/s", + "FP32 (float) performance": "6.832 TFLOPS", + "FP64 (double) performance": "213.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG600 SKU 202" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m40-24-gb.c3838", + "web_page_access_date": "2022/08/22/, 18:55:22", + "Product Name": "NVIDIA Tesla M40 24 GB", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "3072", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "GPU Variant": "GM200-895-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2015", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "948 MHz", + "Boost Clock": "1112 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "96", + "SMM Count": "24", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "106.8 GPixel/s", + "Texture Rate": "213.5 GTexel/s", + "FP32 (float) performance": "6.832 TFLOPS", + "FP64 (double) performance": "213.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG600 SKU 202" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m6.c2818", + "web_page_access_date": "2022/08/22/, 18:55:29", + "Product Name": "NVIDIA Tesla M6", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-995-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1180 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "SMM Count": "12", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.52 GPixel/s", + "Texture Rate": "113.3 GTexel/s", + "FP32 (float) performance": "3.625 TFLOPS", + "FP64 (double) performance": "113.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m60.c2760", + "web_page_access_date": "2022/08/22/, 18:55:35", + "Product Name": "NVIDIA Tesla M60", + "General Specs": { + "Graphics Processor": "GM204 x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "64 x2", + "Memory Size": "8 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 30th, 2015", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "557 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "150.8 GTexel/s", + "FP32 (float) performance": "4.825 TFLOPS", + "FP64 (double) performance": "150.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m10-8q.c3086", + "web_page_access_date": "2022/08/22/, 18:55:42", + "Product Name": "NVIDIA GRID M10-8Q", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-570-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "May 18th, 2016", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1033 MHz", + "Boost Clock": "1306 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "83.20 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.90 GPixel/s", + "Texture Rate": "52.24 GTexel/s", + "FP32 (float) performance": "1.672 TFLOPS", + "FP64 (double) performance": "52.24 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m3-3020.c3084", + "web_page_access_date": "2022/08/22/, 18:55:48", + "Product Name": "NVIDIA GRID M3-3020", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "May 18th, 2016", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1033 MHz", + "Boost Clock": "1306 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "83.20 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.90 GPixel/s", + "Texture Rate": "52.24 GTexel/s", + "FP32 (float) performance": "1.672 TFLOPS", + "FP64 (double) performance": "52.24 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-m40.c2518", + "web_page_access_date": "2022/08/22/, 18:55:55", + "Product Name": "NVIDIA GRID M40", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "May 18th, 2016", + "Generation": "GRID\n(Mx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1033 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "83.20 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.53 GPixel/s", + "Texture Rate": "33.06 GTexel/s", + "FP32 (float) performance": "793.3 GFLOPS", + "FP64 (double) performance": "24.79 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-920mx.c2826", + "web_page_access_date": "2022/08/22/, 18:56:01", + "Product Name": "NVIDIA GeForce 920MX", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "256", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16V-GMR1-S", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 25th, 2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "965 MHz", + "Boost Clock": "993 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.944 GPixel/s", + "Texture Rate": "23.83 GTexel/s", + "FP32 (float) performance": "508.4 GFLOPS", + "FP64 (double) performance": "15.89 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "16 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-930mx.c2825", + "web_page_access_date": "2022/08/22/, 18:56:07", + "Product Name": "NVIDIA GeForce 930MX", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GMR", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "952 MHz", + "Boost Clock": "1020 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.160 GPixel/s", + "Texture Rate": "24.48 GTexel/s", + "FP32 (float) performance": "783.4 GFLOPS", + "FP64 (double) performance": "24.48 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "17 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940mx.c2797", + "web_page_access_date": "2022/08/22/, 18:56:14", + "Product Name": "NVIDIA GeForce 940MX (GM108)", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GTR-S", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1004 MHz", + "Boost Clock": "1242 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.936 GPixel/s", + "Texture Rate": "29.81 GTexel/s", + "FP32 (float) performance": "953.9 GFLOPS", + "FP64 (double) performance": "29.81 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "23 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940mx.c2845", + "web_page_access_date": "2022/08/22/, 18:56:20", + "Product Name": "NVIDIA GeForce 940MX (GM107)", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N16S-GT1R", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 28th, 2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "795 MHz", + "Boost Clock": "861 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.888 GPixel/s", + "Texture Rate": "27.55 GTexel/s", + "FP32 (float) performance": "881.7 GFLOPS", + "FP64 (double) performance": "27.55 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "23 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-940mx.c3113", + "web_page_access_date": "2022/08/22/, 18:56:26", + "Product Name": "NVIDIA GeForce 940MX (GM108)", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "954 MHz", + "Boost Clock": "993 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.944 GPixel/s", + "Texture Rate": "23.83 GTexel/s", + "FP32 (float) performance": "762.6 GFLOPS", + "FP64 (double) performance": "23.83 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "23 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2702 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-945m.c2836", + "web_page_access_date": "2022/08/22/, 18:56:33", + "Product Name": "NVIDIA GeForce 945M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Apr 8th, 2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1006 MHz", + "Boost Clock": "1189 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.512 GPixel/s", + "Texture Rate": "28.54 GTexel/s", + "FP32 (float) performance": "913.2 GFLOPS", + "FP64 (double) performance": "28.54 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "23 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-610-oem.c2842", + "web_page_access_date": "2022/08/22/, 18:56:39", + "Product Name": "NVIDIA GeForce GT 610 OEM", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "2", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2016", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "Active", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "701 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "2", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.402 GPixel/s", + "Texture Rate": "5.608 GTexel/s", + "FP32 (float) performance": "134.6 GFLOPS", + "FP64 (double) performance": "11.22 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710.c2614", + "web_page_access_date": "2022/08/22/, 18:56:46", + "Product Name": "NVIDIA GeForce GT 710", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 26th, 2016", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "898 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1796 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.37 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050.c2875", + "web_page_access_date": "2022/08/22/, 18:58:44", + "Product Name": "NVIDIA GeForce GTX 1050", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-300-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 25th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "32", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.56 GPixel/s", + "Texture Rate": "58.20 GTexel/s", + "FP16 (half) performance": "29.10 GFLOPS (1:64)", + "FP32 (float) performance": "1.862 TFLOPS", + "FP64 (double) performance": "58.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG210 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (141)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-ti.c2885", + "web_page_access_date": "2022/08/22/, 18:58:49", + "Product Name": "NVIDIA GeForce GTX 1050 Ti", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-400-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 25th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "139 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1291 MHz", + "Boost Clock": "1392 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.54 GPixel/s", + "Texture Rate": "66.82 GTexel/s", + "FP16 (half) performance": "33.41 GFLOPS (1:64)", + "FP32 (float) performance": "2.138 TFLOPS", + "FP64 (double) performance": "66.82 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG210" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (161)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-3-gb.c2867", + "web_page_access_date": "2022/08/22/, 18:58:57", + "Product Name": "NVIDIA GeForce GTX 1060 3 GB", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1152", + "TMUs": "72", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-300-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 18th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1708 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "48", + "SM Count": "9", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "81.98 GPixel/s", + "Texture Rate": "123.0 GTexel/s", + "FP16 (half) performance": "61.49 GFLOPS (1:64)", + "FP32 (float) performance": "3.935 TFLOPS", + "FP64 (double) performance": "123.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (147)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-3-gb-gp104.c2926", + "web_page_access_date": "2022/08/22/, 18:59:02", + "Product Name": "NVIDIA GeForce GTX 1060 3 GB GP104", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1152", + "TMUs": "72", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-140-KA-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 25th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1708 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "48", + "SM Count": "9", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "81.98 GPixel/s", + "Texture Rate": "123.0 GTexel/s", + "FP16 (half) performance": "61.49 GFLOPS (1:64)", + "FP32 (float) performance": "3.935 TFLOPS", + "FP64 (double) performance": "123.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (6)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-6-gb.c2862", + "web_page_access_date": "2022/08/22/, 00:25:04", + "Product Name": "NVIDIA GeForce GTX 1060 6 GB", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-400-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 19th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "82.03 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (207)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-mobile.c3016", + "web_page_access_date": "2022/08/22/, 00:25:10", + "Product Name": "NVIDIA GeForce GTX 1060 Mobile", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "N17E-G1-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 15th, 2016", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1404 MHz", + "Boost Clock": "1670 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "80.16 GPixel/s", + "Texture Rate": "133.6 GTexel/s", + "FP16 (half) performance": "66.80 GFLOPS (1:64)", + "FP32 (float) performance": "4.275 TFLOPS", + "FP64 (double) performance": "133.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2914 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1070.c2840", + "web_page_access_date": "2022/08/22/, 00:25:16", + "Product Name": "NVIDIA GeForce GTX 1070", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-200-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 10th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "379 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "125 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1683 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "15", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "107.7 GPixel/s", + "Texture Rate": "202.0 GTexel/s", + "FP16 (half) performance": "101.0 GFLOPS (1:64)", + "FP32 (float) performance": "6.463 TFLOPS", + "FP64 (double) performance": "202.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG411 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (192)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1070-mobile.c2869", + "web_page_access_date": "2022/08/22/, 00:25:21", + "Product Name": "NVIDIA GeForce GTX 1070 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-G2-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 15th, 2016", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "125 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1442 MHz", + "Boost Clock": "1645 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SM Count": "16", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "105.3 GPixel/s", + "Texture Rate": "210.6 GTexel/s", + "FP16 (half) performance": "105.3 GFLOPS (1:64)", + "FP32 (float) performance": "6.738 TFLOPS", + "FP64 (double) performance": "210.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "120 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2914 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080.c2839", + "web_page_access_date": "2022/08/22/, 00:25:27", + "Product Name": "NVIDIA GeForce GTX 1080", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-400-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "May 27th, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "183 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Boost Clock": "1733 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "320.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.9 GPixel/s", + "Texture Rate": "277.3 GTexel/s", + "FP16 (half) performance": "138.6 GFLOPS (1:64)", + "FP32 (float) performance": "8.873 TFLOPS", + "FP64 (double) performance": "277.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG413 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (170)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080-mobile.c2870", + "web_page_access_date": "2022/08/22/, 00:25:33", + "Product Name": "NVIDIA GeForce GTX 1080 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-G3-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 15th, 2016", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "183 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1556 MHz", + "Boost Clock": "1734 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "320.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "111.0 GPixel/s", + "Texture Rate": "277.4 GTexel/s", + "FP16 (half) performance": "138.7 GFLOPS (1:64)", + "FP32 (float) performance": "8.878 TFLOPS", + "FP64 (double) performance": "277.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2915 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-oem.c3743", + "web_page_access_date": "2022/08/22/, 00:25:39", + "Product Name": "NVIDIA GeForce GTX 760 OEM", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 6th, 2016", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "993 MHz", + "Boost Clock": "1046 MHz", + "Memory Clock": "1650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "211.2 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.29 GPixel/s", + "Texture Rate": "117.2 GTexel/s", + "FP32 (float) performance": "2.812 TFLOPS", + "FP64 (double) performance": "117.2 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950-low-power.c2841", + "web_page_access_date": "2022/08/22/, 00:25:45", + "Product Name": "NVIDIA GeForce GTX 950 Low Power", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GM206-251-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2016", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "76 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1026 MHz", + "Boost Clock": "1190 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "105.8 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SMM Count": "6", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.08 GPixel/s", + "Texture Rate": "57.12 GTexel/s", + "FP32 (float) performance": "1.828 TFLOPS", + "FP64 (double) performance": "57.12 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "202 mm\n\t\t\t\t\t8 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-950-oem.c2817", + "web_page_access_date": "2022/08/22/, 00:25:50", + "Product Name": "NVIDIA GeForce GTX 950 OEM", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GM206 950 OEM", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "2016", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "76 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "937 MHz", + "Boost Clock": "1203 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.50 GPixel/s", + "Texture Rate": "76.99 GTexel/s", + "FP32 (float) performance": "2.464 TFLOPS", + "FP64 (double) performance": "76.99 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-965m.c2796", + "web_page_access_date": "2022/08/22/, 00:25:56", + "Product Name": "NVIDIA GeForce GTX 965M", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "N16E-GR", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Mobile Graphics": { + "Release Date": "2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "935 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.80 GPixel/s", + "Texture Rate": "73.60 GTexel/s", + "FP32 (float) performance": "2.355 TFLOPS", + "FP64 (double) performance": "73.60 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980mx.c2808", + "web_page_access_date": "2022/08/22/, 00:26:02", + "Product Name": "NVIDIA GeForce GTX 980MX", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1664", + "TMUs": "104", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GXX-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2016", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1050 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1664", + "TMUs": "104", + "ROPs": "64", + "SMM Count": "13", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.39 GPixel/s", + "Texture Rate": "122.5 GTexel/s", + "FP32 (float) performance": "3.920 TFLOPS", + "FP64 (double) performance": "122.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "148 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-tx2-gpu.c3231", + "web_page_access_date": "2022/08/22/, 00:26:07", + "Product Name": "NVIDIA Jetson TX2 GPU", + "General Specs": { + "Graphics Processor": "GP10B", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GP10B", + "GPU Variant": "Tegra X2", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "2016", + "Generation": "Tegra", + "Production": "Active", + "Launch Price": "249 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "854 MHz", + "Boost Clock": "1465 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.44 GPixel/s", + "Texture Rate": "23.44 GTexel/s", + "FP16 (half) performance": "1.500 TFLOPS (2:1)", + "FP32 (float) performance": "750.1 GFLOPS", + "FP64 (double) performance": "23.44 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "Length": "87 mm\n\t\t\t\t\t3.4 inches", + "Width": "50 mm\n\t\t\t\t\t2 inches", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "CUDA": "6.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-gp100.c2994", + "web_page_access_date": "2022/08/22/, 00:26:13", + "Product Name": "NVIDIA Quadro GP100", + "General Specs": { + "Graphics Processor": "GP100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GP100", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "15,300 million", + "Die Size": "610 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 1st, 2016", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1304 MHz", + "Boost Clock": "1442 MHz", + "Memory Clock": "715 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1430 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "732.2 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "L1 Cache": "24 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "138.4 GPixel/s", + "Texture Rate": "323.0 GTexel/s", + "FP16 (half) performance": "20.67 TFLOPS (2:1)", + "FP32 (float) performance": "10.34 TFLOPS", + "FP64 (double) performance": "5.168 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "235 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.0", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m2000.c2837", + "web_page_access_date": "2022/08/22/, 00:26:19", + "Product Name": "NVIDIA Quadro M2000", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "GPU Variant": "GM206-875-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 8th, 2016", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "796 MHz", + "Boost Clock": "1163 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "105.8 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SMM Count": "6", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "37.22 GPixel/s", + "Texture Rate": "55.82 GTexel/s", + "FP32 (float) performance": "1.786 TFLOPS", + "FP64 (double) performance": "55.82 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "201 mm\n\t\t\t\t\t7.9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m3000-se.c2886", + "web_page_access_date": "2022/08/22/, 00:26:24", + "Product Name": "NVIDIA Quadro M3000 SE", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 2nd, 2016", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "823 MHz", + "Boost Clock": "924 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.57 GPixel/s", + "Texture Rate": "59.14 GTexel/s", + "FP32 (float) performance": "1.892 TFLOPS", + "FP64 (double) performance": "59.14 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m500m.c2843", + "web_page_access_date": "2022/08/22/, 00:26:30", + "Product Name": "NVIDIA Quadro M500M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N15M-Q3", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Apr 27th, 2016", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.992 GPixel/s", + "Texture Rate": "17.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m5500-mobile.c2838", + "web_page_access_date": "2022/08/22/, 00:26:36", + "Product Name": "NVIDIA Quadro M5500 Mobile", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 8th, 2016", + "Generation": "Quadro Mobile\n(Mx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1140 MHz", + "Boost Clock": "1165 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "74.56 GPixel/s", + "Texture Rate": "149.1 GTexel/s", + "FP32 (float) performance": "4.772 TFLOPS", + "FP64 (double) performance": "149.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m6000-24-gb.c2824", + "web_page_access_date": "2022/08/22/, 00:26:41", + "Product Name": "NVIDIA Quadro M6000 24 GB", + "General Specs": { + "Graphics Processor": "GM200", + "Cores": "3072", + "TMUs": "256", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GM200", + "GPU Variant": "GM200-880-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "8,000 million", + "Die Size": "601 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 5th, 2016", + "Generation": "Quadro\n(Mx000)", + "Production": "End-of-life", + "Launch Price": "4,999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "988 MHz", + "Boost Clock": "1114 MHz", + "Memory Clock": "1653 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.6 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "317.4 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "256", + "ROPs": "96", + "SMM Count": "24", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "106.9 GPixel/s", + "Texture Rate": "285.2 GTexel/s", + "FP32 (float) performance": "6.844 TFLOPS", + "FP64 (double) performance": "213.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG600 SKU 0500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p5000.c2864", + "web_page_access_date": "2022/08/22/, 00:26:47", + "Product Name": "NVIDIA Quadro P5000", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-875-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 1st, 2016", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Launch Price": "2,499 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Boost Clock": "1733 MHz", + "Memory Clock": "1127 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t9 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "288.5 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.9 GPixel/s", + "Texture Rate": "277.3 GTexel/s", + "FP16 (half) performance": "138.6 GFLOPS (1:64)", + "FP32 (float) performance": "8.873 TFLOPS", + "FP64 (double) performance": "277.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG413 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p6000.c2865", + "web_page_access_date": "2022/08/22/, 00:26:53", + "Product Name": "NVIDIA Quadro P6000", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-875-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 1st, 2016", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Launch Price": "5,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1645 MHz", + "Memory Clock": "1127 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t9 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "384 bit", + "Bandwidth": "432.8 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "SM Count": "30", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "157.9 GPixel/s", + "Texture Rate": "394.8 GTexel/s", + "FP16 (half) performance": "197.4 GFLOPS (1:64)", + "FP32 (float) performance": "12.63 TFLOPS", + "FP64 (double) performance": "394.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG611 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/titan-x-pascal.c2863", + "web_page_access_date": "2022/08/22/, 00:26:59", + "Product Name": "NVIDIA TITAN X Pascal", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR5X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-400-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 2nd, 2016", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1417 MHz", + "Boost Clock": "1531 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "384 bit", + "Bandwidth": "480.4 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "28", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "147.0 GPixel/s", + "Texture Rate": "342.9 GTexel/s", + "FP16 (half) performance": "171.5 GFLOPS (1:64)", + "FP32 (float) performance": "10.97 TFLOPS", + "FP64 (double) performance": "342.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG611 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m10.c3035", + "web_page_access_date": "2022/08/22/, 00:27:04", + "Product Name": "NVIDIA Tesla M10", + "General Specs": { + "Graphics Processor": "GM107 x4", + "Cores": "640 x4", + "TMUs": "40 x4", + "ROPs": "16 x4", + "Memory Size": "8 GB x4", + "Memory Type": "GDDR5", + "Bus Width": "128 bit x4" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-570-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "May 18th, 2016", + "Generation": "Tesla\n(Mxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1033 MHz", + "Boost Clock": "1306 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "83.20 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.90 GPixel/s", + "Texture Rate": "52.24 GTexel/s", + "FP32 (float) performance": "1.672 TFLOPS", + "FP64 (double) performance": "52.24 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "P2405 SKU 70" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p10.c3750", + "web_page_access_date": "2022/08/22/, 00:27:10", + "Product Name": "NVIDIA Tesla P10", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1025 MHz", + "Boost Clock": "1493 MHz", + "Memory Clock": "1808 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14.5 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "384 bit", + "Bandwidth": "694.3 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "SM Count": "30", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "143.3 GPixel/s", + "Texture Rate": "358.3 GTexel/s", + "FP16 (half) performance": "179.2 GFLOPS (1:64)", + "FP32 (float) performance": "11.47 TFLOPS", + "FP64 (double) performance": "358.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "97 mm\n\t\t\t\t\t3.8 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "PG610 SKU 210" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p100-dgxs.c3285", + "web_page_access_date": "2022/08/22/, 00:27:16", + "Product Name": "NVIDIA Tesla P100 DGXS", + "General Specs": { + "Graphics Processor": "GP100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GP100", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "15,300 million", + "Die Size": "610 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 5th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1328 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "715 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1430 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "732.2 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "L1 Cache": "24 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "142.1 GPixel/s", + "Texture Rate": "331.5 GTexel/s", + "FP16 (half) performance": "21.22 TFLOPS (2:1)", + "FP32 (float) performance": "10.61 TFLOPS", + "FP64 (double) performance": "5.304 TFLOPS (1:2)" + }, + "Board Design": { + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.0", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p100-pcie-12-gb.c2915", + "web_page_access_date": "2022/08/22/, 00:27:22", + "Product Name": "NVIDIA Tesla P100 PCIe 12 GB", + "General Specs": { + "Graphics Processor": "GP100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "HBM2", + "Bus Width": "3072 bit" + }, + "Graphics Processor": { + "GPU Name": "GP100", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "15,300 million", + "Die Size": "610 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 20th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Launch Price": "4,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1190 MHz", + "Boost Clock": "1329 MHz", + "Memory Clock": "715 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1430 Mbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "HBM2", + "Memory Bus": "3072 bit", + "Bandwidth": "549.1 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "L1 Cache": "24 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "127.6 GPixel/s", + "Texture Rate": "297.7 GTexel/s", + "FP16 (half) performance": "19.05 TFLOPS (2:1)", + "FP32 (float) performance": "9.526 TFLOPS", + "FP64 (double) performance": "4.763 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.0", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p100-pcie-16-gb.c2888", + "web_page_access_date": "2022/08/22/, 00:27:33", + "Product Name": "NVIDIA Tesla P100 PCIe 16 GB", + "General Specs": { + "Graphics Processor": "GP100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GP100", + "GPU Variant": "GP100-893-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "15,300 million", + "Die Size": "610 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 20th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Launch Price": "5,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1190 MHz", + "Boost Clock": "1329 MHz", + "Memory Clock": "715 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1430 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "732.2 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "L1 Cache": "24 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "127.6 GPixel/s", + "Texture Rate": "297.7 GTexel/s", + "FP16 (half) performance": "19.05 TFLOPS (2:1)", + "FP32 (float) performance": "9.526 TFLOPS", + "FP64 (double) performance": "4.763 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.0", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p100-sxm2.c3183", + "web_page_access_date": "2022/08/22/, 00:27:38", + "Product Name": "NVIDIA Tesla P100 SXM2", + "General Specs": { + "Graphics Processor": "GP100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GP100", + "GPU Variant": "GP100-890-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "15,300 million", + "Die Size": "610 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 5th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1328 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "715 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1430 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "732.2 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "L1 Cache": "24 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "142.1 GPixel/s", + "Texture Rate": "331.5 GTexel/s", + "FP16 (half) performance": "21.22 TFLOPS (2:1)", + "FP32 (float) performance": "10.61 TFLOPS", + "FP64 (double) performance": "5.304 TFLOPS (1:2)" + }, + "Board Design": { + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.0", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p4.c2879", + "web_page_access_date": "2022/08/22/, 00:27:44", + "Product Name": "NVIDIA Tesla P4", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-895-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "886 MHz", + "Boost Clock": "1114 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "71.30 GPixel/s", + "Texture Rate": "178.2 GTexel/s", + "FP16 (half) performance": "89.12 GFLOPS (1:64)", + "FP32 (float) performance": "5.704 TFLOPS", + "FP64 (double) performance": "178.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p40.c2878", + "web_page_access_date": "2022/08/22/, 00:27:50", + "Product Name": "NVIDIA Tesla P40", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2016", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Launch Price": "5,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1303 MHz", + "Boost Clock": "1531 MHz", + "Memory Clock": "1808 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14.5 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "384 bit", + "Bandwidth": "694.3 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "SM Count": "30", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "147.0 GPixel/s", + "Texture Rate": "367.4 GTexel/s", + "FP16 (half) performance": "183.7 GFLOPS (1:64)", + "FP32 (float) performance": "11.76 TFLOPS", + "FP64 (double) performance": "367.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG610 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-1030.c2954", + "web_page_access_date": "2022/08/22/, 00:27:56", + "Product Name": "NVIDIA GeForce GT 1030", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-300-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Graphics Card": { + "Release Date": "May 17th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 3.0 x4", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1228 MHz", + "Boost Clock": "1468 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.49 GPixel/s", + "Texture Rate": "35.23 GTexel/s", + "FP16 (half) performance": "17.62 GFLOPS (1:64)", + "FP32 (float) performance": "1,127 GFLOPS", + "FP64 (double) performance": "35.23 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "Height": "18 mm\n\t\t\t\t\t0.7 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 2.0", + "Power Connectors": "None", + "Board Number": "PG110 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (69)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720-oem.c3572", + "web_page_access_date": "2022/08/22/, 00:28:01", + "Product Name": "NVIDIA GeForce GT 720 OEM", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 29th, 2017", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "993 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.972 GPixel/s", + "Texture Rate": "15.89 GTexel/s", + "FP32 (float) performance": "381.3 GFLOPS", + "FP64 (double) performance": "15.89 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2011" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-mobile.c3298", + "web_page_access_date": "2022/08/22/, 00:28:07", + "Product Name": "NVIDIA GeForce GTX 1050 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 3rd, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1493 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.89 GPixel/s", + "Texture Rate": "59.72 GTexel/s", + "FP16 (half) performance": "29.86 GFLOPS (1:64)", + "FP32 (float) performance": "1.911 TFLOPS", + "FP64 (double) performance": "59.72 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-mobile.c2917", + "web_page_access_date": "2022/08/22/, 00:28:13", + "Product Name": "NVIDIA GeForce GTX 1050 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "N17P-G0-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 3rd, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1493 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.89 GPixel/s", + "Texture Rate": "59.72 GTexel/s", + "FP16 (half) performance": "29.86 GFLOPS (1:64)", + "FP32 (float) performance": "1.911 TFLOPS", + "FP64 (double) performance": "59.72 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2904 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-ti-mobile.c2912", + "web_page_access_date": "2022/08/22/, 00:28:18", + "Product Name": "NVIDIA GeForce GTX 1050 Ti Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "N17P-G1-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 3rd, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1493 MHz", + "Boost Clock": "1620 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "51.84 GPixel/s", + "Texture Rate": "77.76 GTexel/s", + "FP16 (half) performance": "38.88 GFLOPS (1:64)", + "FP32 (float) performance": "2.488 TFLOPS", + "FP64 (double) performance": "77.76 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2904 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-ti-mobile.c3013", + "web_page_access_date": "2022/08/22/, 00:28:24", + "Product Name": "NVIDIA GeForce GTX 1050 Ti Mobile", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1493 MHz", + "Boost Clock": "1620 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "51.84 GPixel/s", + "Texture Rate": "77.76 GTexel/s", + "FP16 (half) performance": "38.88 GFLOPS (1:64)", + "FP32 (float) performance": "2.488 TFLOPS", + "FP64 (double) performance": "77.76 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2914 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-5-gb.c3060", + "web_page_access_date": "2022/08/22/, 00:28:30", + "Product Name": "NVIDIA GeForce GTX 1060 5 GB", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-350-K3-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 26th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "160 bit", + "Bandwidth": "160.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "40", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "68.36 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Retail boards based on this design (21)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-6-gb-9gbps.c2952", + "web_page_access_date": "2022/08/22/, 00:28:35", + "Product Name": "NVIDIA GeForce GTX 1060 6 GB 9Gbps", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-410-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 20th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "2257 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t9 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "216.7 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "82.03 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 40" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-max-q.c2976", + "web_page_access_date": "2022/08/22/, 00:28:41", + "Product Name": "NVIDIA GeForce GTX 1060 Max-Q", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "N17E-G1-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 27th, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1063 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "71.04 GPixel/s", + "Texture Rate": "118.4 GTexel/s", + "FP16 (half) performance": "59.20 GFLOPS (1:64)", + "FP32 (float) performance": "3.789 TFLOPS", + "FP64 (double) performance": "118.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2914 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1070-max-q.c2974", + "web_page_access_date": "2022/08/22/, 00:28:47", + "Product Name": "NVIDIA GeForce GTX 1070 Max-Q", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-G2-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 27th, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "125 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1215 MHz", + "Boost Clock": "1379 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SM Count": "16", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "88.26 GPixel/s", + "Texture Rate": "176.5 GTexel/s", + "FP16 (half) performance": "88.26 GFLOPS (1:64)", + "FP32 (float) performance": "5.648 TFLOPS", + "FP64 (double) performance": "176.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2914 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1070-ti.c3010", + "web_page_access_date": "2022/08/22/, 00:28:53", + "Product Name": "NVIDIA GeForce GTX 1070 Ti", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2432", + "TMUs": "152", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-300-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 2nd, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "81 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Boost Clock": "1683 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "2432", + "TMUs": "152", + "ROPs": "64", + "SM Count": "19", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "107.7 GPixel/s", + "Texture Rate": "255.8 GTexel/s", + "FP16 (half) performance": "127.9 GFLOPS (1:64)", + "FP32 (float) performance": "8.186 TFLOPS", + "FP64 (double) performance": "255.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG411" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (79)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080-11gbps.c2951", + "web_page_access_date": "2022/08/22/, 00:28:59", + "Product Name": "NVIDIA GeForce GTX 1080 11Gbps", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-410-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 20th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "183 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Boost Clock": "1733 MHz", + "Memory Clock": "1376 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "352.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.9 GPixel/s", + "Texture Rate": "277.3 GTexel/s", + "FP16 (half) performance": "138.6 GFLOPS (1:64)", + "FP32 (float) performance": "8.873 TFLOPS", + "FP64 (double) performance": "277.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG413 SKU 5" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080-max-q.c2975", + "web_page_access_date": "2022/08/22/, 00:29:05", + "Product Name": "NVIDIA GeForce GTX 1080 Max-Q", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-G3-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 27th, 2017", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "183 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1290 MHz", + "Boost Clock": "1468 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "320.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "93.95 GPixel/s", + "Texture Rate": "234.9 GTexel/s", + "FP16 (half) performance": "117.4 GFLOPS (1:64)", + "FP32 (float) performance": "7.516 TFLOPS", + "FP64 (double) performance": "234.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2915 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080-ti.c2877", + "web_page_access_date": "2022/08/22/, 00:29:10", + "Product Name": "NVIDIA GeForce GTX 1080 Ti", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3584", + "TMUs": "224", + "ROPs": "88", + "Memory Size": "11 GB", + "Memory Type": "GDDR5X", + "Bus Width": "352 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-350-K1-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 10th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "699 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "149 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1481 MHz", + "Boost Clock": "1582 MHz", + "Memory Clock": "1376 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "11 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "352 bit", + "Bandwidth": "484.4 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "88", + "SM Count": "28", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2.75 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "139.2 GPixel/s", + "Texture Rate": "354.4 GTexel/s", + "FP16 (half) performance": "177.2 GFLOPS (1:64)", + "FP32 (float) performance": "11.34 TFLOPS", + "FP64 (double) performance": "354.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG611 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Retail boards based on this design (149)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx110.c3044", + "web_page_access_date": "2022/08/22/, 00:29:16", + "Product Name": "NVIDIA GeForce MX110", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16V-GMR1-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Nov 17th, 2017", + "Generation": "GeForce MX\n(1xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "978 MHz", + "Boost Clock": "1006 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.048 GPixel/s", + "Texture Rate": "24.14 GTexel/s", + "FP32 (float) performance": "772.6 GFLOPS", + "FP64 (double) performance": "24.14 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx130.c3043", + "web_page_access_date": "2022/08/22/, 00:29:22", + "Product Name": "NVIDIA GeForce MX130", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N16S-GTR-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Nov 17th, 2017", + "Generation": "GeForce MX\n(1xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1109 MHz", + "Boost Clock": "1189 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.512 GPixel/s", + "Texture Rate": "28.54 GTexel/s", + "FP32 (float) performance": "913.2 GFLOPS", + "FP64 (double) performance": "28.54 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx150.c2959", + "web_page_access_date": "2022/08/22/, 00:29:28", + "Product Name": "NVIDIA GeForce MX150", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-650-A1\n\t\t\t\t\t\t\t\t\t\t\n(N17S-G1-A1)", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 17th, 2017", + "Generation": "GeForce MX\n(1xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1469 MHz", + "Boost Clock": "1532 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.51 GPixel/s", + "Texture Rate": "36.77 GTexel/s", + "FP16 (half) performance": "18.38 GFLOPS (1:64)", + "FP32 (float) performance": "1,177 GFLOPS", + "FP64 (double) performance": "36.77 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2902 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx150.c2984", + "web_page_access_date": "2022/08/22/, 00:29:33", + "Product Name": "NVIDIA GeForce MX150", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "N17S-LG-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 17th, 2017", + "Generation": "GeForce MX\n(1xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "937 MHz", + "Boost Clock": "1038 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.61 GPixel/s", + "Texture Rate": "24.91 GTexel/s", + "FP16 (half) performance": "12.46 GFLOPS (1:64)", + "FP32 (float) performance": "797.2 GFLOPS", + "FP64 (double) performance": "24.91 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p104-100.c2981", + "web_page_access_date": "2022/08/22/, 00:29:39", + "Product Name": "NVIDIA P104-100", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-100-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 12th, 2017", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1607 MHz", + "Boost Clock": "1733 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "320.3 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "15", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "110.9 GPixel/s", + "Texture Rate": "208.0 GTexel/s", + "FP16 (half) performance": "104.0 GFLOPS (1:64)", + "FP32 (float) performance": "6.655 TFLOPS", + "FP64 (double) performance": "208.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "PG413 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p106-090.c2999", + "web_page_access_date": "2022/08/22/, 00:29:45", + "Product Name": "NVIDIA P106-090", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "768", + "TMUs": "48", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-090-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 31st, 2017", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1531 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "48", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "73.49 GPixel/s", + "Texture Rate": "73.49 GTexel/s", + "FP16 (half) performance": "36.74 GFLOPS (1:64)", + "FP32 (float) performance": "2.352 TFLOPS", + "FP64 (double) performance": "73.49 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 90" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p106-100.c2980", + "web_page_access_date": "2022/08/22/, 18:59:06", + "Product Name": "NVIDIA P106-100", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-100-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 19th, 2017", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "82.03 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m1200-mobile.c2921", + "web_page_access_date": "2022/08/22/, 18:59:10", + "Product Name": "NVIDIA Quadro M1200 Mobile", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Mx200)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "991 MHz", + "Boost Clock": "1148 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.37 GPixel/s", + "Texture Rate": "45.92 GTexel/s", + "FP32 (float) performance": "1,469 GFLOPS", + "FP64 (double) performance": "45.92 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2757 SKU 512" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m2200-mobile.c2922", + "web_page_access_date": "2022/08/22/, 18:59:14", + "Product Name": "NVIDIA Quadro M2200 Mobile", + "General Specs": { + "Graphics Processor": "GM206", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM206", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,940 million", + "Die Size": "228 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Mx200)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "695 MHz", + "Boost Clock": "1036 MHz", + "Memory Clock": "1377 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.13 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SMM Count": "8", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.15 GPixel/s", + "Texture Rate": "66.30 GTexel/s", + "FP32 (float) performance": "2.122 TFLOPS", + "FP64 (double) performance": "66.30 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m520-mobile.c2919", + "web_page_access_date": "2022/08/22/, 18:59:19", + "Product Name": "NVIDIA Quadro M520 Mobile", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Mx200)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1041 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.328 GPixel/s", + "Texture Rate": "16.66 GTexel/s", + "FP32 (float) performance": "799.5 GFLOPS", + "FP64 (double) performance": "24.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-m620-mobile.c2920", + "web_page_access_date": "2022/08/22/, 18:59:23", + "Product Name": "NVIDIA Quadro M620 Mobile", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Mx200)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "756 MHz", + "Boost Clock": "977 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "15.63 GPixel/s", + "Texture Rate": "31.26 GTexel/s", + "FP32 (float) performance": "1,000 GFLOPS", + "FP64 (double) performance": "31.26 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p1000.c3680", + "web_page_access_date": "2022/08/22/, 18:59:27", + "Product Name": "NVIDIA Quadro P1000", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-860-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1266 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "32", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "47.36 GPixel/s", + "Texture Rate": "59.20 GTexel/s", + "FP16 (half) performance": "29.60 GFLOPS (1:64)", + "FP32 (float) performance": "1.894 TFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "150 mm\n\t\t\t\t\t5.9 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "47 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG212 SKU 502" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p1000.c2932", + "web_page_access_date": "2022/08/22/, 18:59:35", + "Product Name": "NVIDIA Quadro P1000", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1392 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.27 GPixel/s", + "Texture Rate": "44.54 GTexel/s", + "FP16 (half) performance": "22.27 GFLOPS (1:64)", + "FP32 (float) performance": "1,425 GFLOPS", + "FP64 (double) performance": "44.54 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "150 mm\n\t\t\t\t\t5.9 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "47 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG212 SKU 502" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p1000-mobile.c3201", + "web_page_access_date": "2022/08/22/, 18:59:41", + "Product Name": "NVIDIA Quadro P1000 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1303 MHz", + "Boost Clock": "1519 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.30 GPixel/s", + "Texture Rate": "48.61 GTexel/s", + "FP16 (half) performance": "24.30 GFLOPS (1:64)", + "FP32 (float) performance": "1.555 TFLOPS", + "FP64 (double) performance": "48.61 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "40 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2904 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p2000.c2931", + "web_page_access_date": "2022/08/22/, 18:59:47", + "Product Name": "NVIDIA Quadro P2000", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1024", + "TMUs": "64", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-875-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 6th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1076 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "160 bit", + "Bandwidth": "140.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "40", + "SM Count": "8", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.20 GPixel/s", + "Texture Rate": "94.72 GTexel/s", + "FP16 (half) performance": "47.36 GFLOPS (1:64)", + "FP32 (float) performance": "3.031 TFLOPS", + "FP64 (double) performance": "94.72 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "196 mm\n\t\t\t\t\t7.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG410 SKU 502" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p2000-mobile.c3202", + "web_page_access_date": "2022/08/22/, 18:59:51", + "Product Name": "NVIDIA Quadro P2000 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 6th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1557 MHz", + "Boost Clock": "1607 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "51.42 GPixel/s", + "Texture Rate": "77.14 GTexel/s", + "FP16 (half) performance": "38.57 GFLOPS (1:64)", + "FP32 (float) performance": "2.468 TFLOPS", + "FP64 (double) performance": "77.14 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p400.c2934", + "web_page_access_date": "2022/08/22/, 00:33:01", + "Product Name": "NVIDIA Quadro P400", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-825-KA-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1228 MHz", + "Boost Clock": "1252 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.06 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.03 GPixel/s", + "Texture Rate": "20.03 GTexel/s", + "FP16 (half) performance": "10.02 GFLOPS (1:64)", + "FP32 (float) performance": "641.0 GFLOPS", + "FP64 (double) performance": "20.03 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "150 mm\n\t\t\t\t\t5.9 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "3x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG212 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p4000.c2930", + "web_page_access_date": "2022/08/22/, 00:33:07", + "Product Name": "NVIDIA Quadro P4000", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-850-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 6th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Launch Price": "815 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1202 MHz", + "Boost Clock": "1480 MHz", + "Memory Clock": "1901 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7.6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "243.3 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "SM Count": "14", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "94.72 GPixel/s", + "Texture Rate": "165.8 GTexel/s", + "FP16 (half) performance": "82.88 GFLOPS (1:64)", + "FP32 (float) performance": "5.304 TFLOPS", + "FP64 (double) performance": "165.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "105 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 501" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p4000-max-q.c3015", + "web_page_access_date": "2022/08/22/, 00:33:13", + "Product Name": "NVIDIA Quadro P4000 Max-Q", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-Q3-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1114 MHz", + "Boost Clock": "1228 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "SM Count": "14", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "78.59 GPixel/s", + "Texture Rate": "137.5 GTexel/s", + "FP16 (half) performance": "68.77 GFLOPS (1:64)", + "FP32 (float) performance": "4.401 TFLOPS", + "FP64 (double) performance": "137.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p4000-mobile.c2924", + "web_page_access_date": "2022/08/22/, 00:33:19", + "Product Name": "NVIDIA Quadro P4000 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-Q3-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1227 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "SM Count": "14", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "78.53 GPixel/s", + "Texture Rate": "137.4 GTexel/s", + "FP16 (half) performance": "68.71 GFLOPS (1:64)", + "FP32 (float) performance": "4.398 TFLOPS", + "FP64 (double) performance": "137.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p5000-mobile.c2925", + "web_page_access_date": "2022/08/22/, 00:33:25", + "Product Name": "NVIDIA Quadro P5000 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-Q5-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1278 MHz", + "Boost Clock": "1582 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SM Count": "16", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "101.2 GPixel/s", + "Texture Rate": "202.5 GTexel/s", + "FP16 (half) performance": "101.2 GFLOPS (1:64)", + "FP32 (float) performance": "6.480 TFLOPS", + "FP64 (double) performance": "202.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p600.c2933", + "web_page_access_date": "2022/08/22/, 00:33:30", + "Product Name": "NVIDIA Quadro P600", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1329 MHz", + "Boost Clock": "1557 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.13 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.91 GPixel/s", + "Texture Rate": "37.37 GTexel/s", + "FP16 (half) performance": "18.68 GFLOPS (1:64)", + "FP32 (float) performance": "1,196 GFLOPS", + "FP64 (double) performance": "37.37 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "150 mm\n\t\t\t\t\t5.9 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "40 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG212 SKU 501" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p600-mobile.c3200", + "web_page_access_date": "2022/08/22/, 00:33:36", + "Product Name": "NVIDIA Quadro P600 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 7th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1430 MHz", + "Boost Clock": "1557 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.91 GPixel/s", + "Texture Rate": "37.37 GTexel/s", + "FP16 (half) performance": "18.68 GFLOPS (1:64)", + "FP32 (float) performance": "1,196 GFLOPS", + "FP64 (double) performance": "37.37 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/switch-gpu-20nm.c3104", + "web_page_access_date": "2022/08/22/, 00:33:42", + "Product Name": "NVIDIA Switch GPU 20nm", + "General Specs": { + "Graphics Processor": "GM20B", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM20B", + "GPU Variant": "ODNX02-A2", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "20 nm", + "Transistors": "2,000 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 17th, 2017", + "Generation": "Console GPU\n(Nintendo)", + "Production": "End-of-life", + "Launch Price": "299 USD" + }, + "Clock Speeds": { + "Base Clock": "384 MHz", + "Boost Clock": "768 MHz", + "Memory Clock": "1600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SMM Count": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "12.29 GPixel/s", + "Texture Rate": "12.29 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (2:1)", + "FP32 (float) performance": "393.2 GFLOPS", + "FP64 (double) performance": "12.29 GFLOPS (1:32)" + }, + "Board Design": { + "Length": "239 mm\n\t\t\t\t\t9.4 inches", + "Width": "101 mm\n\t\t\t\t\t4 inches", + "Height": "28 mm\n\t\t\t\t\t1.1 inches", + "Weight": "0.4 kg (0.88 lbs)", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "HAC-001" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "CUDA": "5.3", + "Shader Model": "6.4" + }, + "Console Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/titan-v.c3051", + "web_page_access_date": "2022/08/22/, 00:33:48", + "Product Name": "NVIDIA TITAN V", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "HBM2", + "Bus Width": "3072 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "GPU Variant": "GV100-400-A1", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 7th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "2,999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "4 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "848 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1696 Mbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "HBM2", + "Memory Bus": "3072 bit", + "Bandwidth": "651.3 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "96", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "96 KB (per SM)", + "L2 Cache": "4.5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "139.7 GPixel/s", + "Texture Rate": "465.6 GTexel/s", + "FP16 (half) performance": "29.80 TFLOPS (2:1)", + "FP32 (float) performance": "14.90 TFLOPS", + "FP64 (double) performance": "7.450 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG500 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/titan-xp.c2948", + "web_page_access_date": "2022/08/22/, 00:33:54", + "Product Name": "NVIDIA TITAN Xp", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3840", + "TMUs": "240", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR5X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-450-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 6th, 2017", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "9 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1405 MHz", + "Boost Clock": "1582 MHz", + "Memory Clock": "1426 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11.4 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "384 bit", + "Bandwidth": "547.6 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "240", + "ROPs": "96", + "SM Count": "30", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "151.9 GPixel/s", + "Texture Rate": "379.7 GTexel/s", + "FP16 (half) performance": "189.8 GFLOPS (1:64)", + "FP32 (float) performance": "12.15 TFLOPS", + "FP64 (double) performance": "379.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG611 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-p6.c3036", + "web_page_access_date": "2022/08/22/, 00:33:59", + "Product Name": "NVIDIA Tesla P6", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-995-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 24th, 2017", + "Generation": "Tesla\n(Pxx)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1012 MHz", + "Boost Clock": "1506 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SM Count": "16", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "96.38 GPixel/s", + "Texture Rate": "192.8 GTexel/s", + "FP16 (half) performance": "96.38 GFLOPS (1:64)", + "FP32 (float) performance": "6.169 TFLOPS", + "FP64 (double) performance": "192.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "90 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG418 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-pcie-16-gb.c2957", + "web_page_access_date": "2022/08/22/, 00:34:05", + "Product Name": "NVIDIA Tesla V100 PCIe 16 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 21st, 2017", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1245 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "176.6 GPixel/s", + "Texture Rate": "441.6 GTexel/s", + "FP16 (half) performance": "28.26 TFLOPS (2:1)", + "FP32 (float) performance": "14.13 TFLOPS", + "FP64 (double) performance": "7.066 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG500 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-sxm2-16-gb.c3018", + "web_page_access_date": "2022/08/22/, 00:34:11", + "Product Name": "NVIDIA Tesla V100 SXM2 16 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 21st, 2017", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1312 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-1030-ddr4.c3187", + "web_page_access_date": "2022/08/22/, 00:34:17", + "Product Name": "NVIDIA GeForce GT 1030 DDR4", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR4", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-310-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 12th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 3.0 x4", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1152 MHz", + "Boost Clock": "1379 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR4", + "Memory Bus": "64 bit", + "Bandwidth": "16.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.06 GPixel/s", + "Texture Rate": "33.10 GTexel/s", + "FP16 (half) performance": "16.55 GFLOPS (1:64)", + "FP32 (float) performance": "1,059 GFLOPS", + "FP64 (double) performance": "33.10 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "Height": "15 mm\n\t\t\t\t\t0.6 inches", + "TDP": "20 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 2.0", + "Power Connectors": "None", + "Board Number": "PG111 SKU 01" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-1030-gk107.c3454", + "web_page_access_date": "2022/08/22/, 00:34:22", + "Product Name": "NVIDIA GeForce GT 1030 GK107", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 30th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1058 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.464 GPixel/s", + "Texture Rate": "33.86 GTexel/s", + "FP32 (float) performance": "812.5 GFLOPS", + "FP64 (double) performance": "33.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-3-gb.c3257", + "web_page_access_date": "2022/08/22/, 00:34:28", + "Product Name": "NVIDIA GeForce GTX 1050 3 GB", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-301-K1-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "May 21st, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1392 MHz", + "Boost Clock": "1518 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "96 bit", + "Bandwidth": "84.10 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.43 GPixel/s", + "Texture Rate": "72.86 GTexel/s", + "FP16 (half) performance": "36.43 GFLOPS (1:64)", + "FP32 (float) performance": "2.332 TFLOPS", + "FP64 (double) performance": "72.86 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG210" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (24)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-max-q.c3074", + "web_page_access_date": "2022/08/22/, 00:34:34", + "Product Name": "NVIDIA GeForce GTX 1050 Max-Q", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "N17P-G0-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 3rd, 2018", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1139 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.22 GPixel/s", + "Texture Rate": "45.56 GTexel/s", + "FP16 (half) performance": "22.78 GFLOPS (1:64)", + "FP32 (float) performance": "1,458 GFLOPS", + "FP64 (double) performance": "45.56 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-ti-max-q.c3075", + "web_page_access_date": "2022/08/22/, 00:34:40", + "Product Name": "NVIDIA GeForce GTX 1050 Ti Max-Q", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "N17P-G1-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 3rd, 2018", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1152 MHz", + "Boost Clock": "1291 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "41.31 GPixel/s", + "Texture Rate": "61.97 GTexel/s", + "FP16 (half) performance": "30.98 GFLOPS (1:64)", + "FP32 (float) performance": "1.983 TFLOPS", + "FP64 (double) performance": "61.97 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2904 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-6-gb-gddr5x.c3328", + "web_page_access_date": "2022/08/22/, 00:34:46", + "Product Name": "NVIDIA GeForce GTX 1060 6 GB GDDR5X", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5X", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-150-KA-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 18th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "82.03 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-6-gb-gp104.c3250", + "web_page_access_date": "2022/08/22/, 00:34:52", + "Product Name": "NVIDIA GeForce GTX 1060 6 GB GP104", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-150-KA-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 8th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1708 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "81.98 GPixel/s", + "Texture Rate": "136.6 GTexel/s", + "FP16 (half) performance": "68.32 GFLOPS (1:64)", + "FP32 (float) performance": "4.372 TFLOPS", + "FP64 (double) performance": "136.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (6)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-6-gb-rev-2.c3063", + "web_page_access_date": "2022/08/22/, 00:34:58", + "Product Name": "NVIDIA GeForce GTX 1060 6 GB Rev. 2", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-400-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "82.03 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG410 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1060-8-gb-gddr5x.c3455", + "web_page_access_date": "2022/08/22/, 00:35:04", + "Product Name": "NVIDIA GeForce GTX 1060 8 GB GDDR5X", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1280", + "TMUs": "80", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-150-KA-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "117 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1709 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "64", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "109.4 GPixel/s", + "Texture Rate": "136.7 GTexel/s", + "FP16 (half) performance": "68.36 GFLOPS (1:64)", + "FP32 (float) performance": "4.375 TFLOPS", + "FP64 (double) performance": "136.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "250 mm\n\t\t\t\t\t9.8 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1070-gddr5x.c3343", + "web_page_access_date": "2022/08/22/, 00:35:10", + "Product Name": "NVIDIA GeForce GTX 1070 GDDR5X", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-200-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 4th, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "125 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1683 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "15", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "107.7 GPixel/s", + "Texture Rate": "202.0 GTexel/s", + "FP16 (half) performance": "101.0 GFLOPS (1:64)", + "FP32 (float) performance": "6.463 TFLOPS", + "FP64 (double) performance": "202.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1080-ti-10-gb.c3309", + "web_page_access_date": "2022/08/22/, 00:35:16", + "Product Name": "NVIDIA GeForce GTX 1080 Ti 10 GB", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3200", + "TMUs": "200", + "ROPs": "80", + "Memory Size": "10 GB", + "Memory Type": "GDDR5X", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "149 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1557 MHz", + "Boost Clock": "1670 MHz", + "Memory Clock": "1376 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "320 bit", + "Bandwidth": "440.3 GB/s" + }, + "Render Config": { + "Shading Units": "3200", + "TMUs": "200", + "ROPs": "80", + "SM Count": "25", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2.5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.6 GPixel/s", + "Texture Rate": "334.0 GTexel/s", + "FP16 (half) performance": "167.0 GFLOPS (1:64)", + "FP32 (float) performance": "10.69 TFLOPS", + "FP64 (double) performance": "334.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG611 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070.c3252", + "web_page_access_date": "2022/08/22/, 00:35:21", + "Product Name": "NVIDIA GeForce RTX 2070", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-400A-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 17th, 2018", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "73 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1620 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "103.7 GPixel/s", + "Texture Rate": "233.3 GTexel/s", + "FP16 (half) performance": "14.93 TFLOPS (2:1)", + "FP32 (float) performance": "7.465 TFLOPS", + "FP64 (double) performance": "233.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.02x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin", + "Board Number": "PG160 SKU 52" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (170)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080.c3224", + "web_page_access_date": "2022/08/22/, 00:35:27", + "Product Name": "NVIDIA GeForce RTX 2080", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2944", + "TMUs": "184", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-400A-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 20th, 2018", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "699 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "66 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1515 MHz", + "Boost Clock": "1710 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2944", + "TMUs": "184", + "ROPs": "64", + "SM Count": "46", + "Tensor Cores": "368", + "RT Cores": "46", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "109.4 GPixel/s", + "Texture Rate": "314.6 GTexel/s", + "FP16 (half) performance": "20.14 TFLOPS (2:1)", + "FP32 (float) performance": "10.07 TFLOPS", + "FP64 (double) performance": "314.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "215 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG180 SKU 2" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (149)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-ti.c3305", + "web_page_access_date": "2022/08/22/, 00:35:33", + "Product Name": "NVIDIA GeForce RTX 2080 Ti", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4352", + "TMUs": "272", + "ROPs": "88", + "Memory Size": "11 GB", + "Memory Type": "GDDR6", + "Bus Width": "352 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-300A-K1-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 20th, 2018", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "999 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "88 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1350 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "11 GB", + "Memory Type": "GDDR6", + "Memory Bus": "352 bit", + "Bandwidth": "616.0 GB/s" + }, + "Render Config": { + "Shading Units": "4352", + "TMUs": "272", + "ROPs": "88", + "SM Count": "68", + "Tensor Cores": "544", + "RT Cores": "68", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "5.5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "136.0 GPixel/s", + "Texture Rate": "420.2 GTexel/s", + "FP16 (half) performance": "26.90 TFLOPS (2:1)", + "FP32 (float) performance": "13.45 TFLOPS", + "FP64 (double) performance": "420.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Board Number": "PG150 SKU 32" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (126)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-agx-xavier-gpu.c3232", + "web_page_access_date": "2022/08/22/, 00:35:39", + "Product Name": "NVIDIA Jetson AGX Xavier GPU", + "General Specs": { + "Graphics Processor": "GV10B", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GV10B", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "9,000 million", + "Die Size": "350 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2018", + "Generation": "Tegra", + "Production": "End-of-life", + "Launch Price": "899 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "854 MHz", + "Boost Clock": "1377 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "8", + "Tensor Cores": "64", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.03 GPixel/s", + "Texture Rate": "44.06 GTexel/s", + "FP16 (half) performance": "2.820 TFLOPS (2:1)", + "FP32 (float) performance": "1,410 GFLOPS", + "FP64 (double) performance": "705.0 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "Length": "100 mm\n\t\t\t\t\t3.9 inches", + "Width": "87 mm\n\t\t\t\t\t3.4 inches", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "CUDA": "7.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p102-100.c3100", + "web_page_access_date": "2022/08/22/, 00:35:45", + "Product Name": "NVIDIA P102-100", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3200", + "TMUs": "200", + "ROPs": "80", + "Memory Size": "5 GB", + "Memory Type": "GDDR5X", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-100-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 12th, 2018", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1582 MHz", + "Boost Clock": "1683 MHz", + "Memory Clock": "1376 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "320 bit", + "Bandwidth": "440.3 GB/s" + }, + "Render Config": { + "Shading Units": "3200", + "TMUs": "200", + "ROPs": "80", + "SM Count": "25", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2.5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "134.6 GPixel/s", + "Texture Rate": "336.6 GTexel/s", + "FP16 (half) performance": "168.3 GFLOPS (1:64)", + "FP32 (float) performance": "10.77 TFLOPS", + "FP64 (double) performance": "336.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG611 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p102-101.c3284", + "web_page_access_date": "2022/08/22/, 00:35:51", + "Product Name": "NVIDIA P102-101", + "General Specs": { + "Graphics Processor": "GP102", + "Cores": "3200", + "TMUs": "200", + "ROPs": "80", + "Memory Size": "10 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GP102", + "GPU Variant": "GP102-101-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "11,800 million", + "Die Size": "471 mm²" + }, + "Graphics Card": { + "Release Date": "2018", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1557 MHz", + "Boost Clock": "1670 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "320.3 GB/s" + }, + "Render Config": { + "Shading Units": "3200", + "TMUs": "200", + "ROPs": "80", + "SM Count": "25", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2.5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.6 GPixel/s", + "Texture Rate": "334.0 GTexel/s", + "FP16 (half) performance": "167.0 GFLOPS (1:64)", + "FP32 (float) performance": "10.69 TFLOPS", + "FP64 (double) performance": "334.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG611 SKU 101" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p104-101.c3064", + "web_page_access_date": "2022/08/22/, 00:35:57", + "Product Name": "NVIDIA P104-101", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "GP104-101-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2018", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1506 MHz", + "Boost Clock": "1683 MHz", + "Memory Clock": "2002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "256.3 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "107.7 GPixel/s", + "Texture Rate": "269.3 GTexel/s", + "FP16 (half) performance": "134.6 GFLOPS (1:64)", + "FP32 (float) performance": "8.617 TFLOPS", + "FP64 (double) performance": "269.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "PG413 SKU 101" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-gv100.c3066", + "web_page_access_date": "2022/08/22/, 00:36:02", + "Product Name": "NVIDIA Quadro GV100", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "GPU Variant": "GV100-875-A1", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Quadro\n(Vx000)", + "Production": "End-of-life", + "Launch Price": "8,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1132 MHz", + "Boost Clock": "1627 MHz", + "Memory Clock": "848 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1696 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "868.4 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "208.3 GPixel/s", + "Texture Rate": "520.6 GTexel/s", + "FP16 (half) performance": "33.32 TFLOPS (2:1)", + "FP32 (float) performance": "16.66 TFLOPS", + "FP64 (double) performance": "8.330 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "8-pin EPS", + "Board Number": "PG500 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p3200-max-q.c3315", + "web_page_access_date": "2022/08/22/, 00:36:08", + "Product Name": "NVIDIA Quadro P3200 Max-Q", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1139 MHz", + "Boost Clock": "1404 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "168.3 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "SM Count": "14", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "89.86 GPixel/s", + "Texture Rate": "157.2 GTexel/s", + "FP16 (half) performance": "78.62 GFLOPS (1:64)", + "FP32 (float) performance": "5.032 TFLOPS", + "FP64 (double) performance": "157.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p3200-mobile.c3147", + "web_page_access_date": "2022/08/22/, 00:36:14", + "Product Name": "NVIDIA Quadro P3200 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1792", + "TMUs": "112", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1328 MHz", + "Boost Clock": "1543 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "168.3 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "64", + "SM Count": "14", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.75 GPixel/s", + "Texture Rate": "172.8 GTexel/s", + "FP16 (half) performance": "86.41 GFLOPS (1:64)", + "FP32 (float) performance": "5.530 TFLOPS", + "FP64 (double) performance": "172.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p4200-mobile.c3199", + "web_page_access_date": "2022/08/22/, 00:36:20", + "Product Name": "NVIDIA Quadro P4200 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1227 MHz", + "Boost Clock": "1647 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "18", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "105.4 GPixel/s", + "Texture Rate": "237.2 GTexel/s", + "FP16 (half) performance": "118.6 GFLOPS (1:64)", + "FP32 (float) performance": "7.589 TFLOPS", + "FP64 (double) performance": "237.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p500-mobile.c3261", + "web_page_access_date": "2022/08/22/, 00:36:26", + "Product Name": "NVIDIA Quadro P500 Mobile", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2018", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1455 MHz", + "Boost Clock": "1518 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.29 GPixel/s", + "Texture Rate": "24.29 GTexel/s", + "FP16 (half) performance": "12.14 GFLOPS (1:64)", + "FP32 (float) performance": "777.2 GFLOPS", + "FP64 (double) performance": "24.29 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "18 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p5200-max-q.c3347", + "web_page_access_date": "2022/08/22/, 00:36:32", + "Product Name": "NVIDIA Quadro P5200 Max-Q", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1316 MHz", + "Boost Clock": "1569 MHz", + "Memory Clock": "1804 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7.2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "230.9 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "100.4 GPixel/s", + "Texture Rate": "251.0 GTexel/s", + "FP16 (half) performance": "125.5 GFLOPS (1:64)", + "FP32 (float) performance": "8.033 TFLOPS", + "FP64 (double) performance": "251.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p5200-mobile.c3020", + "web_page_access_date": "2022/08/22/, 00:36:38", + "Product Name": "NVIDIA Quadro P5200 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1557 MHz", + "Boost Clock": "1747 MHz", + "Memory Clock": "1804 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7.2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "230.9 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "20", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "111.8 GPixel/s", + "Texture Rate": "279.5 GTexel/s", + "FP16 (half) performance": "139.8 GFLOPS (1:64)", + "FP32 (float) performance": "8.945 TFLOPS", + "FP64 (double) performance": "279.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p620.c3085", + "web_page_access_date": "2022/08/22/, 00:36:44", + "Product Name": "NVIDIA Quadro P620", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2018", + "Generation": "Quadro\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1266 MHz", + "Boost Clock": "1354 MHz", + "Memory Clock": "1252 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.13 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.66 GPixel/s", + "Texture Rate": "43.33 GTexel/s", + "FP16 (half) performance": "21.66 GFLOPS (1:64)", + "FP32 (float) performance": "1,386 GFLOPS", + "FP64 (double) performance": "43.33 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "40 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p620-mobile.c3456", + "web_page_access_date": "2022/08/22/, 00:36:49", + "Product Name": "NVIDIA Quadro P620 Mobile", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2018", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1177 MHz", + "Boost Clock": "1443 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.09 GPixel/s", + "Texture Rate": "46.18 GTexel/s", + "FP16 (half) performance": "23.09 GFLOPS (1:64)", + "FP32 (float) performance": "1,478 GFLOPS", + "FP64 (double) performance": "46.18 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "40 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-4000.c3336", + "web_page_access_date": "2022/08/22/, 00:36:55", + "Product Name": "NVIDIA Quadro RTX 4000", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-850-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "899 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1005 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t13 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "416.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.88 GPixel/s", + "Texture Rate": "222.5 GTexel/s", + "FP16 (half) performance": "14.24 TFLOPS (2:1)", + "FP32 (float) performance": "7.119 TFLOPS", + "FP64 (double) performance": "222.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "3x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-5000.c3308", + "web_page_access_date": "2022/08/22/, 00:37:01", + "Product Name": "NVIDIA Quadro RTX 5000", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "2,299 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1620 MHz", + "Boost Clock": "1815 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "116.2 GPixel/s", + "Texture Rate": "348.5 GTexel/s", + "FP16 (half) performance": "22.30 TFLOPS (2:1)", + "FP32 (float) performance": "11.15 TFLOPS", + "FP64 (double) performance": "348.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-6000.c3307", + "web_page_access_date": "2022/08/22/, 00:37:07", + "Product Name": "NVIDIA Quadro RTX 6000", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "6,299 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1440 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "169.9 GPixel/s", + "Texture Rate": "509.8 GTexel/s", + "FP16 (half) performance": "32.62 TFLOPS (2:1)", + "FP32 (float) performance": "16.31 TFLOPS", + "FP64 (double) performance": "509.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "4x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 510" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-6000-passive.c3469", + "web_page_access_date": "2022/08/22/, 00:37:13", + "Product Name": "NVIDIA Quadro RTX 6000 Passive", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "6,299 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1305 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "149.8 GPixel/s", + "Texture Rate": "449.3 GTexel/s", + "FP16 (half) performance": "28.75 TFLOPS (2:1)", + "FP32 (float) performance": "14.38 TFLOPS", + "FP64 (double) performance": "449.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 510" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-8000.c3306", + "web_page_access_date": "2022/08/22/, 00:37:19", + "Product Name": "NVIDIA Quadro RTX 8000", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "9,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "169.9 GPixel/s", + "Texture Rate": "509.8 GTexel/s", + "FP16 (half) performance": "32.62 TFLOPS (2:1)", + "FP32 (float) performance": "16.31 TFLOPS", + "FP64 (double) performance": "509.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "4x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-8000-passive.c3470", + "web_page_access_date": "2022/08/22/, 00:37:25", + "Product Name": "NVIDIA Quadro RTX 8000 Passive", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2018", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Launch Price": "9,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1230 MHz", + "Boost Clock": "1620 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "155.5 GPixel/s", + "Texture Rate": "466.6 GTexel/s", + "FP16 (half) performance": "29.86 TFLOPS (2:1)", + "FP32 (float) performance": "14.93 TFLOPS", + "FP64 (double) performance": "466.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/titan-rtx.c3311", + "web_page_access_date": "2022/08/22/, 00:37:31", + "Product Name": "NVIDIA TITAN RTX", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-400-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 18th, 2018", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "2,499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1350 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "169.9 GPixel/s", + "Texture Rate": "509.8 GTexel/s", + "FP16 (half) performance": "32.62 TFLOPS (2:1)", + "FP32 (float) performance": "16.31 TFLOPS", + "FP64 (double) performance": "509.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "280 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "2x 8-pin", + "Board Number": "PG150 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/titan-v-ceo-edition.c3277", + "web_page_access_date": "2022/08/22/, 00:37:36", + "Product Name": "NVIDIA TITAN V CEO Edition", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 21st, 2018", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "848 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1696 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "868.4 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "186.2 GPixel/s", + "Texture Rate": "465.6 GTexel/s", + "FP16 (half) performance": "29.80 TFLOPS (2:1)", + "FP32 (float) performance": "14.90 TFLOPS", + "FP64 (double) performance": "7.450 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG500 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-t4.c3316", + "web_page_access_date": "2022/08/22/, 00:37:42", + "Product Name": "NVIDIA Tesla T4", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-895-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2018", + "Generation": "Tesla\n(Txx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "585 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "101.8 GPixel/s", + "Texture Rate": "254.4 GTexel/s", + "FP16 (half) performance": "65.13 TFLOPS (8:1)", + "FP32 (float) performance": "8.141 TFLOPS", + "FP64 (double) performance": "254.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "70 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG183 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-dgxs-16-gb.c3763", + "web_page_access_date": "2022/08/22/, 00:37:48", + "Product Name": "NVIDIA Tesla V100 DGXS 16 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1327 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-dgxs-32-gb.c3186", + "web_page_access_date": "2022/08/22/, 18:59:55", + "Product Name": "NVIDIA Tesla V100 DGXS 32 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1297 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-fhhl.c3248", + "web_page_access_date": "2022/08/22/, 19:00:00", + "Product Name": "NVIDIA Tesla V100 FHHL", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "937 MHz", + "Boost Clock": "1290 MHz", + "Memory Clock": "810 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1620 Mbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "829.4 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.1 GPixel/s", + "Texture Rate": "412.8 GTexel/s", + "FP16 (half) performance": "26.42 TFLOPS (2:1)", + "FP32 (float) performance": "13.21 TFLOPS", + "FP64 (double) performance": "6.605 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-pcie-32-gb.c3184", + "web_page_access_date": "2022/08/22/, 19:00:04", + "Product Name": "NVIDIA Tesla V100 PCIe 32 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1230 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "176.6 GPixel/s", + "Texture Rate": "441.6 GTexel/s", + "FP16 (half) performance": "28.26 TFLOPS (2:1)", + "FP32 (float) performance": "14.13 TFLOPS", + "FP64 (double) performance": "7.066 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG500 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-sxm2-32-gb.c3185", + "web_page_access_date": "2022/08/22/, 19:00:08", + "Product Name": "NVIDIA Tesla V100 SXM2 32 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1290 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-sxm3-32-gb.c3472", + "web_page_access_date": "2022/08/22/, 19:00:14", + "Product Name": "NVIDIA Tesla V100 SXM3 32 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2018", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1290 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "876 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1752 Mbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "897.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1050-mobile-3-gb.c3408", + "web_page_access_date": "2022/08/22/, 19:02:31", + "Product Name": "NVIDIA GeForce GTX 1050 Mobile 3 GB", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "N17P-G0-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2019", + "Generation": "GeForce 10 Mobile", + "Predecessor": "GeForce 900M", + "Successor": "GeForce 20 Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "15 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1366 MHz", + "Boost Clock": "1442 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "96 bit", + "Bandwidth": "84.10 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.61 GPixel/s", + "Texture Rate": "69.22 GTexel/s", + "FP16 (half) performance": "34.61 GFLOPS (1:64)", + "FP32 (float) performance": "2.215 TFLOPS", + "FP64 (double) performance": "69.22 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650.c3366", + "web_page_access_date": "2022/08/22/, 19:02:38", + "Product Name": "NVIDIA GeForce GTX 1650", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "TU117-300-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 23rd, 2019", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1485 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "2001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "128.1 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "53.28 GPixel/s", + "Texture Rate": "93.24 GTexel/s", + "FP16 (half) performance": "5.967 TFLOPS (2:1)", + "FP32 (float) performance": "2.984 TFLOPS", + "FP64 (double) performance": "93.24 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG174 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (84)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-max-q.c3383", + "web_page_access_date": "2022/08/22/, 19:02:42", + "Product Name": "NVIDIA GeForce GTX 1650 Max-Q", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2019", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1245 MHz", + "Memory Clock": "1751 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.84 GPixel/s", + "Texture Rate": "79.68 GTexel/s", + "FP16 (half) performance": "5.100 TFLOPS (2:1)", + "FP32 (float) performance": "2.550 TFLOPS", + "FP64 (double) performance": "79.68 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4905 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-mobile.c3367", + "web_page_access_date": "2022/08/22/, 19:02:46", + "Product Name": "NVIDIA GeForce GTX 1650 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2019", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "2001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "128.1 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.92 GPixel/s", + "Texture Rate": "99.84 GTexel/s", + "FP16 (half) performance": "6.390 TFLOPS (2:1)", + "FP32 (float) performance": "3.195 TFLOPS", + "FP64 (double) performance": "99.84 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4905 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-super.c3411", + "web_page_access_date": "2022/08/22/, 19:02:50", + "Product Name": "NVIDIA GeForce GTX 1650 SUPER", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-250-KA-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2019", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "27 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1530 MHz", + "Boost Clock": "1725 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "SM Count": "20", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "55.20 GPixel/s", + "Texture Rate": "138.0 GTexel/s", + "FP16 (half) performance": "8.832 TFLOPS (2:1)", + "FP32 (float) performance": "4.416 TFLOPS", + "FP64 (double) performance": "138.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "PG166 SKU 24" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (56)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1660.c3365", + "web_page_access_date": "2022/08/22/, 00:39:56", + "Product Name": "NVIDIA GeForce GTX 1660", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1408", + "TMUs": "88", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-300-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 14th, 2019", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "219 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "40 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1530 MHz", + "Boost Clock": "1785 MHz", + "Memory Clock": "2001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "192.1 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "48", + "SM Count": "22", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "85.68 GPixel/s", + "Texture Rate": "157.1 GTexel/s", + "FP16 (half) performance": "10.05 TFLOPS (2:1)", + "FP32 (float) performance": "5.027 TFLOPS", + "FP64 (double) performance": "157.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG165 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (88)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1660-super.c3458", + "web_page_access_date": "2022/08/22/, 00:40:02", + "Product Name": "NVIDIA GeForce GTX 1660 SUPER", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1408", + "TMUs": "88", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-300-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 29th, 2019", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "42 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1530 MHz", + "Boost Clock": "1785 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "48", + "SM Count": "22", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "85.68 GPixel/s", + "Texture Rate": "157.1 GTexel/s", + "FP16 (half) performance": "10.05 TFLOPS (2:1)", + "FP32 (float) performance": "5.027 TFLOPS", + "FP64 (double) performance": "157.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "125 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG161 SKU 26" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (98)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1660-ti.c3364", + "web_page_access_date": "2022/08/22/, 00:40:07", + "Product Name": "NVIDIA GeForce GTX 1660 Ti", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1536", + "TMUs": "96", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-400-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 22nd, 2019", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "279 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "59 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "48", + "SM Count": "24", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "84.96 GPixel/s", + "Texture Rate": "169.9 GTexel/s", + "FP16 (half) performance": "10.87 TFLOPS (2:1)", + "FP32 (float) performance": "5.437 TFLOPS", + "FP64 (double) performance": "169.9 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin", + "Board Number": "PG160 SKU 21 PG161 SKU 21" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (101)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1660-ti-max-q.c3382", + "web_page_access_date": "2022/08/22/, 00:40:13", + "Product Name": "NVIDIA GeForce GTX 1660 Ti Max-Q", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1536", + "TMUs": "96", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2019", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1140 MHz", + "Boost Clock": "1335 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "48", + "SM Count": "24", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.08 GPixel/s", + "Texture Rate": "128.2 GTexel/s", + "FP16 (half) performance": "8.202 TFLOPS (2:1)", + "FP32 (float) performance": "4.101 TFLOPS", + "FP64 (double) performance": "128.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1660-ti-mobile.c3369", + "web_page_access_date": "2022/08/22/, 00:41:25", + "Product Name": "NVIDIA GeForce GTX 1660 Ti Mobile", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1536", + "TMUs": "96", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2019", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1455 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "48", + "SM Count": "24", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "76.32 GPixel/s", + "Texture Rate": "152.6 GTexel/s", + "FP16 (half) performance": "9.769 TFLOPS (2:1)", + "FP32 (float) performance": "4.884 TFLOPS", + "FP64 (double) performance": "152.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx150-gp107.c3443", + "web_page_access_date": "2022/08/22/, 00:41:31", + "Product Name": "NVIDIA GeForce MX150 GP107", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 23rd, 2019", + "Generation": "GeForce MX\n(1xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1469 MHz", + "Boost Clock": "1532 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.51 GPixel/s", + "Texture Rate": "36.77 GTexel/s", + "FP16 (half) performance": "18.38 GFLOPS (1:64)", + "FP32 (float) performance": "1,177 GFLOPS", + "FP64 (double) performance": "36.77 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx230.c3350", + "web_page_access_date": "2022/08/22/, 00:41:36", + "Product Name": "NVIDIA GeForce MX230", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "N17S-G0-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2019", + "Generation": "GeForce MX\n(2xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1519 MHz", + "Boost Clock": "1531 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.50 GPixel/s", + "Texture Rate": "24.50 GTexel/s", + "FP16 (half) performance": "12.25 GFLOPS (1:64)", + "FP32 (float) performance": "783.9 GFLOPS", + "FP64 (double) performance": "24.50 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx250.c3354", + "web_page_access_date": "2022/08/22/, 00:41:42", + "Product Name": "NVIDIA GeForce MX250", + "General Specs": { + "Graphics Processor": "GP108B", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108B", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "GeForce MX\n(2xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "937 MHz", + "Boost Clock": "1038 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.61 GPixel/s", + "Texture Rate": "24.91 GTexel/s", + "FP16 (half) performance": "12.46 GFLOPS (1:64)", + "FP32 (float) performance": "797.2 GFLOPS", + "FP64 (double) performance": "24.91 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx250.c3353", + "web_page_access_date": "2022/08/22/, 00:41:48", + "Product Name": "NVIDIA GeForce MX250", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "N17S-G2-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 21st, 2019", + "Generation": "GeForce MX\n(2xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1519 MHz", + "Boost Clock": "1582 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.31 GPixel/s", + "Texture Rate": "37.97 GTexel/s", + "FP16 (half) performance": "18.98 GFLOPS (1:64)", + "FP32 (float) performance": "1,215 GFLOPS", + "FP64 (double) performance": "37.97 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060.c3310", + "web_page_access_date": "2022/08/22/, 00:41:54", + "Product Name": "NVIDIA GeForce RTX 2060", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-200A-KA-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 7th, 2019", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "349 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "86 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1680 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "80.64 GPixel/s", + "Texture Rate": "201.6 GTexel/s", + "FP16 (half) performance": "12.90 TFLOPS (2:1)", + "FP32 (float) performance": "6.451 TFLOPS", + "FP64 (double) performance": "201.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.02x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin", + "Board Number": "PG160 SKU 42" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (131)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-max-q-refresh.c3628", + "web_page_access_date": "2022/08/22/, 00:42:00", + "Product Name": "NVIDIA GeForce RTX 2060 Max-Q Refresh", + "General Specs": { + "Graphics Processor": "TU106B", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106B", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "960 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1353 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10.8 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "259.8 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "144.0 GTexel/s", + "FP16 (half) performance": "9.216 TFLOPS (2:1)", + "FP32 (float) performance": "4.608 TFLOPS", + "FP64 (double) performance": "144.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-mobile.c3348", + "web_page_access_date": "2022/08/22/, 00:42:05", + "Product Name": "NVIDIA GeForce RTX 2060 Mobile", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N18E-G1-KD-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "960 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "144.0 GTexel/s", + "FP16 (half) performance": "9.216 TFLOPS (2:1)", + "FP32 (float) performance": "4.608 TFLOPS", + "FP64 (double) performance": "144.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-mobile-refresh.c3567", + "web_page_access_date": "2022/08/22/, 00:42:11", + "Product Name": "NVIDIA GeForce RTX 2060 Mobile Refresh", + "General Specs": { + "Graphics Processor": "TU106B", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106B", + "GPU Variant": "N18E-G1-KD-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1005 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "74.88 GPixel/s", + "Texture Rate": "187.2 GTexel/s", + "FP16 (half) performance": "11.98 TFLOPS (2:1)", + "FP32 (float) performance": "5.990 TFLOPS", + "FP64 (double) performance": "187.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-super.c3441", + "web_page_access_date": "2022/08/22/, 00:42:17", + "Product Name": "NVIDIA GeForce RTX 2060 SUPER", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2176", + "TMUs": "136", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-410-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 9th, 2019", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "40 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1470 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2176", + "TMUs": "136", + "ROPs": "64", + "SM Count": "34", + "Tensor Cores": "272", + "RT Cores": "34", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "105.6 GPixel/s", + "Texture Rate": "224.4 GTexel/s", + "FP16 (half) performance": "14.36 TFLOPS (2:1)", + "FP32 (float) performance": "7.181 TFLOPS", + "FP64 (double) performance": "224.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.02x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin", + "Board Number": "PG160 SKU 65" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (115)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-max-q.c3392", + "web_page_access_date": "2022/08/22/, 00:42:23", + "Product Name": "NVIDIA GeForce RTX 2070 Max-Q", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N18E-G2-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "885 MHz", + "Boost Clock": "1185 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.84 GPixel/s", + "Texture Rate": "170.6 GTexel/s", + "FP16 (half) performance": "10.92 TFLOPS (2:1)", + "FP32 (float) performance": "5.460 TFLOPS", + "FP64 (double) performance": "170.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "90 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-mobile.c3349", + "web_page_access_date": "2022/08/22/, 00:42:29", + "Product Name": "NVIDIA GeForce RTX 2070 Mobile", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N18E-G2-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1215 MHz", + "Boost Clock": "1440 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "92.16 GPixel/s", + "Texture Rate": "207.4 GTexel/s", + "FP16 (half) performance": "13.27 TFLOPS (2:1)", + "FP32 (float) performance": "6.636 TFLOPS", + "FP64 (double) performance": "207.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-super.c3440", + "web_page_access_date": "2022/08/22/, 00:42:35", + "Product Name": "NVIDIA GeForce RTX 2070 SUPER", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-410-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 9th, 2019", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "78 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1605 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "113.3 GPixel/s", + "Texture Rate": "283.2 GTexel/s", + "FP16 (half) performance": "18.12 TFLOPS (2:1)", + "FP32 (float) performance": "9.062 TFLOPS", + "FP64 (double) performance": "283.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "215 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG180 SKU 12" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (120)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-max-q.c3363", + "web_page_access_date": "2022/08/22/, 00:42:41", + "Product Name": "NVIDIA GeForce RTX 2080 Max-Q", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2944", + "TMUs": "184", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N18E-G3-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1095 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "2944", + "TMUs": "184", + "ROPs": "64", + "SM Count": "46", + "Tensor Cores": "368", + "RT Cores": "46", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "70.08 GPixel/s", + "Texture Rate": "201.5 GTexel/s", + "FP16 (half) performance": "12.89 TFLOPS (2:1)", + "FP32 (float) performance": "6.447 TFLOPS", + "FP64 (double) performance": "201.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-mobile.c3312", + "web_page_access_date": "2022/08/22/, 00:42:47", + "Product Name": "NVIDIA GeForce RTX 2080 Mobile", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2944", + "TMUs": "184", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N18E-G3-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2019", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1380 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2944", + "TMUs": "184", + "ROPs": "64", + "SM Count": "46", + "Tensor Cores": "368", + "RT Cores": "46", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "101.8 GPixel/s", + "Texture Rate": "292.6 GTexel/s", + "FP16 (half) performance": "18.72 TFLOPS (2:1)", + "FP32 (float) performance": "9.362 TFLOPS", + "FP64 (double) performance": "292.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "150 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-super.c3439", + "web_page_access_date": "2022/08/22/, 00:42:52", + "Product Name": "NVIDIA GeForce RTX 2080 SUPER", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-450-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2019", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "699 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "51 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1650 MHz", + "Boost Clock": "1815 MHz", + "Memory Clock": "1937 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t15.5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "495.9 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "116.2 GPixel/s", + "Texture Rate": "348.5 GTexel/s", + "FP16 (half) performance": "22.30 TFLOPS (2:1)", + "FP32 (float) performance": "11.15 TFLOPS", + "FP64 (double) performance": "348.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.03x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG181" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (97)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-nano-gpu.c3643", + "web_page_access_date": "2022/08/22/, 00:42:58", + "Product Name": "NVIDIA Jetson Nano GPU", + "General Specs": { + "Graphics Processor": "GM20B", + "Cores": "128", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GM20B", + "GPU Variant": "TM660M-A2", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "20 nm", + "Transistors": "2,000 million", + "Die Size": "118 mm²" + }, + "Integrated Graphics": { + "Release Date": "Mar 2019", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "640 MHz", + "Boost Clock": "921 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "16", + "ROPs": "16", + "SMM Count": "1", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.74 GPixel/s", + "Texture Rate": "14.74 GTexel/s", + "FP16 (half) performance": "471.6 GFLOPS (2:1)", + "FP32 (float) performance": "235.8 GFLOPS", + "FP64 (double) performance": "7.368 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "Length": "70 mm\n\t\t\t\t\t2.8 inches", + "Width": "45 mm\n\t\t\t\t\t1.8 inches", + "TDP": "10 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "CUDA": "5.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/p106m.c3773", + "web_page_access_date": "2022/08/22/, 00:43:04", + "Product Name": "NVIDIA P106M", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1152", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "GPU Variant": "GP106-505-KC-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 23rd, 2019", + "Generation": "Mining GPUs", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1291 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "32", + "SM Count": "9", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "41.31 GPixel/s", + "Texture Rate": "92.95 GTexel/s", + "FP16 (half) performance": "46.48 GFLOPS (1:64)", + "FP32 (float) performance": "2.974 TFLOPS", + "FP64 (double) performance": "92.95 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p2000-mobile.c3772", + "web_page_access_date": "2022/08/22/, 00:43:10", + "Product Name": "NVIDIA Quadro P2000 Mobile", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1152", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "3.75 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 15th, 2019", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1291 MHz", + "Boost Clock": "1291 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3.75 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.13 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "32", + "SM Count": "9", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "41.31 GPixel/s", + "Texture Rate": "92.95 GTexel/s", + "FP16 (half) performance": "46.48 GFLOPS (1:64)", + "FP32 (float) performance": "2.974 TFLOPS", + "FP64 (double) performance": "92.95 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p2200.c3442", + "web_page_access_date": "2022/08/22/, 00:43:15", + "Product Name": "NVIDIA Quadro P2200", + "General Specs": { + "Graphics Processor": "GP106", + "Cores": "1280", + "TMUs": "80", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5X", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "GP106", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "4,400 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 10th, 2019", + "Generation": "Quadro\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1493 MHz", + "Memory Clock": "1251 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5X", + "Memory Bus": "160 bit", + "Bandwidth": "200.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "40", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.72 GPixel/s", + "Texture Rate": "119.4 GTexel/s", + "FP16 (half) performance": "59.72 GFLOPS (1:64)", + "FP32 (float) performance": "3.822 TFLOPS", + "FP64 (double) performance": "119.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "201 mm\n\t\t\t\t\t7.9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG410 SKU 502" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p520-mobile.c3424", + "web_page_access_date": "2022/08/22/, 00:43:21", + "Product Name": "NVIDIA Quadro P520 Mobile", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 23rd, 2019", + "Generation": "Quadro Mobile\n(Px200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1303 MHz", + "Boost Clock": "1493 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.89 GPixel/s", + "Texture Rate": "35.83 GTexel/s", + "FP16 (half) performance": "17.92 GFLOPS (1:64)", + "FP32 (float) performance": "1,147 GFLOPS", + "FP64 (double) performance": "35.83 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "18 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-3000-max-q.c3429", + "web_page_access_date": "2022/08/22/, 00:43:27", + "Product Name": "NVIDIA Quadro RTX 3000 Max-Q", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "600 MHz", + "Boost Clock": "1215 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "77.76 GPixel/s", + "Texture Rate": "145.8 GTexel/s", + "FP16 (half) performance": "9.331 TFLOPS (2:1)", + "FP32 (float) performance": "4.666 TFLOPS", + "FP64 (double) performance": "145.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-3000-mobile.c3428", + "web_page_access_date": "2022/08/22/, 00:43:33", + "Product Name": "NVIDIA Quadro RTX 3000 Mobile", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N19E-Q1-KA-K1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "945 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "88.32 GPixel/s", + "Texture Rate": "165.6 GTexel/s", + "FP16 (half) performance": "10.60 TFLOPS (2:1)", + "FP32 (float) performance": "5.299 TFLOPS", + "FP64 (double) performance": "165.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-3000-mobile-refresh.c3697", + "web_page_access_date": "2022/08/22/, 00:43:38", + "Product Name": "NVIDIA Quadro RTX 3000 Mobile Refresh", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N19E-Q1-KD-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "945 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "64", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "88.32 GPixel/s", + "Texture Rate": "165.6 GTexel/s", + "FP16 (half) performance": "10.60 TFLOPS (2:1)", + "FP32 (float) performance": "5.299 TFLOPS", + "FP64 (double) performance": "165.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-4000-max-q.c3427", + "web_page_access_date": "2022/08/22/, 00:43:44", + "Product Name": "NVIDIA Quadro RTX 4000 Max-Q", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t13 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "416.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "88.32 GPixel/s", + "Texture Rate": "220.8 GTexel/s", + "FP16 (half) performance": "14.13 TFLOPS (2:1)", + "FP32 (float) performance": "7.066 TFLOPS", + "FP64 (double) performance": "220.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-4000-mobile.c3430", + "web_page_access_date": "2022/08/22/, 00:43:50", + "Product Name": "NVIDIA Quadro RTX 4000 Mobile", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N19E-Q3-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1110 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.84 GPixel/s", + "Texture Rate": "249.6 GTexel/s", + "FP16 (half) performance": "15.97 TFLOPS (2:1)", + "FP32 (float) performance": "7.987 TFLOPS", + "FP64 (double) performance": "249.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "110 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-5000-max-q.c3432", + "web_page_access_date": "2022/08/22/, 00:43:56", + "Product Name": "NVIDIA Quadro RTX 5000 Max-Q", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "600 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "86.40 GPixel/s", + "Texture Rate": "259.2 GTexel/s", + "FP16 (half) performance": "16.59 TFLOPS (2:1)", + "FP32 (float) performance": "8.294 TFLOPS", + "FP64 (double) performance": "259.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-5000-mobile.c3431", + "web_page_access_date": "2022/08/22/, 00:44:02", + "Product Name": "NVIDIA Quadro RTX 5000 Mobile", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N19E-Q5-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "113.3 GPixel/s", + "Texture Rate": "339.8 GTexel/s", + "FP16 (half) performance": "21.75 TFLOPS (2:1)", + "FP32 (float) performance": "10.87 TFLOPS", + "FP64 (double) performance": "339.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "110 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t1000-max-q.c3807", + "web_page_access_date": "2022/08/22/, 00:44:08", + "Product Name": "NVIDIA Quadro T1000 Max-Q", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "765 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "43.20 GPixel/s", + "Texture Rate": "75.60 GTexel/s", + "FP16 (half) performance": "4.838 TFLOPS (2:1)", + "FP32 (float) performance": "2.419 TFLOPS", + "FP64 (double) performance": "75.60 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t1000-mobile.c3435", + "web_page_access_date": "2022/08/22/, 00:44:14", + "Product Name": "NVIDIA Quadro T1000 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "2001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "128.1 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.56 GPixel/s", + "Texture Rate": "81.48 GTexel/s", + "FP16 (half) performance": "5.215 TFLOPS (2:1)", + "FP32 (float) performance": "2.607 TFLOPS", + "FP64 (double) performance": "81.48 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t2000-max-q.c3436", + "web_page_access_date": "2022/08/22/, 00:44:20", + "Product Name": "NVIDIA Quadro T2000 Max-Q", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1200 MHz", + "Boost Clock": "1620 MHz", + "Memory Clock": "1751 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "112.1 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "51.84 GPixel/s", + "Texture Rate": "103.7 GTexel/s", + "FP16 (half) performance": "6.636 TFLOPS (2:1)", + "FP32 (float) performance": "3.318 TFLOPS", + "FP64 (double) performance": "103.7 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "40 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t2000-mobile.c3434", + "web_page_access_date": "2022/08/22/, 00:44:26", + "Product Name": "NVIDIA Quadro T2000 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 27th, 2019", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1575 MHz", + "Boost Clock": "1785 MHz", + "Memory Clock": "2001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "128.1 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.12 GPixel/s", + "Texture Rate": "114.2 GTexel/s", + "FP16 (half) performance": "7.311 TFLOPS (2:1)", + "FP32 (float) performance": "3.656 TFLOPS", + "FP64 (double) performance": "114.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/switch-gpu-16nm.c3754", + "web_page_access_date": "2022/08/22/, 00:44:32", + "Product Name": "NVIDIA Switch GPU 16nm", + "General Specs": { + "Graphics Processor": "GM20B", + "Cores": "256", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM20B", + "GPU Variant": "ODNX10-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "2,000 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 16th, 2019", + "Generation": "Console GPU\n(Nintendo)", + "Production": "End-of-life", + "Launch Price": "299 USD" + }, + "Clock Speeds": { + "Base Clock": "384 MHz", + "Boost Clock": "768 MHz", + "Memory Clock": "1600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR4", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "16", + "SMM Count": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "12.29 GPixel/s", + "Texture Rate": "12.29 GTexel/s", + "FP16 (half) performance": "786.4 GFLOPS (2:1)", + "FP32 (float) performance": "393.2 GFLOPS", + "FP64 (double) performance": "12.29 GFLOPS (1:32)" + }, + "Board Design": { + "Length": "239 mm\n\t\t\t\t\t9.4 inches", + "Width": "101 mm\n\t\t\t\t\t4 inches", + "Height": "28 mm\n\t\t\t\t\t1.1 inches", + "Weight": "0.4 kg (0.88 lbs)", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "HAC-001-01" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "CUDA": "5.3", + "Shader Model": "6.4" + }, + "Console Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-pg500-216.c3791", + "web_page_access_date": "2022/08/22/, 00:44:37", + "Product Name": "NVIDIA Tesla PG500-216", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2019", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1260 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1106 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.2 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,133 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "176.6 GPixel/s", + "Texture Rate": "441.6 GTexel/s", + "FP16 (half) performance": "28.26 TFLOPS (2:1)", + "FP32 (float) performance": "14.13 TFLOPS", + "FP64 (double) performance": "7.066 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-pg503-216.c3790", + "web_page_access_date": "2022/08/22/, 00:44:44", + "Product Name": "NVIDIA Tesla PG503-216", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2019", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1312 MHz", + "Boost Clock": "1530 MHz", + "Memory Clock": "1106 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.2 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,133 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "195.8 GPixel/s", + "Texture Rate": "489.6 GTexel/s", + "FP16 (half) performance": "31.33 TFLOPS (2:1)", + "FP32 (float) performance": "15.67 TFLOPS", + "FP64 (double) performance": "7.834 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100-sxm2-16-gb.c3471", + "web_page_access_date": "2022/08/22/, 00:44:50", + "Product Name": "NVIDIA Tesla V100 SXM2 16 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2019", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1245 MHz", + "Boost Clock": "1597 MHz", + "Memory Clock": "1106 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,133 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "204.4 GPixel/s", + "Texture Rate": "511.0 GTexel/s", + "FP16 (half) performance": "32.71 TFLOPS (2:1)", + "FP32 (float) performance": "16.35 TFLOPS", + "FP64 (double) performance": "8.177 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-v100s-pcie-32-gb.c3467", + "web_page_access_date": "2022/08/22/, 00:44:55", + "Product Name": "NVIDIA Tesla V100S PCIe 32 GB", + "General Specs": { + "Graphics Processor": "GV100", + "Cores": "5120", + "TMUs": "320", + "ROPs": "128", + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GV100", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "21,100 million", + "Die Size": "815 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 26th, 2019", + "Generation": "Tesla\n(Vxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1245 MHz", + "Boost Clock": "1597 MHz", + "Memory Clock": "1106 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.2 Gbps effective" + }, + "Memory": { + "Memory Size": "32 GB", + "Memory Type": "HBM2", + "Memory Bus": "4096 bit", + "Bandwidth": "1,133 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "320", + "ROPs": "128", + "SM Count": "80", + "Tensor Cores": "640", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "204.4 GPixel/s", + "Texture Rate": "511.0 GTexel/s", + "FP16 (half) performance": "32.71 TFLOPS (2:1)", + "FP32 (float) performance": "16.35 TFLOPS", + "FP64 (double) performance": "8.177 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG500" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.0", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a100-pcie.c3623", + "web_page_access_date": "2022/08/22/, 00:45:01", + "Product Name": "NVIDIA A100 PCIe", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "160", + "Memory Size": "40 GB", + "Memory Type": "HBM2e", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 22nd, 2020", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "765 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "40 GB", + "Memory Type": "HBM2e", + "Memory Bus": "5120 bit", + "Bandwidth": "1,555 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "160", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "40 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "225.6 GPixel/s", + "Texture Rate": "609.1 GTexel/s", + "FP16 (half) performance": "77.97 TFLOPS (4:1)", + "FP32 (float) performance": "19.49 TFLOPS", + "FP64 (double) performance": "9.746 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "P1001 SKU 200" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a100-sxm4-40-gb.c3506", + "web_page_access_date": "2022/08/22/, 00:45:08", + "Product Name": "NVIDIA A100 SXM4 40 GB", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "160", + "Memory Size": "40 GB", + "Memory Type": "HBM2e", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2020", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1095 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "40 GB", + "Memory Type": "HBM2e", + "Memory Bus": "5120 bit", + "Bandwidth": "1,555 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "160", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "40 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "225.6 GPixel/s", + "Texture Rate": "609.1 GTexel/s", + "FP16 (half) performance": "77.97 TFLOPS (4:1)", + "FP32 (float) performance": "19.49 TFLOPS", + "FP64 (double) performance": "9.746 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a100-sxm4-80-gb.c3746", + "web_page_access_date": "2022/08/22/, 00:45:14", + "Product Name": "NVIDIA A100 SXM4 80 GB", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "160", + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 16th, 2020", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1275 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1593 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Memory Bus": "5120 bit", + "Bandwidth": "2,039 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "160", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "40 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "225.6 GPixel/s", + "Texture Rate": "609.1 GTexel/s", + "FP16 (half) performance": "77.97 TFLOPS (4:1)", + "FP32 (float) performance": "19.49 TFLOPS", + "FP64 (double) performance": "9.746 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a40-pcie.c3700", + "web_page_access_date": "2022/08/22/, 00:45:20", + "Product Name": "NVIDIA A40 PCIe", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10752", + "TMUs": "336", + "ROPs": "112", + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 5th, 2020", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1305 MHz", + "Boost Clock": "1740 MHz", + "Memory Clock": "1812 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14.5 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "695.8 GB/s" + }, + "Render Config": { + "Shading Units": "10752", + "TMUs": "336", + "ROPs": "112", + "SM Count": "84", + "Tensor Cores": "336", + "RT Cores": "84", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "194.9 GPixel/s", + "Texture Rate": "584.6 GTexel/s", + "FP16 (half) performance": "37.42 TFLOPS (1:1)", + "FP32 (float) performance": "37.42 TFLOPS", + "FP64 (double) performance": "584.6 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "3x DisplayPort 1.4a", + "Power Connectors": "8-pin EPS" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-a100a.c3579", + "web_page_access_date": "2022/08/22/, 00:45:26", + "Product Name": "NVIDIA GRID A100A", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "192", + "Memory Size": "48 GB", + "Memory Type": "HBM2e", + "Bus Width": "6144 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2020", + "Generation": "GRID\n(Ax)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1005 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "HBM2e", + "Memory Bus": "6144 bit", + "Bandwidth": "1,866 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "192", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "48 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "193.0 GPixel/s", + "Texture Rate": "434.2 GTexel/s", + "FP16 (half) performance": "55.57 TFLOPS (4:1)", + "FP32 (float) performance": "13.89 TFLOPS", + "FP64 (double) performance": "6.947 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-a100b.c3578", + "web_page_access_date": "2022/08/22/, 00:45:32", + "Product Name": "NVIDIA GRID A100B", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "192", + "Memory Size": "48 GB", + "Memory Type": "HBM2e", + "Bus Width": "6144 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2020", + "Generation": "GRID\n(Ax)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1005 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "HBM2e", + "Memory Bus": "6144 bit", + "Bandwidth": "1,866 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "192", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "48 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "193.0 GPixel/s", + "Texture Rate": "434.2 GTexel/s", + "FP16 (half) performance": "55.57 TFLOPS (4:1)", + "FP32 (float) performance": "13.89 TFLOPS", + "FP64 (double) performance": "6.947 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "400 W", + "Suggested PSU": "800 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-rtx-t10-16.c3502", + "web_page_access_date": "2022/08/22/, 00:45:37", + "Product Name": "NVIDIA GRID RTX T10-16", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "GRID\n(Tx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1575 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12.6 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "604.8 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.9 GPixel/s", + "Texture Rate": "401.8 GTexel/s", + "FP16 (half) performance": "25.71 TFLOPS (2:1)", + "FP32 (float) performance": "12.86 TFLOPS", + "FP64 (double) performance": "401.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 215" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-rtx-t10-2.c3815", + "web_page_access_date": "2022/08/22/, 00:45:43", + "Product Name": "NVIDIA GRID RTX T10-2", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "GRID\n(Tx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.9 GPixel/s", + "Texture Rate": "401.8 GTexel/s", + "FP16 (half) performance": "25.71 TFLOPS (2:1)", + "FP32 (float) performance": "12.86 TFLOPS", + "FP64 (double) performance": "401.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 215" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-rtx-t10-4.c3500", + "web_page_access_date": "2022/08/22/, 00:45:49", + "Product Name": "NVIDIA GRID RTX T10-4", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "GRID\n(Tx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.9 GPixel/s", + "Texture Rate": "401.8 GTexel/s", + "FP16 (half) performance": "25.71 TFLOPS (2:1)", + "FP32 (float) performance": "12.86 TFLOPS", + "FP64 (double) performance": "401.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 215" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-rtx-t10-8.c3501", + "web_page_access_date": "2022/08/22/, 19:02:54", + "Product Name": "NVIDIA GRID RTX T10-8", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-875-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "GRID\n(Tx)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.9 GPixel/s", + "Texture Rate": "401.8 GTexel/s", + "FP16 (half) performance": "25.71 TFLOPS (2:1)", + "FP32 (float) performance": "12.86 TFLOPS", + "FP64 (double) performance": "401.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "260 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "PG150 SKU 220" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-gddr6.c3541", + "web_page_access_date": "2022/08/22/, 19:02:59", + "Product Name": "NVIDIA GeForce GTX 1650 GDDR6", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "TU117-300-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 1st, 2020", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "50.88 GPixel/s", + "Texture Rate": "89.04 GTexel/s", + "FP16 (half) performance": "5.699 TFLOPS (2:1)", + "FP32 (float) performance": "2.849 TFLOPS", + "FP64 (double) performance": "89.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG177 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (58)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-max-q.c3620", + "web_page_access_date": "2022/08/22/, 19:03:03", + "Product Name": "NVIDIA GeForce GTX 1650 Max-Q", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18P-G61-MP2", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 15th, 2020", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.00 GPixel/s", + "Texture Rate": "72.00 GTexel/s", + "FP16 (half) performance": "4.608 TFLOPS (2:1)", + "FP32 (float) performance": "2.304 TFLOPS", + "FP64 (double) performance": "72.00 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "30 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4904 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-mobile.c3633", + "web_page_access_date": "2022/08/22/, 19:03:07", + "Product Name": "NVIDIA GeForce GTX 1650 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18P-G61-MP2", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 15th, 2020", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1380 MHz", + "Boost Clock": "1515 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "48.48 GPixel/s", + "Texture Rate": "96.96 GTexel/s", + "FP16 (half) performance": "6.205 TFLOPS (2:1)", + "FP32 (float) performance": "3.103 TFLOPS", + "FP64 (double) performance": "96.96 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4904 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-tu106.c3585", + "web_page_access_date": "2022/08/22/, 19:03:12", + "Product Name": "NVIDIA GeForce GTX 1650 TU106", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-125-KAB-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2020", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "50.88 GPixel/s", + "Texture Rate": "89.04 GTexel/s", + "FP16 (half) performance": "5.699 TFLOPS (2:1)", + "FP32 (float) performance": "2.849 TFLOPS", + "FP64 (double) performance": "89.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "90 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-tu116.c3586", + "web_page_access_date": "2022/08/22/, 19:03:18", + "Product Name": "NVIDIA GeForce GTX 1650 TU116", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-150-KA-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 7th, 2020", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1590 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "50.88 GPixel/s", + "Texture Rate": "89.04 GTexel/s", + "FP16 (half) performance": "5.699 TFLOPS (2:1)", + "FP32 (float) performance": "2.849 TFLOPS", + "FP64 (double) performance": "89.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "80 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-ti-max-q.c3619", + "web_page_access_date": "2022/08/22/, 19:03:22", + "Product Name": "NVIDIA GeForce GTX 1650 Ti Max-Q", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18P-G62", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1035 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "38.40 GPixel/s", + "Texture Rate": "76.80 GTexel/s", + "FP16 (half) performance": "4.915 TFLOPS (2:1)", + "FP32 (float) performance": "2.458 TFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4904 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-ti-mobile.c3517", + "web_page_access_date": "2022/08/22/, 19:03:27", + "Product Name": "NVIDIA GeForce GTX 1650 Ti Mobile", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "N18P-G61", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 23rd, 2020", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1350 MHz", + "Boost Clock": "1485 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "47.52 GPixel/s", + "Texture Rate": "95.04 GTexel/s", + "FP16 (half) performance": "6.083 TFLOPS (2:1)", + "FP32 (float) performance": "3.041 TFLOPS", + "FP64 (double) performance": "95.04 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1650-ti-mobile.c3512", + "web_page_access_date": "2022/08/22/, 19:03:32", + "Product Name": "NVIDIA GeForce GTX 1650 Ti Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18P-G62", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 16 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1350 MHz", + "Boost Clock": "1485 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "47.52 GPixel/s", + "Texture Rate": "95.04 GTexel/s", + "FP16 (half) performance": "6.083 TFLOPS (2:1)", + "FP32 (float) performance": "3.041 TFLOPS", + "FP64 (double) performance": "95.04 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4904 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx330.c3493", + "web_page_access_date": "2022/08/22/, 19:03:37", + "Product Name": "NVIDIA GeForce MX330", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-655-A1\n\t\t\t\t\t\t\t\t\t\t\n(N17S-G3-A1)", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 10th, 2020", + "Generation": "GeForce MX\n(3xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1531 MHz", + "Boost Clock": "1594 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "56.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.50 GPixel/s", + "Texture Rate": "38.26 GTexel/s", + "FP16 (half) performance": "19.13 GFLOPS (1:64)", + "FP32 (float) performance": "1,224 GFLOPS", + "FP64 (double) performance": "38.26 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx350.c3582", + "web_page_access_date": "2022/08/22/, 19:03:41", + "Product Name": "NVIDIA GeForce MX350", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-670-A1\n\t\t\t\t\t\t\t\t\t\t\n(N17S-G5-A1)", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 10th, 2020", + "Generation": "GeForce MX\n(3xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "747 MHz", + "Boost Clock": "937 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "56.06 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "32", + "ROPs": "16", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.99 GPixel/s", + "Texture Rate": "29.98 GTexel/s", + "FP16 (half) performance": "18.74 GFLOPS (1:64)", + "FP32 (float) performance": "1,199 GFLOPS", + "FP64 (double) performance": "37.48 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx350.c3494", + "web_page_access_date": "2022/08/22/, 19:03:45", + "Product Name": "NVIDIA GeForce MX350", + "General Specs": { + "Graphics Processor": "GP107", + "Cores": "640", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP107", + "GPU Variant": "GP107-670-A1\n\t\t\t\t\t\t\t\t\t\t\n(N17S-G5-A1)", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "3,300 million", + "Die Size": "132 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 10th, 2020", + "Generation": "GeForce MX\n(3xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1354 MHz", + "Boost Clock": "1468 MHz", + "Memory Clock": "1752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "56.06 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "32", + "ROPs": "16", + "SM Count": "5", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.49 GPixel/s", + "Texture Rate": "46.98 GTexel/s", + "FP16 (half) performance": "29.36 GFLOPS (1:64)", + "FP32 (float) performance": "1.879 TFLOPS", + "FP64 (double) performance": "58.72 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-p3000-mobile.c2923", + "web_page_access_date": "2022/08/22/, 00:49:11", + "Product Name": "NVIDIA Quadro P3000 Mobile", + "General Specs": { + "Graphics Processor": "GP104", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GP104", + "GPU Variant": "N17E-Q1-A1", + "Architecture": "Pascal", + "Foundry": "TSMC", + "Process Size": "16 nm", + "Transistors": "7,200 million", + "Die Size": "314 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 11th, 2017", + "Generation": "Quadro Mobile\n(Px000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1088 MHz", + "Boost Clock": "1215 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "168.3 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SM Count": "10", + "L1 Cache": "48 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "58.32 GPixel/s", + "Texture Rate": "97.20 GTexel/s", + "FP16 (half) performance": "48.60 GFLOPS (1:64)", + "FP32 (float) performance": "3.110 TFLOPS", + "FP64 (double) performance": "97.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx450-25w.c3657", + "web_page_access_date": "2022/08/22/, 00:49:16", + "Product Name": "NVIDIA GeForce MX450 25W", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18S-G5", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 15th, 2020", + "Generation": "GeForce MX\n(4xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "720 MHz", + "Boost Clock": "930 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.76 GPixel/s", + "Texture Rate": "52.08 GTexel/s", + "FP16 (half) performance": "3.333 TFLOPS (2:1)", + "FP32 (float) performance": "1.667 TFLOPS", + "FP64 (double) performance": "52.08 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx450-30-5w-10gbps.c3641", + "web_page_access_date": "2022/08/22/, 00:49:22", + "Product Name": "NVIDIA GeForce MX450 30.5W 10Gbps", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "N18S-G5", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 25th, 2020", + "Generation": "GeForce MX\n(4xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1575 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "50.40 GPixel/s", + "Texture Rate": "88.20 GTexel/s", + "FP16 (half) performance": "5.645 TFLOPS (2:1)", + "FP32 (float) performance": "2.822 TFLOPS", + "FP64 (double) performance": "88.20 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "31 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx450-30-5w-8gbps.c3717", + "web_page_access_date": "2022/08/22/, 00:49:28", + "Product Name": "NVIDIA GeForce MX450 30.5W 8Gbps", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 25th, 2020", + "Generation": "GeForce MX\n(4xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1035 MHz", + "Boost Clock": "1275 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.80 GPixel/s", + "Texture Rate": "71.40 GTexel/s", + "FP16 (half) performance": "4.570 TFLOPS (2:1)", + "FP32 (float) performance": "2.285 TFLOPS", + "FP64 (double) performance": "71.40 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "31 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-max-q.c3533", + "web_page_access_date": "2022/08/22/, 00:49:34", + "Product Name": "NVIDIA GeForce RTX 2060 Max-Q", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "N18E-G1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 29th, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "975 MHz", + "Boost Clock": "1185 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.88 GPixel/s", + "Texture Rate": "142.2 GTexel/s", + "FP16 (half) performance": "9.101 TFLOPS (2:1)", + "FP32 (float) performance": "4.550 TFLOPS", + "FP64 (double) performance": "142.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-tu104.c3495", + "web_page_access_date": "2022/08/22/, 00:49:40", + "Product Name": "NVIDIA GeForce RTX 2060 TU104", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "1920", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "TU104-150-KC-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 10th, 2020", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "86 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1680 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1920", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "240", + "RT Cores": "30", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "80.64 GPixel/s", + "Texture Rate": "201.6 GTexel/s", + "FP16 (half) performance": "12.90 TFLOPS (2:1)", + "FP32 (float) performance": "6.451 TFLOPS", + "FP64 (double) performance": "201.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.02x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin", + "Board Number": "PG161 SKU 46" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-max-q-refresh.c3574", + "web_page_access_date": "2022/08/22/, 00:49:46", + "Product Name": "NVIDIA GeForce RTX 2070 Max-Q Refresh", + "General Specs": { + "Graphics Processor": "TU106B", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106B", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 4th, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "72.00 GPixel/s", + "Texture Rate": "162.0 GTexel/s", + "FP16 (half) performance": "10.37 TFLOPS (2:1)", + "FP32 (float) performance": "5.184 TFLOPS", + "FP64 (double) performance": "162.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-mobile-refresh.c3573", + "web_page_access_date": "2022/08/22/, 00:49:53", + "Product Name": "NVIDIA GeForce RTX 2070 Mobile Refresh", + "General Specs": { + "Graphics Processor": "TU106B", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106B", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 4th, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1260 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "93.12 GPixel/s", + "Texture Rate": "209.5 GTexel/s", + "FP16 (half) performance": "13.41 TFLOPS (2:1)", + "FP32 (float) performance": "6.705 TFLOPS", + "FP64 (double) performance": "209.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-super-max-q.c3563", + "web_page_access_date": "2022/08/22/, 00:49:58", + "Product Name": "NVIDIA GeForce RTX 2070 SUPER Max-Q", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1155 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "73.92 GPixel/s", + "Texture Rate": "184.8 GTexel/s", + "FP16 (half) performance": "11.83 TFLOPS (2:1)", + "FP32 (float) performance": "5.914 TFLOPS", + "FP64 (double) performance": "184.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2070-super-mobile.c3514", + "web_page_access_date": "2022/08/22/, 00:50:04", + "Product Name": "NVIDIA GeForce RTX 2070 SUPER Mobile", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N18E-G2R", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1140 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "SM Count": "40", + "Tensor Cores": "320", + "RT Cores": "40", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "88.32 GPixel/s", + "Texture Rate": "220.8 GTexel/s", + "FP16 (half) performance": "14.13 TFLOPS (2:1)", + "FP32 (float) performance": "7.066 TFLOPS", + "FP64 (double) performance": "220.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-super-max-q.c3566", + "web_page_access_date": "2022/08/22/, 00:50:10", + "Product Name": "NVIDIA GeForce RTX 2080 SUPER Max-Q", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N18E-G3R", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "62.40 GPixel/s", + "Texture Rate": "187.2 GTexel/s", + "FP16 (half) performance": "11.98 TFLOPS (2:1)", + "FP32 (float) performance": "5.990 TFLOPS", + "FP64 (double) performance": "187.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E4914 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2080-super-mobile.c3513", + "web_page_access_date": "2022/08/22/, 00:50:16", + "Product Name": "NVIDIA GeForce RTX 2080 SUPER Mobile", + "General Specs": { + "Graphics Processor": "TU104", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104", + "GPU Variant": "N18E-G3", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 2nd, 2020", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.84 GPixel/s", + "Texture Rate": "299.5 GTexel/s", + "FP16 (half) performance": "19.17 TFLOPS (2:1)", + "FP32 (float) performance": "9.585 TFLOPS", + "FP64 (double) performance": "299.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "150 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-ti.c3681", + "web_page_access_date": "2022/08/22/, 00:50:22", + "Product Name": "NVIDIA GeForce RTX 3060 Ti", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "4864", + "TMUs": "152", + "ROPs": "80", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-200-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 1st, 2020", + "Availability": "Dec 2nd, 2020", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "65 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "4864", + "TMUs": "152", + "ROPs": "80", + "SM Count": "38", + "Tensor Cores": "152", + "RT Cores": "38", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.2 GPixel/s", + "Texture Rate": "253.1 GTexel/s", + "FP16 (half) performance": "16.20 TFLOPS (1:1)", + "FP32 (float) performance": "16.20 TFLOPS", + "FP64 (double) performance": "253.1 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG142 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (183)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070.c3674", + "web_page_access_date": "2022/08/22/, 00:50:28", + "Product Name": "NVIDIA GeForce RTX 3070", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-300-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 1st, 2020", + "Availability": "Oct 29th, 2020", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "79 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "1725 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "96", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "165.6 GPixel/s", + "Texture Rate": "317.4 GTexel/s", + "FP16 (half) performance": "20.31 TFLOPS (1:1)", + "FP32 (float) performance": "20.31 TFLOPS", + "FP64 (double) performance": "317.4 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "220 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG142 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (214)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080.c3621", + "web_page_access_date": "2022/08/22/, 00:50:34", + "Product Name": "NVIDIA GeForce RTX 3080", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "8704", + "TMUs": "272", + "ROPs": "96", + "Memory Size": "10 GB", + "Memory Type": "GDDR6X", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-200-KD-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 1st, 2020", + "Availability": "Sep 17th, 2020", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "699 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "103 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1440 MHz", + "Boost Clock": "1710 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "320 bit", + "Bandwidth": "760.3 GB/s" + }, + "Render Config": { + "Shading Units": "8704", + "TMUs": "272", + "ROPs": "96", + "SM Count": "68", + "Tensor Cores": "272", + "RT Cores": "68", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "164.2 GPixel/s", + "Texture Rate": "465.1 GTexel/s", + "FP16 (half) performance": "29.77 TFLOPS (1:1)", + "FP32 (float) performance": "29.77 TFLOPS", + "FP64 (double) performance": "465.1 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "285 mm\n\t\t\t\t\t11.2 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "320 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG132 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (193)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3090.c3622", + "web_page_access_date": "2022/08/22/, 00:50:40", + "Product Name": "NVIDIA GeForce RTX 3090", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10496", + "TMUs": "328", + "ROPs": "112", + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-300-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 1st, 2020", + "Availability": "Sep 24th, 2020", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "1,499 USD", + "Current Price": "Amazon\n\t\t\t\t\t / \t\t\t\t\t\t\t\t\t\tNewegg", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "1219 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19.5 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "384 bit", + "Bandwidth": "936.2 GB/s" + }, + "Render Config": { + "Shading Units": "10496", + "TMUs": "328", + "ROPs": "112", + "SM Count": "82", + "Tensor Cores": "328", + "RT Cores": "82", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "189.8 GPixel/s", + "Texture Rate": "556.0 GTexel/s", + "FP16 (half) performance": "35.58 TFLOPS (1:1)", + "FP32 (float) performance": "35.58 TFLOPS", + "FP64 (double) performance": "556.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG132 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (116)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-xavier-nx-gpu.c3642", + "web_page_access_date": "2022/08/22/, 00:50:46", + "Product Name": "NVIDIA Jetson Xavier NX GPU", + "General Specs": { + "Graphics Processor": "GV10B", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GV10B", + "Architecture": "Volta", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "9,000 million", + "Die Size": "350 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 14th, 2020", + "Generation": "Tegra", + "Production": "End-of-life", + "Launch Price": "399 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "854 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "6", + "Tensor Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "26.40 GTexel/s", + "FP16 (half) performance": "1.690 TFLOPS (2:1)", + "FP32 (float) performance": "844.8 GFLOPS", + "FP64 (double) performance": "422.4 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "Length": "70 mm\n\t\t\t\t\t2.8 inches", + "Width": "45 mm\n\t\t\t\t\t1.8 inches", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "CUDA": "7.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-5000-mobile-refresh.c3625", + "web_page_access_date": "2022/08/22/, 00:50:52", + "Product Name": "NVIDIA Quadro RTX 5000 Mobile Refresh", + "General Specs": { + "Graphics Processor": "TU104B", + "Cores": "3072", + "TMUs": "192", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU104B", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "13,600 million", + "Die Size": "545 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 8th, 2020", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1035 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "64", + "SM Count": "48", + "Tensor Cores": "384", + "RT Cores": "48", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "98.88 GPixel/s", + "Texture Rate": "296.6 GTexel/s", + "FP16 (half) performance": "18.98 TFLOPS (2:1)", + "FP32 (float) performance": "9.492 TFLOPS", + "FP64 (double) performance": "296.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "110 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-rtx-6000-mobile.c3497", + "web_page_access_date": "2022/08/22/, 00:50:58", + "Product Name": "NVIDIA Quadro RTX 6000 Mobile", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "4608", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Mobile Graphics": { + "Release Date": "2020", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1275 MHz", + "Boost Clock": "1455 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "672.0 GB/s" + }, + "Render Config": { + "Shading Units": "4608", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "576", + "RT Cores": "72", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "139.7 GPixel/s", + "Texture Rate": "419.0 GTexel/s", + "FP16 (half) performance": "26.82 TFLOPS (2:1)", + "FP32 (float) performance": "13.41 TFLOPS", + "FP64 (double) performance": "419.0 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t1000-mobile-gddr6.c3624", + "web_page_access_date": "2022/08/22/, 00:51:04", + "Product Name": "NVIDIA Quadro T1000 Mobile GDDR6", + "General Specs": { + "Graphics Processor": "TU117B", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117B", + "GPU Variant": "N19P-Q1-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 8th, 2020", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1395 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.80 GPixel/s", + "Texture Rate": "92.40 GTexel/s", + "FP16 (half) performance": "5.914 TFLOPS (2:1)", + "FP32 (float) performance": "2.957 TFLOPS", + "FP64 (double) performance": "92.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a6000.c3686", + "web_page_access_date": "2022/08/22/, 00:51:10", + "Product Name": "NVIDIA RTX A6000", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10752", + "TMUs": "336", + "ROPs": "112", + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 5th, 2020", + "Availability": "Dec 15th, 2020", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Launch Price": "4,649 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1800 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "48 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "768.0 GB/s" + }, + "Render Config": { + "Shading Units": "10752", + "TMUs": "336", + "ROPs": "112", + "SM Count": "84", + "Tensor Cores": "336", + "RT Cores": "84", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "201.6 GPixel/s", + "Texture Rate": "604.8 GTexel/s", + "FP16 (half) performance": "38.71 TFLOPS (1:1)", + "FP32 (float) performance": "38.71 TFLOPS", + "FP64 (double) performance": "1,210 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "8-pin EPS" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t500-mobile.c3747", + "web_page_access_date": "2022/08/22/, 00:51:16", + "Product Name": "NVIDIA T500 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 2nd, 2020", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.24 GPixel/s", + "Texture Rate": "94.92 GTexel/s", + "FP16 (half) performance": "6.075 TFLOPS (2:1)", + "FP32 (float) performance": "3.037 TFLOPS", + "FP64 (double) performance": "94.92 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a10-pcie.c3793", + "web_page_access_date": "2022/08/22/, 00:51:22", + "Product Name": "NVIDIA A10 PCIe", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "9216", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-890-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "885 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "1563 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12.5 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "600.2 GB/s" + }, + "Render Config": { + "Shading Units": "9216", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "288", + "RT Cores": "72", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "162.7 GPixel/s", + "Texture Rate": "488.2 GTexel/s", + "FP16 (half) performance": "31.24 TFLOPS (1:1)", + "FP32 (float) performance": "31.24 TFLOPS", + "FP64 (double) performance": "976.3 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "PG133 SKU 215" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a100-pcie-80-gb.c3821", + "web_page_access_date": "2022/08/22/, 00:51:28", + "Product Name": "NVIDIA A100 PCIe 80 GB", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "6912", + "TMUs": "432", + "ROPs": "160", + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1593 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Memory Bus": "5120 bit", + "Bandwidth": "2,039 GB/s" + }, + "Render Config": { + "Shading Units": "6912", + "TMUs": "432", + "ROPs": "160", + "SM Count": "108", + "Tensor Cores": "432", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "80 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "225.6 GPixel/s", + "Texture Rate": "609.1 GTexel/s", + "FP16 (half) performance": "77.97 TFLOPS (4:1)", + "FP32 (float) performance": "19.49 TFLOPS", + "FP64 (double) performance": "9.746 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "P1001 SKU 200" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a10g.c3798", + "web_page_access_date": "2022/08/22/, 00:51:34", + "Product Name": "NVIDIA A10G", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "9216", + "TMUs": "288", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-890-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1320 MHz", + "Boost Clock": "1710 MHz", + "Memory Clock": "1563 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12.5 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "600.2 GB/s" + }, + "Render Config": { + "Shading Units": "9216", + "TMUs": "288", + "ROPs": "96", + "SM Count": "72", + "Tensor Cores": "288", + "RT Cores": "72", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "164.2 GPixel/s", + "Texture Rate": "492.5 GTexel/s", + "FP16 (half) performance": "31.52 TFLOPS (1:1)", + "FP32 (float) performance": "31.52 TFLOPS", + "FP64 (double) performance": "985.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "PG133 SKU 215" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a16-pcie.c3794", + "web_page_access_date": "2022/08/22/, 00:51:40", + "Product Name": "NVIDIA A16 PCIe", + "General Specs": { + "Graphics Processor": "GA107 x4", + "Cores": "1280 x4", + "TMUs": "40 x4", + "ROPs": "32 x4", + "Memory Size": "16 GB x4", + "Memory Type": "GDDR6", + "Bus Width": "128 bit x4" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "885 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "1812 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "231.9 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "40", + "ROPs": "32", + "SM Count": "10", + "Tensor Cores": "40", + "RT Cores": "10", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.24 GPixel/s", + "Texture Rate": "67.80 GTexel/s", + "FP16 (half) performance": "4.339 TFLOPS (1:1)", + "FP32 (float) performance": "4.339 TFLOPS", + "FP64 (double) performance": "135.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a2.c3848", + "web_page_access_date": "2022/08/22/, 00:51:46", + "Product Name": "NVIDIA A2", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "1280", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "Nov 10th, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1440 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1563 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "200.1 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "40", + "ROPs": "32", + "SM Count": "10", + "Tensor Cores": "40", + "RT Cores": "10", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.64 GPixel/s", + "Texture Rate": "70.80 GTexel/s", + "FP16 (half) performance": "4.531 TFLOPS (1:1)", + "FP32 (float) performance": "4.531 TFLOPS", + "FP64 (double) performance": "70.80 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "PG179 SKU 220" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/a30-pcie.c3792", + "web_page_access_date": "2022/08/22/, 00:51:52", + "Product Name": "NVIDIA A30 PCIe", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Bus Width": "3072 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1440 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Memory Bus": "3072 bit", + "Bandwidth": "933.1 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "Tensor Cores": "224", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "24 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "138.2 GPixel/s", + "Texture Rate": "322.6 GTexel/s", + "FP16 (half) performance": "10.32 TFLOPS (1:1)", + "FP32 (float) performance": "10.32 TFLOPS", + "FP64 (double) performance": "5.161 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "165 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "P1001 SKU 205" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-170hx.c3830", + "web_page_access_date": "2022/08/22/, 00:51:58", + "Product Name": "NVIDIA CMP 170HX", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "4480", + "TMUs": "280", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "GPU Variant": "GA100-105F-A1", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 1st, 2021", + "Generation": "Mining GPUs", + "Production": "Active", + "Launch Price": "4,299 USD", + "Bus Interface": "PCIe 4.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1140 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1458 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.9 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Memory Bus": "4096 bit", + "Bandwidth": "1,493 GB/s" + }, + "Render Config": { + "Shading Units": "4480", + "TMUs": "280", + "ROPs": "128", + "SM Count": "70", + "Tensor Cores": "280", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "180.5 GPixel/s", + "Texture Rate": "394.8 GTexel/s", + "FP16 (half) performance": "50.53 TFLOPS (4:1)", + "FP32 (float) performance": "12.63 TFLOPS", + "FP64 (double) performance": "6.317 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-30hx.c3780", + "web_page_access_date": "2022/08/22/, 00:52:04", + "Product Name": "NVIDIA CMP 30HX", + "General Specs": { + "Graphics Processor": "TU116", + "Cores": "1408", + "TMUs": "88", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU116", + "GPU Variant": "TU116-100-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "6,600 million", + "Die Size": "284 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 25th, 2021", + "Generation": "Mining GPUs", + "Production": "Active", + "Launch Price": "799 USD", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1530 MHz", + "Boost Clock": "1785 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "48", + "SM Count": "22", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "85.68 GPixel/s", + "Texture Rate": "157.1 GTexel/s", + "FP16 (half) performance": "10.05 TFLOPS (2:1)", + "FP32 (float) performance": "5.027 TFLOPS", + "FP64 (double) performance": "157.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "125 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "PG161 SKU 90" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-40hx.c3781", + "web_page_access_date": "2022/08/22/, 00:52:10", + "Product Name": "NVIDIA CMP 40HX", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2304", + "TMUs": "144", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-100-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 25th, 2021", + "Generation": "Mining GPUs", + "Production": "Active", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1470 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "144", + "ROPs": "64", + "SM Count": "36", + "Tensor Cores": "288", + "RT Cores": "36", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "105.6 GPixel/s", + "Texture Rate": "237.6 GTexel/s", + "FP16 (half) performance": "15.21 TFLOPS (2:1)", + "FP32 (float) performance": "7.603 TFLOPS", + "FP64 (double) performance": "237.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "PG161 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-50hx.c3782", + "web_page_access_date": "2022/08/22/, 00:52:16", + "Product Name": "NVIDIA CMP 50HX", + "General Specs": { + "Graphics Processor": "TU102", + "Cores": "3584", + "TMUs": "192", + "ROPs": "80", + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "TU102", + "GPU Variant": "TU102-100-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "18,600 million", + "Die Size": "754 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 24th, 2021", + "Generation": "Mining GPUs", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1350 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Memory Bus": "320 bit", + "Bandwidth": "560.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "192", + "ROPs": "80", + "SM Count": "56", + "Tensor Cores": "448", + "RT Cores": "56", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "123.6 GPixel/s", + "Texture Rate": "296.6 GTexel/s", + "FP16 (half) performance": "22.15 TFLOPS (2:1)", + "FP32 (float) performance": "11.07 TFLOPS", + "FP64 (double) performance": "346.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "116 mm\n\t\t\t\t\t4.6 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG150 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-70hx.c3822", + "web_page_access_date": "2022/08/22/, 00:52:22", + "Product Name": "NVIDIA CMP 70HX", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-100-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Mining GPUs", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "256 bit", + "Bandwidth": "608.3 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.9 GPixel/s", + "Texture Rate": "267.8 GTexel/s", + "FP16 (half) performance": "17.14 TFLOPS (1:1)", + "FP32 (float) performance": "17.14 TFLOPS", + "FP64 (double) performance": "267.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "No outputs", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/cmp-90hx.c3783", + "web_page_access_date": "2022/08/22/, 00:52:28", + "Product Name": "NVIDIA CMP 90HX", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "6400", + "TMUs": "200", + "ROPs": "80", + "Memory Size": "10 GB", + "Memory Type": "GDDR6X", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-100-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 28th, 2021", + "Generation": "Mining GPUs", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "1710 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "320 bit", + "Bandwidth": "760.3 GB/s" + }, + "Render Config": { + "Shading Units": "6400", + "TMUs": "200", + "ROPs": "80", + "SM Count": "50", + "Tensor Cores": "200", + "RT Cores": "50", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "136.8 GPixel/s", + "Texture Rate": "342.0 GTexel/s", + "FP16 (half) performance": "21.89 TFLOPS (1:1)", + "FP32 (float) performance": "21.89 TFLOPS", + "FP64 (double) performance": "342.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "285 mm\n\t\t\t\t\t11.2 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "320 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "2x 8-pin", + "Board Number": "PG132 SKU 100" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-1010.c3762", + "web_page_access_date": "2022/08/22/, 00:52:34", + "Product Name": "NVIDIA GeForce GT 1010", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-200-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 13th, 2021", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1228 MHz", + "Boost Clock": "1468 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "48.06 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "16 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.74 GPixel/s", + "Texture Rate": "23.49 GTexel/s", + "FP32 (float) performance": "751.6 GFLOPS", + "FP64 (double) performance": "31.32 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x mini-HDMI 2.0", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-1010-ddr4.c3874", + "web_page_access_date": "2022/08/22/, 00:52:40", + "Product Name": "NVIDIA GeForce GT 1010 DDR4", + "General Specs": { + "Graphics Processor": "GP108", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR4", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GP108", + "GPU Variant": "GP108-200-A1", + "Architecture": "Pascal", + "Foundry": "Samsung", + "Process Size": "14 nm", + "Transistors": "1,800 million", + "Die Size": "74 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 13th, 2021", + "Generation": "GeForce 10", + "Predecessor": "GeForce 900", + "Successor": "GeForce 20", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x4" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1152 MHz", + "Boost Clock": "1380 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR4", + "Memory Bus": "64 bit", + "Bandwidth": "16.80 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "16 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.04 GPixel/s", + "Texture Rate": "22.08 GTexel/s", + "FP32 (float) performance": "706.6 GFLOPS", + "FP64 (double) performance": "29.44 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "20 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x mini-HDMI 2.0", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "6.1", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx570.c3861", + "web_page_access_date": "2022/08/22/, 00:52:46", + "Product Name": "NVIDIA GeForce MX570", + "General Specs": { + "Graphics Processor": "GA107S", + "Cores": "2048", + "TMUs": "64", + "ROPs": "40", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107S", + "GPU Variant": "MX570", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Dec 17th, 2021", + "Generation": "GeForce MX\n(5xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1087 MHz", + "Boost Clock": "1155 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "40", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.20 GPixel/s", + "Texture Rate": "73.92 GTexel/s", + "FP16 (half) performance": "4.731 TFLOPS (1:1)", + "FP32 (float) performance": "4.731 TFLOPS", + "FP64 (double) performance": "73.92 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2050-mobile.c3859", + "web_page_access_date": "2022/08/22/, 00:52:52", + "Product Name": "NVIDIA GeForce RTX 2050 Mobile", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2048", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Dec 17th, 2021", + "Generation": "GeForce 20 Mobile", + "Predecessor": "GeForce 10 Mobile", + "Successor": "GeForce 30 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1185 MHz", + "Boost Clock": "1477 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "Tensor Cores": "256", + "RT Cores": "32", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "47.26 GPixel/s", + "Texture Rate": "94.53 GTexel/s", + "FP16 (half) performance": "12.10 TFLOPS (2:1)", + "FP32 (float) performance": "6.050 TFLOPS", + "FP64 (double) performance": "189.1 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "45 W", + "Outputs": "1x DVI1x HDMI 2.12x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-2060-12-gb.c3836", + "web_page_access_date": "2022/08/22/, 00:52:58", + "Product Name": "NVIDIA GeForce RTX 2060 12 GB", + "General Specs": { + "Graphics Processor": "TU106", + "Cores": "2176", + "TMUs": "136", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "TU106", + "GPU Variant": "TU106-300-KA-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "10,800 million", + "Die Size": "445 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 7th, 2021", + "Generation": "GeForce 20", + "Predecessor": "GeForce 10", + "Successor": "GeForce 30", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "86 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1470 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "2176", + "TMUs": "136", + "ROPs": "48", + "SM Count": "34", + "Tensor Cores": "272", + "RT Cores": "34", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "79.20 GPixel/s", + "Texture Rate": "224.4 GTexel/s", + "FP16 (half) performance": "14.36 TFLOPS (2:1)", + "FP32 (float) performance": "7.181 TFLOPS", + "FP64 (double) performance": "224.4 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "113 mm\n\t\t\t\t\t4.4 inches", + "Height": "35 mm\n\t\t\t\t\t1.4 inches", + "TDP": "184 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.02x DisplayPort 1.4a1x USB Type-C", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (23)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-mobile.c3788", + "web_page_access_date": "2022/08/22/, 00:53:04", + "Product Name": "NVIDIA GeForce RTX 3050 Mobile", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2048", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "May 11th, 2021", + "Availability": "2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "712 MHz", + "Boost Clock": "1057 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.82 GPixel/s", + "Texture Rate": "67.65 GTexel/s", + "FP16 (half) performance": "4.329 TFLOPS (1:1)", + "FP32 (float) performance": "4.329 TFLOPS", + "FP64 (double) performance": "67.65 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-ti-mobile.c3778", + "web_page_access_date": "2022/08/22/, 00:53:10", + "Product Name": "NVIDIA GeForce RTX 3050 Ti Mobile", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2560", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "May 11th, 2021", + "Availability": "2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1035 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "32", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.12 GPixel/s", + "Texture Rate": "82.80 GTexel/s", + "FP16 (half) performance": "5.299 TFLOPS (1:1)", + "FP32 (float) performance": "5.299 TFLOPS", + "FP64 (double) performance": "82.80 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-ti-mobile.c3812", + "web_page_access_date": "2022/08/22/, 00:53:16", + "Product Name": "NVIDIA GeForce RTX 3050 Ti Mobile", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "2560", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 11th, 2021", + "Availability": "2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1035 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "48", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.68 GPixel/s", + "Texture Rate": "82.80 GTexel/s", + "FP16 (half) performance": "5.299 TFLOPS (1:1)", + "FP32 (float) performance": "5.299 TFLOPS", + "FP64 (double) performance": "82.80 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060.c3682", + "web_page_access_date": "2022/08/22/, 00:53:22", + "Product Name": "NVIDIA GeForce RTX 3060", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "3584", + "TMUs": "112", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "GPU Variant": "GA106-300-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 25th, 2021", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "329 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "60 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1320 MHz", + "Boost Clock": "1777 MHz", + "Memory Clock": "1875 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t15 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "360.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "112", + "ROPs": "48", + "SM Count": "28", + "Tensor Cores": "112", + "RT Cores": "28", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "85.30 GPixel/s", + "Texture Rate": "199.0 GTexel/s", + "FP16 (half) performance": "12.74 TFLOPS (1:1)", + "FP32 (float) performance": "12.74 TFLOPS", + "FP64 (double) performance": "199.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG190 SKU 60" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (168)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-ga104.c3832", + "web_page_access_date": "2022/08/22/, 00:53:28", + "Product Name": "NVIDIA GeForce RTX 3060 GA104", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "3584", + "TMUs": "112", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-150-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 1st, 2021", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "329 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "60 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1320 MHz", + "Boost Clock": "1777 MHz", + "Memory Clock": "1875 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t15 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "360.0 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "112", + "ROPs": "48", + "SM Count": "28", + "Tensor Cores": "112", + "RT Cores": "28", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "85.30 GPixel/s", + "Texture Rate": "199.0 GTexel/s", + "FP16 (half) performance": "12.74 TFLOPS (1:1)", + "FP32 (float) performance": "12.74 TFLOPS", + "FP64 (double) performance": "199.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG190 SKU 55" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (25)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-max-q.c3752", + "web_page_access_date": "2022/08/22/, 00:53:35", + "Product Name": "NVIDIA GeForce RTX 3060 Max-Q", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "3840", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "817 MHz", + "Boost Clock": "1282 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "120", + "RT Cores": "30", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "61.54 GPixel/s", + "Texture Rate": "153.8 GTexel/s", + "FP16 (half) performance": "9.846 TFLOPS (1:1)", + "FP32 (float) performance": "9.846 TFLOPS", + "FP64 (double) performance": "153.8 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-mobile.c3757", + "web_page_access_date": "2022/08/22/, 00:53:41", + "Product Name": "NVIDIA GeForce RTX 3060 Mobile", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "3840", + "TMUs": "120", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1425 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "3840", + "TMUs": "120", + "ROPs": "48", + "SM Count": "30", + "Tensor Cores": "120", + "RT Cores": "30", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "68.40 GPixel/s", + "Texture Rate": "171.0 GTexel/s", + "FP16 (half) performance": "10.94 TFLOPS (1:1)", + "FP32 (float) performance": "10.94 TFLOPS", + "FP64 (double) performance": "171.0 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-max-q.c3685", + "web_page_access_date": "2022/08/22/, 00:53:47", + "Product Name": "NVIDIA GeForce RTX 3070 Max-Q", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5120", + "TMUs": "160", + "ROPs": "80", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-770-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1290 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "160", + "ROPs": "80", + "SM Count": "40", + "Tensor Cores": "160", + "RT Cores": "40", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "103.2 GPixel/s", + "Texture Rate": "206.4 GTexel/s", + "FP16 (half) performance": "13.21 TFLOPS (1:1)", + "FP32 (float) performance": "13.21 TFLOPS", + "FP64 (double) performance": "206.4 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-mobile.c3712", + "web_page_access_date": "2022/08/22/, 00:53:53", + "Product Name": "NVIDIA GeForce RTX 3070 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5120", + "TMUs": "160", + "ROPs": "80", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-770-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1110 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "160", + "ROPs": "80", + "SM Count": "40", + "Tensor Cores": "160", + "RT Cores": "40", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "124.8 GPixel/s", + "Texture Rate": "249.6 GTexel/s", + "FP16 (half) performance": "15.97 TFLOPS (1:1)", + "FP32 (float) performance": "15.97 TFLOPS", + "FP64 (double) performance": "249.6 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-ti.c3675", + "web_page_access_date": "2022/08/22/, 00:53:59", + "Product Name": "NVIDIA GeForce RTX 3070 Ti", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-400-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "May 31st, 2021", + "Availability": "Jun 10th, 2021", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1575 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "256 bit", + "Bandwidth": "608.3 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "169.9 GPixel/s", + "Texture Rate": "339.8 GTexel/s", + "FP16 (half) performance": "21.75 TFLOPS (1:1)", + "FP32 (float) performance": "21.75 TFLOPS", + "FP64 (double) performance": "339.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "290 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG143 SKU 15" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (62)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-max-q.c3753", + "web_page_access_date": "2022/08/22/, 00:54:05", + "Product Name": "NVIDIA GeForce RTX 3080 Max-Q", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-775-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "1245 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "119.5 GPixel/s", + "Texture Rate": "239.0 GTexel/s", + "FP16 (half) performance": "15.30 TFLOPS (1:1)", + "FP32 (float) performance": "15.30 TFLOPS", + "FP64 (double) performance": "239.0 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-mobile.c3684", + "web_page_access_date": "2022/08/22/, 19:03:49", + "Product Name": "NVIDIA GeForce RTX 3080 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-775-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 12th, 2021", + "Availability": "Feb 2nd, 2021", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1110 MHz", + "Boost Clock": "1545 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "148.3 GPixel/s", + "Texture Rate": "296.6 GTexel/s", + "FP16 (half) performance": "18.98 TFLOPS (1:1)", + "FP32 (float) performance": "18.98 TFLOPS", + "FP64 (double) performance": "296.6 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-ti.c3735", + "web_page_access_date": "2022/08/22/, 19:03:54", + "Product Name": "NVIDIA GeForce RTX 3080 Ti", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10240", + "TMUs": "320", + "ROPs": "112", + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-225-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "May 31st, 2021", + "Availability": "Jun 3rd, 2021", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1365 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "384 bit", + "Bandwidth": "912.4 GB/s" + }, + "Render Config": { + "Shading Units": "10240", + "TMUs": "320", + "ROPs": "112", + "SM Count": "80", + "Tensor Cores": "320", + "RT Cores": "80", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "186.5 GPixel/s", + "Texture Rate": "532.8 GTexel/s", + "FP16 (half) performance": "34.10 TFLOPS (1:1)", + "FP32 (float) performance": "34.10 TFLOPS", + "FP64 (double) performance": "532.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "285 mm\n\t\t\t\t\t11.2 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG132 SKU 18" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (76)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/pg506-232.c3799", + "web_page_access_date": "2022/08/22/, 19:03:58", + "Product Name": "NVIDIA PG506-232", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Bus Width": "3072 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1440 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Memory Bus": "3072 bit", + "Bandwidth": "933.1 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "Tensor Cores": "224", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "24 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "138.2 GPixel/s", + "Texture Rate": "322.6 GTexel/s", + "FP16 (half) performance": "10.32 TFLOPS (1:1)", + "FP32 (float) performance": "10.32 TFLOPS", + "FP64 (double) performance": "5.161 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "165 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "P1001 SKU 205" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/pg506-242.c3823", + "web_page_access_date": "2022/08/22/, 19:04:02", + "Product Name": "NVIDIA PG506-242", + "General Specs": { + "Graphics Processor": "GA100", + "Cores": "3584", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Bus Width": "3072 bit" + }, + "Graphics Processor": { + "GPU Name": "GA100", + "Architecture": "Ampere", + "Foundry": "TSMC", + "Process Size": "7 nm", + "Transistors": "54,200 million", + "Die Size": "826 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Availability": "2021", + "Generation": "Tesla\n(Axx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1440 MHz", + "Memory Clock": "1215 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "HBM2", + "Memory Bus": "3072 bit", + "Bandwidth": "933.1 GB/s" + }, + "Render Config": { + "Shading Units": "3584", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "Tensor Cores": "224", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "24 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "138.2 GPixel/s", + "Texture Rate": "322.6 GTexel/s", + "FP16 (half) performance": "10.32 TFLOPS (1:1)", + "FP32 (float) performance": "10.32 TFLOPS", + "FP64 (double) performance": "5.161 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "165 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "P1001 SKU 205" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "8.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-t1200-mobile.c3803", + "web_page_access_date": "2022/08/22/, 19:04:06", + "Product Name": "NVIDIA Quadro T1200 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "855 MHz", + "Boost Clock": "1425 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "45.60 GPixel/s", + "Texture Rate": "91.20 GTexel/s", + "FP16 (half) performance": "5.837 TFLOPS (2:1)", + "FP32 (float) performance": "2.918 TFLOPS", + "FP64 (double) performance": "91.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a2000.c3820", + "web_page_access_date": "2022/08/22/, 19:04:11", + "Product Name": "NVIDIA RTX A2000", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "3328", + "TMUs": "104", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "GPU Variant": "GA106-850-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 10th, 2021", + "Availability": "Oct, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "562 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "3328", + "TMUs": "104", + "ROPs": "48", + "SM Count": "26", + "Tensor Cores": "104", + "RT Cores": "26", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "124.8 GTexel/s", + "FP16 (half) performance": "7.987 TFLOPS (1:1)", + "FP32 (float) performance": "7.987 TFLOPS", + "FP64 (double) performance": "124.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "167 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "70 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a2000-12-gb.c3853", + "web_page_access_date": "2022/08/22/, 19:04:15", + "Product Name": "NVIDIA RTX A2000 12 GB", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "3328", + "TMUs": "104", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 23rd, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "562 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "3328", + "TMUs": "104", + "ROPs": "48", + "SM Count": "26", + "Tensor Cores": "104", + "RT Cores": "26", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "3 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "124.8 GTexel/s", + "FP16 (half) performance": "7.987 TFLOPS (1:1)", + "FP32 (float) performance": "7.987 TFLOPS", + "FP64 (double) performance": "124.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "167 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "70 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a2000-mobile.c3827", + "web_page_access_date": "2022/08/22/, 19:04:19", + "Product Name": "NVIDIA RTX A2000 Mobile", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "2560", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "893 MHz", + "Boost Clock": "1358 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "48", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "65.18 GPixel/s", + "Texture Rate": "108.6 GTexel/s", + "FP16 (half) performance": "6.953 TFLOPS (1:1)", + "FP32 (float) performance": "6.953 TFLOPS", + "FP64 (double) performance": "108.6 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "95 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a3000-mobile.c3806", + "web_page_access_date": "2022/08/22/, 19:04:23", + "Product Name": "NVIDIA RTX A3000 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "4096", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1260 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "128", + "ROPs": "64", + "SM Count": "32", + "Tensor Cores": "128", + "RT Cores": "32", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.84 GPixel/s", + "Texture Rate": "199.7 GTexel/s", + "FP16 (half) performance": "12.78 TFLOPS (1:1)", + "FP32 (float) performance": "12.78 TFLOPS", + "FP64 (double) performance": "199.7 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "130 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a3000-mobile-12-gb.c3904", + "web_page_access_date": "2022/08/22/, 19:04:27", + "Product Name": "NVIDIA RTX A3000 Mobile 12 GB", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "4096", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "495 MHz", + "Boost Clock": "1170 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "128", + "ROPs": "64", + "SM Count": "32", + "Tensor Cores": "128", + "RT Cores": "32", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "74.88 GPixel/s", + "Texture Rate": "149.8 GTexel/s", + "FP16 (half) performance": "9.585 TFLOPS (1:1)", + "FP32 (float) performance": "9.585 TFLOPS", + "FP64 (double) performance": "149.8 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "130 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4-mobile.c3789", + "web_page_access_date": "2022/08/22/, 01:00:44", + "Product Name": "NVIDIA RTX A4 Mobile", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2048", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "2021", + "Availability": "2021", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1237 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "48.00 GPixel/s", + "Texture Rate": "96.00 GTexel/s", + "FP16 (half) performance": "6.144 TFLOPS (1:1)", + "FP32 (float) performance": "6.144 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4000.c3756", + "web_page_access_date": "2022/08/22/, 01:00:50", + "Product Name": "NVIDIA RTX A4000", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-875-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1560 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "149.8 GPixel/s", + "Texture Rate": "299.5 GTexel/s", + "FP16 (half) performance": "19.17 TFLOPS (1:1)", + "FP32 (float) performance": "19.17 TFLOPS", + "FP64 (double) performance": "599.0 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "140 W", + "Suggested PSU": "300 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4000-mobile.c3804", + "web_page_access_date": "2022/08/22/, 01:00:55", + "Product Name": "NVIDIA RTX A4000 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5120", + "TMUs": "160", + "ROPs": "80", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1140 MHz", + "Boost Clock": "1680 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "5120", + "TMUs": "160", + "ROPs": "80", + "SM Count": "40", + "Tensor Cores": "160", + "RT Cores": "40", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "134.4 GPixel/s", + "Texture Rate": "268.8 GTexel/s", + "FP16 (half) performance": "17.20 TFLOPS (1:1)", + "FP32 (float) performance": "17.20 TFLOPS", + "FP64 (double) performance": "537.6 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "140 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4500.c3849", + "web_page_access_date": "2022/08/22/, 01:01:00", + "Product Name": "NVIDIA RTX A4500", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "7168", + "TMUs": "224", + "ROPs": "96", + "Memory Size": "20 GB", + "Memory Type": "GDDR6", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 23rd, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1050 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "20 GB", + "Memory Type": "GDDR6", + "Memory Bus": "320 bit", + "Bandwidth": "640.0 GB/s" + }, + "Render Config": { + "Shading Units": "7168", + "TMUs": "224", + "ROPs": "96", + "SM Count": "56", + "Tensor Cores": "224", + "RT Cores": "56", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "158.4 GPixel/s", + "Texture Rate": "369.6 GTexel/s", + "FP16 (half) performance": "23.65 TFLOPS (1:1)", + "FP32 (float) performance": "23.65 TFLOPS", + "FP64 (double) performance": "739.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a5000.c3748", + "web_page_access_date": "2022/08/22/, 01:01:05", + "Product Name": "NVIDIA RTX A5000", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "8192", + "TMUs": "256", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1170 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "768.0 GB/s" + }, + "Render Config": { + "Shading Units": "8192", + "TMUs": "256", + "ROPs": "96", + "SM Count": "64", + "Tensor Cores": "256", + "RT Cores": "64", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "162.7 GPixel/s", + "Texture Rate": "433.9 GTexel/s", + "FP16 (half) performance": "27.77 TFLOPS (1:1)", + "FP32 (float) performance": "27.77 TFLOPS", + "FP64 (double) performance": "867.8 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a5000-mobile.c3805", + "web_page_access_date": "2022/08/22/, 01:01:11", + "Product Name": "NVIDIA RTX A5000 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1575 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "151.2 GPixel/s", + "Texture Rate": "302.4 GTexel/s", + "FP16 (half) performance": "19.35 TFLOPS (1:1)", + "FP32 (float) performance": "19.35 TFLOPS", + "FP64 (double) performance": "604.8 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "140 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t1000.c3797", + "web_page_access_date": "2022/08/22/, 01:01:16", + "Product Name": "NVIDIA T1000", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "May 6th, 2021", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.64 GPixel/s", + "Texture Rate": "78.12 GTexel/s", + "FP16 (half) performance": "5.000 TFLOPS (2:1)", + "FP32 (float) performance": "2.500 TFLOPS", + "FP64 (double) performance": "78.12 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t1000-8-gb.c3842", + "web_page_access_date": "2022/08/22/, 01:01:21", + "Product Name": "NVIDIA T1000 8 GB", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "May 6th, 2021", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.64 GPixel/s", + "Texture Rate": "78.12 GTexel/s", + "FP16 (half) performance": "5.000 TFLOPS (2:1)", + "FP32 (float) performance": "2.500 TFLOPS", + "FP64 (double) performance": "78.12 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t400.c3808", + "web_page_access_date": "2022/08/22/, 01:01:26", + "Product Name": "NVIDIA T400", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "May 6th, 2021", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "420 MHz", + "Boost Clock": "1425 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.80 GPixel/s", + "Texture Rate": "34.20 GTexel/s", + "FP16 (half) performance": "2.189 TFLOPS (2:1)", + "FP32 (float) performance": "1,094 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "3x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t400-4-gb.c3843", + "web_page_access_date": "2022/08/22/, 01:01:31", + "Product Name": "NVIDIA T400 4 GB", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "May 6th, 2021", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "420 MHz", + "Boost Clock": "1425 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.80 GPixel/s", + "Texture Rate": "34.20 GTexel/s", + "FP16 (half) performance": "2.189 TFLOPS (2:1)", + "FP32 (float) performance": "1,094 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "3x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t600.c3796", + "web_page_access_date": "2022/08/22/, 01:01:37", + "Product Name": "NVIDIA T600", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "640", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "735 MHz", + "Boost Clock": "1335 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "32", + "SM Count": "10", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.72 GPixel/s", + "Texture Rate": "53.40 GTexel/s", + "FP16 (half) performance": "3.418 TFLOPS (2:1)", + "FP32 (float) performance": "1.709 TFLOPS", + "FP64 (double) performance": "53.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "40 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t600-mobile.c3817", + "web_page_access_date": "2022/08/22/, 01:01:42", + "Product Name": "NVIDIA T600 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "896", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 12th, 2021", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1395 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t10 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "32", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "44.64 GPixel/s", + "Texture Rate": "78.12 GTexel/s", + "FP16 (half) performance": "5.000 TFLOPS (2:1)", + "FP32 (float) performance": "2.500 TFLOPS", + "FP64 (double) performance": "78.12 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "40 W", + "Outputs": "4x mini-DisplayPort 1.4a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-1630.c3916", + "web_page_access_date": "2022/08/22/, 01:01:47", + "Product Name": "NVIDIA GeForce GTX 1630", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "TU117-150-KA-A1", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2022", + "Generation": "GeForce 16", + "Predecessor": "GeForce 10", + "Successor": "GeForce 20", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "3 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1740 MHz", + "Boost Clock": "1785 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.56 GPixel/s", + "Texture Rate": "57.12 GTexel/s", + "FP16 (half) performance": "3.656 TFLOPS (2:1)", + "FP32 (float) performance": "1.828 TFLOPS", + "FP64 (double) performance": "57.12 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "Height": "18 mm\n\t\t\t\t\t0.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "PG174 SKU 0" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + }, + "Retail boards based on this design (31)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx550.c3860", + "web_page_access_date": "2022/08/22/, 01:01:52", + "Product Name": "NVIDIA GeForce MX550", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "GPU Variant": "MX550", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "2022", + "Generation": "GeForce MX\n(5xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1320 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "32", + "ROPs": "16", + "SM Count": "8", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.12 GPixel/s", + "Texture Rate": "42.24 GTexel/s", + "FP16 (half) performance": "2.703 TFLOPS (1:1)", + "FP32 (float) performance": "2.703 TFLOPS", + "FP64 (double) performance": "42.24 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-mx570.c3919", + "web_page_access_date": "2022/08/22/, 01:01:58", + "Product Name": "NVIDIA GeForce MX570", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2048", + "TMUs": "64", + "ROPs": "40", + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "GPU Variant": "MX570", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "May 2022", + "Generation": "GeForce MX\n(5xx)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "832 MHz", + "Boost Clock": "1155 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "40", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "46.20 GPixel/s", + "Texture Rate": "73.92 GTexel/s", + "FP16 (half) performance": "4.731 TFLOPS (1:1)", + "FP32 (float) performance": "4.731 TFLOPS", + "FP64 (double) performance": "73.92 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-4-gb.c3744", + "web_page_access_date": "2022/08/22/, 01:02:03", + "Product Name": "NVIDIA GeForce RTX 3050 4 GB", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2304", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "GPU Variant": "GA107-140-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1545 MHz", + "Boost Clock": "1740 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "72", + "ROPs": "32", + "SM Count": "18", + "Tensor Cores": "72", + "RT Cores": "18", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "55.68 GPixel/s", + "Texture Rate": "125.3 GTexel/s", + "FP16 (half) performance": "8.018 TFLOPS (1:1)", + "FP32 (float) performance": "8.018 TFLOPS", + "FP64 (double) performance": "125.3 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "90 W", + "Suggested PSU": "250 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-8-gb.c3858", + "web_page_access_date": "2022/08/22/, 01:02:08", + "Product Name": "NVIDIA GeForce RTX 3050 8 GB", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "2560", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "GPU Variant": "GA106-150-KA-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 4th, 2022", + "Availability": "Jan 27th, 2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1552 MHz", + "Boost Clock": "1777 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "32", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.86 GPixel/s", + "Texture Rate": "142.2 GTexel/s", + "FP16 (half) performance": "9.098 TFLOPS (1:1)", + "FP32 (float) performance": "9.098 TFLOPS", + "FP64 (double) performance": "142.2 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (43)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-8-gb-ga107.c3880", + "web_page_access_date": "2022/08/22/, 01:02:13", + "Product Name": "NVIDIA GeForce RTX 3050 8 GB GA107", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2560", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "GPU Variant": "GA107-150-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1552 MHz", + "Boost Clock": "1777 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "32", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.86 GPixel/s", + "Texture Rate": "142.2 GTexel/s", + "FP16 (half) performance": "9.098 TFLOPS (1:1)", + "FP32 (float) performance": "9.098 TFLOPS", + "FP64 (double) performance": "142.2 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "115 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3050-oem.c3915", + "web_page_access_date": "2022/08/22/, 01:02:18", + "Product Name": "NVIDIA GeForce RTX 3050 OEM", + "General Specs": { + "Graphics Processor": "GA106", + "Cores": "2304", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA106", + "GPU Variant": "GA106-150-KA-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "12,000 million", + "Die Size": "276 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 4th, 2022", + "Availability": "Jan 27th, 2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1515 MHz", + "Boost Clock": "1755 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "72", + "ROPs": "32", + "SM Count": "18", + "Tensor Cores": "72", + "RT Cores": "18", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "56.16 GPixel/s", + "Texture Rate": "126.4 GTexel/s", + "FP16 (half) performance": "8.087 TFLOPS (1:1)", + "FP32 (float) performance": "8.087 TFLOPS", + "FP64 (double) performance": "126.4 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3060-ti-ga103.c3872", + "web_page_access_date": "2022/08/22/, 01:02:24", + "Product Name": "NVIDIA GeForce RTX 3060 Ti GA103", + "General Specs": { + "Graphics Processor": "GA103S", + "Cores": "4864", + "TMUs": "152", + "ROPs": "80", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA103S", + "GPU Variant": "GA103-200-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "496 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 23rd, 2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "65 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1410 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "4864", + "TMUs": "152", + "ROPs": "80", + "SM Count": "38", + "Tensor Cores": "152", + "RT Cores": "38", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "133.2 GPixel/s", + "Texture Rate": "253.1 GTexel/s", + "FP16 (half) performance": "16.20 TFLOPS (1:1)", + "FP32 (float) performance": "16.20 TFLOPS", + "FP64 (double) performance": "253.1 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG142 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.5" + }, + "Retail boards based on this design (6)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-ti-16-gb.c3835", + "web_page_access_date": "2022/08/22/, 01:02:29", + "Product Name": "NVIDIA GeForce RTX 3070 Ti 16 GB", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "GPU Variant": "GA104-401-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "46 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1575 MHz", + "Boost Clock": "1770 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "256 bit", + "Bandwidth": "608.3 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "SM Count": "48", + "Tensor Cores": "192", + "RT Cores": "48", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "169.9 GPixel/s", + "Texture Rate": "339.8 GTexel/s", + "FP16 (half) performance": "21.75 TFLOPS (1:1)", + "FP32 (float) performance": "21.75 TFLOPS", + "FP64 (double) performance": "339.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "290 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-ti-max-q.c3923", + "web_page_access_date": "2022/08/22/, 01:02:34", + "Product Name": "NVIDIA GeForce RTX 3070 Ti Max-Q", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Availability": "Feb 1st, 2022", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "510 MHz", + "Boost Clock": "1035 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "96", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "99.36 GPixel/s", + "Texture Rate": "190.4 GTexel/s", + "FP16 (half) performance": "12.19 TFLOPS (1:1)", + "FP32 (float) performance": "12.19 TFLOPS", + "FP64 (double) performance": "190.4 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3070-ti-mobile.c3852", + "web_page_access_date": "2022/08/22/, 01:02:39", + "Product Name": "NVIDIA GeForce RTX 3070 Ti Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "96", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2022", + "Availability": "Feb 1st, 2022", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "1410 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "96", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "135.4 GPixel/s", + "Texture Rate": "259.4 GTexel/s", + "FP16 (half) performance": "16.60 TFLOPS (1:1)", + "FP32 (float) performance": "16.60 TFLOPS", + "FP64 (double) performance": "259.4 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-12-gb.c3834", + "web_page_access_date": "2022/08/22/, 01:02:44", + "Product Name": "NVIDIA GeForce RTX 3080 12 GB", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "8960", + "TMUs": "280", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-220-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 11th, 2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "799 USD", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1260 MHz", + "Boost Clock": "1710 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "384 bit", + "Bandwidth": "912.4 GB/s" + }, + "Render Config": { + "Shading Units": "8960", + "TMUs": "280", + "ROPs": "96", + "SM Count": "70", + "Tensor Cores": "280", + "RT Cores": "70", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "5 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "164.2 GPixel/s", + "Texture Rate": "478.8 GTexel/s", + "FP16 (half) performance": "30.64 TFLOPS (1:1)", + "FP32 (float) performance": "30.64 TFLOPS", + "FP64 (double) performance": "478.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "285 mm\n\t\t\t\t\t11.2 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (43)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-ti-20-gb.c3831", + "web_page_access_date": "2022/08/22/, 01:02:50", + "Product Name": "NVIDIA GeForce RTX 3080 Ti 20 GB", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10240", + "TMUs": "320", + "ROPs": "112", + "Memory Size": "20 GB", + "Memory Type": "GDDR6X", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-225-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 2022", + "Availability": "2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "58 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1335 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "1188 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t19 Gbps effective" + }, + "Memory": { + "Memory Size": "20 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "320 bit", + "Bandwidth": "760.3 GB/s" + }, + "Render Config": { + "Shading Units": "10240", + "TMUs": "320", + "ROPs": "112", + "SM Count": "80", + "Tensor Cores": "320", + "RT Cores": "80", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "186.5 GPixel/s", + "Texture Rate": "532.8 GTexel/s", + "FP16 (half) performance": "34.10 TFLOPS (1:1)", + "FP32 (float) performance": "34.10 TFLOPS", + "FP64 (double) performance": "532.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "285 mm\n\t\t\t\t\t11.2 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-ti-max-q.c3841", + "web_page_access_date": "2022/08/22/, 01:02:55", + "Product Name": "NVIDIA GeForce RTX 3080 Ti Max-Q", + "General Specs": { + "Graphics Processor": "GA103S", + "Cores": "7424", + "TMUs": "232", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA103S", + "GPU Variant": "GN20-E8-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "496 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 25th, 2022", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "585 MHz", + "Boost Clock": "1125 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "7424", + "TMUs": "232", + "ROPs": "96", + "SM Count": "58", + "Tensor Cores": "232", + "RT Cores": "58", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "108.0 GPixel/s", + "Texture Rate": "261.0 GTexel/s", + "FP16 (half) performance": "16.70 TFLOPS (1:1)", + "FP32 (float) performance": "16.70 TFLOPS", + "FP64 (double) performance": "261.0 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.5" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3080-ti-mobile.c3840", + "web_page_access_date": "2022/08/22/, 01:03:00", + "Product Name": "NVIDIA GeForce RTX 3080 Ti Mobile", + "General Specs": { + "Graphics Processor": "GA103S", + "Cores": "7424", + "TMUs": "232", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA103S", + "GPU Variant": "GN20-E8-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "496 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 25th, 2022", + "Generation": "GeForce 30 Mobile", + "Predecessor": "GeForce 20 Mobile", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "810 MHz", + "Boost Clock": "1260 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "7424", + "TMUs": "232", + "ROPs": "96", + "SM Count": "58", + "Tensor Cores": "232", + "RT Cores": "58", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "121.0 GPixel/s", + "Texture Rate": "292.3 GTexel/s", + "FP16 (half) performance": "18.71 TFLOPS (1:1)", + "FP32 (float) performance": "18.71 TFLOPS", + "FP64 (double) performance": "292.3 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.5" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-3090-ti.c3829", + "web_page_access_date": "2022/08/22/, 01:03:06", + "Product Name": "NVIDIA GeForce RTX 3090 Ti", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10752", + "TMUs": "336", + "ROPs": "112", + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "GPU Variant": "GA102-350-A1", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 27th, 2022", + "Availability": "Mar 29th, 2022", + "Generation": "GeForce 30", + "Predecessor": "GeForce 20", + "Successor": "GeForce 40", + "Production": "Active", + "Launch Price": "1,999 USD", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "30 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1560 MHz", + "Boost Clock": "1860 MHz", + "Memory Clock": "1313 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t21 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "384 bit", + "Bandwidth": "1,008 GB/s" + }, + "Render Config": { + "Shading Units": "10752", + "TMUs": "336", + "ROPs": "112", + "SM Count": "84", + "Tensor Cores": "336", + "RT Cores": "84", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "208.3 GPixel/s", + "Texture Rate": "625.0 GTexel/s", + "FP16 (half) performance": "40.00 TFLOPS (1:1)", + "FP32 (float) performance": "40.00 TFLOPS", + "FP64 (double) performance": "625.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "450 W", + "Suggested PSU": "850 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 16-pin", + "Board Number": "PG136 SKU 5" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Retail boards based on this design (40)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4060.c3891", + "web_page_access_date": "2022/08/22/, 01:03:11", + "Product Name": "NVIDIA GeForce RTX 4060", + "General Specs": { + "Graphics Processor": "AD104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "AD104", + "Architecture": "Lovelace", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "300 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 40", + "Predecessor": "GeForce 30", + "Production": "Unreleased", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1925 MHz", + "Boost Clock": "2075 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "64", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "48 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "132.8 GPixel/s", + "Texture Rate": "381.8 GTexel/s", + "FP16 (half) performance": "24.44 TFLOPS (1:1)", + "FP32 (float) performance": "24.44 TFLOPS", + "FP64 (double) performance": "381.8 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "9.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4060-ti.c3890", + "web_page_access_date": "2022/08/22/, 01:03:16", + "Product Name": "NVIDIA GeForce RTX 4060 Ti", + "General Specs": { + "Graphics Processor": "AD104", + "Cores": "7168", + "TMUs": "224", + "ROPs": "80", + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Bus Width": "160 bit" + }, + "Graphics Processor": { + "GPU Name": "AD104", + "GPU Variant": "AD104-275-K1-A1", + "Architecture": "Lovelace", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "300 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 40", + "Predecessor": "GeForce 30", + "Production": "Unreleased", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2190 MHz", + "Boost Clock": "2430 MHz", + "Memory Clock": "2250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t18 Gbps effective" + }, + "Memory": { + "Memory Size": "10 GB", + "Memory Type": "GDDR6", + "Memory Bus": "160 bit", + "Bandwidth": "360.0 GB/s" + }, + "Render Config": { + "Shading Units": "7168", + "TMUs": "224", + "ROPs": "80", + "SM Count": "56", + "Tensor Cores": "224", + "RT Cores": "56", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "48 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "194.4 GPixel/s", + "Texture Rate": "544.3 GTexel/s", + "FP16 (half) performance": "34.84 TFLOPS (1:1)", + "FP32 (float) performance": "34.84 TFLOPS", + "FP64 (double) performance": "544.3 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "9.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4070.c3924", + "web_page_access_date": "2022/08/22/, 01:03:22", + "Product Name": "NVIDIA GeForce RTX 4070", + "General Specs": { + "Graphics Processor": "AD104", + "Cores": "7680", + "TMUs": "240", + "ROPs": "80", + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "AD104", + "GPU Variant": "AD104", + "Architecture": "Lovelace", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "300 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 40", + "Predecessor": "GeForce 30", + "Production": "Unreleased", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2310 MHz", + "Boost Clock": "2610 MHz", + "Memory Clock": "1325 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t21.2 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "192 bit", + "Bandwidth": "508.8 GB/s" + }, + "Render Config": { + "Shading Units": "7680", + "TMUs": "240", + "ROPs": "80", + "SM Count": "60", + "Tensor Cores": "240", + "RT Cores": "60", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "48 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "208.8 GPixel/s", + "Texture Rate": "626.4 GTexel/s", + "FP16 (half) performance": "40.09 TFLOPS (1:1)", + "FP32 (float) performance": "40.09 TFLOPS", + "FP64 (double) performance": "626.4 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "285 W", + "Suggested PSU": "600 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 12-pin", + "Board Number": "PG141 SKU 331" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "9.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4080.c3888", + "web_page_access_date": "2022/08/22/, 01:03:27", + "Product Name": "NVIDIA GeForce RTX 4080", + "General Specs": { + "Graphics Processor": "AD103", + "Cores": "10240", + "TMUs": "320", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "AD103", + "GPU Variant": "AD103-300-A1", + "Architecture": "Lovelace", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "380 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 40", + "Predecessor": "GeForce 30", + "Production": "Unreleased", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2025 MHz", + "Boost Clock": "2375 MHz", + "Memory Clock": "1325 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t21.2 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "256 bit", + "Bandwidth": "678.4 GB/s" + }, + "Render Config": { + "Shading Units": "10240", + "TMUs": "320", + "ROPs": "96", + "SM Count": "80", + "Tensor Cores": "320", + "RT Cores": "80", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "64 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "228.0 GPixel/s", + "Texture Rate": "760.0 GTexel/s", + "FP16 (half) performance": "48.64 TFLOPS (1:1)", + "FP32 (float) performance": "48.64 TFLOPS", + "FP64 (double) performance": "760.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "420 W", + "Suggested PSU": "800 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 16-pin", + "Board Number": "PG139 SKU 360" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "9.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4090.c3889", + "web_page_access_date": "2022/08/22/, 01:03:32", + "Product Name": "NVIDIA GeForce RTX 4090", + "General Specs": { + "Graphics Processor": "AD102", + "Cores": "16384", + "TMUs": "512", + "ROPs": "192", + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "AD102", + "GPU Variant": "AD102-300-A1", + "Architecture": "Lovelace", + "Foundry": "TSMC", + "Process Size": "5 nm", + "Transistors": "unknown", + "Die Size": "611 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Availability": "2022", + "Generation": "GeForce 40", + "Predecessor": "GeForce 30", + "Production": "Unreleased", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "Base Clock": "2235 MHz", + "Boost Clock": "2520 MHz", + "Memory Clock": "1325 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t21.2 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "384 bit", + "Bandwidth": "1,018 GB/s" + }, + "Render Config": { + "Shading Units": "16384", + "TMUs": "512", + "ROPs": "192", + "SM Count": "128", + "Tensor Cores": "512", + "RT Cores": "128", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "96 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "483.8 GPixel/s", + "Texture Rate": "1,290 GTexel/s", + "FP16 (half) performance": "82.58 TFLOPS (1:1)", + "FP32 (float) performance": "82.58 TFLOPS", + "FP64 (double) performance": "1,290 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "336 mm\n\t\t\t\t\t13.2 inches", + "Width": "140 mm\n\t\t\t\t\t5.5 inches", + "Height": "61 mm\n\t\t\t\t\t2.4 inches", + "TDP": "450 W", + "Suggested PSU": "850 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "1x 16-pin", + "Board Number": "PG139 SKU 330" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "9.0", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/h100-pcie.c3899", + "web_page_access_date": "2022/08/22/, 01:03:37", + "Product Name": "NVIDIA H100 PCIe", + "General Specs": { + "Graphics Processor": "GH100", + "Cores": "7296", + "TMUs": "456", + "ROPs": "24", + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GH100", + "Architecture": "Hopper", + "Foundry": "TSMC", + "Process Size": "4 nm", + "Transistors": "80,000 million", + "Die Size": "814 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Tesla\n(Hxx)", + "Production": "Active", + "Bus Interface": "PCIe 5.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "80 GB", + "Memory Type": "HBM2e", + "Memory Bus": "5120 bit", + "Bandwidth": "1,280 GB/s" + }, + "Render Config": { + "Shading Units": "7296", + "TMUs": "456", + "ROPs": "24", + "SM Count": "114", + "Tensor Cores": "456", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "50 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.60 GPixel/s", + "Texture Rate": "752.4 GTexel/s", + "FP16 (half) performance": "96.31 TFLOPS (4:1)", + "FP32 (float) performance": "24.08 TFLOPS", + "FP64 (double) performance": "12.04 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "9.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/h100-sxm5.c3900", + "web_page_access_date": "2022/08/22/, 01:03:43", + "Product Name": "NVIDIA H100 SXM5", + "General Specs": { + "Graphics Processor": "GH100", + "Cores": "8448", + "TMUs": "528", + "ROPs": "24", + "Memory Size": "80 GB", + "Memory Type": "HBM3", + "Bus Width": "5120 bit" + }, + "Graphics Processor": { + "GPU Name": "GH100", + "Architecture": "Hopper", + "Foundry": "TSMC", + "Process Size": "4 nm", + "Transistors": "80,000 million", + "Die Size": "814 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Tesla\n(Hxx)", + "Production": "Active", + "Bus Interface": "PCIe 5.0 x16" + }, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1780 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "80 GB", + "Memory Type": "HBM3", + "Memory Bus": "5120 bit", + "Bandwidth": "1,920 GB/s" + }, + "Render Config": { + "Shading Units": "8448", + "TMUs": "528", + "ROPs": "24", + "SM Count": "132", + "Tensor Cores": "528", + "L1 Cache": "192 KB (per SM)", + "L2 Cache": "50 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.72 GPixel/s", + "Texture Rate": "939.8 GTexel/s", + "FP16 (half) performance": "120.3 TFLOPS (4:1)", + "FP32 (float) performance": "30.07 TFLOPS", + "FP64 (double) performance": "15.04 TFLOPS (1:2)" + }, + "Board Design": { + "TDP": "700 W", + "Suggested PSU": "1100 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS", + "Board Number": "PG520" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "3.0", + "Vulkan": "N/A", + "CUDA": "9.0", + "Shader Model": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a1000-embedded.c3895", + "web_page_access_date": "2022/08/22/, 01:03:48", + "Product Name": "NVIDIA RTX A1000 Embedded", + "General Specs": { + "Graphics Processor": "GA107S", + "Cores": "2048", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107S", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1192 MHz", + "Boost Clock": "1627 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "78.10 GPixel/s", + "Texture Rate": "104.1 GTexel/s", + "FP16 (half) performance": "6.664 TFLOPS (1:1)", + "FP32 (float) performance": "6.664 TFLOPS", + "FP64 (double) performance": "104.1 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a1000-mobile.c3920", + "web_page_access_date": "2022/08/22/, 01:03:53", + "Product Name": "NVIDIA RTX A1000 Mobile", + "General Specs": { + "Graphics Processor": "GA107", + "Cores": "2048", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "630 MHz", + "Boost Clock": "1140 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t11 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.72 GPixel/s", + "Texture Rate": "72.96 GTexel/s", + "FP16 (half) performance": "4.669 TFLOPS (1:1)", + "FP32 (float) performance": "4.669 TFLOPS", + "FP64 (double) performance": "72.96 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a2000-embedded.c3894", + "web_page_access_date": "2022/08/22/, 01:03:59", + "Product Name": "NVIDIA RTX A2000 Embedded", + "General Specs": { + "Graphics Processor": "GA107S", + "Cores": "2560", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107S", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1117 MHz", + "Boost Clock": "1612 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "80", + "ROPs": "48", + "SM Count": "20", + "Tensor Cores": "80", + "RT Cores": "20", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "77.38 GPixel/s", + "Texture Rate": "129.0 GTexel/s", + "FP16 (half) performance": "8.253 TFLOPS (1:1)", + "FP32 (float) performance": "8.253 TFLOPS", + "FP64 (double) performance": "129.0 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a3000-mobile-12-gb.c3903", + "web_page_access_date": "2022/08/22/, 01:04:04", + "Product Name": "NVIDIA RTX A3000 Mobile 12 GB", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "4096", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "855 MHz", + "Boost Clock": "1440 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "128", + "ROPs": "64", + "SM Count": "32", + "Tensor Cores": "128", + "RT Cores": "32", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "92.16 GPixel/s", + "Texture Rate": "184.3 GTexel/s", + "FP16 (half) performance": "11.80 TFLOPS (1:1)", + "FP32 (float) performance": "11.80 TFLOPS", + "FP64 (double) performance": "184.3 GFLOPS (1:64)" + }, + "Board Design": { + "TDP": "130 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4500-embedded.c3893", + "web_page_access_date": "2022/08/22/, 01:04:09", + "Product Name": "NVIDIA RTX A4500 Embedded", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "80", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "930 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "80", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "120.0 GPixel/s", + "Texture Rate": "276.0 GTexel/s", + "FP16 (half) performance": "17.66 TFLOPS (1:1)", + "FP32 (float) performance": "17.66 TFLOPS", + "FP64 (double) performance": "552.0 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a4500-mobile.c3851", + "web_page_access_date": "2022/08/22/, 01:04:14", + "Product Name": "NVIDIA RTX A4500 Mobile", + "General Specs": { + "Graphics Processor": "GA104", + "Cores": "5888", + "TMUs": "184", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA104", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "17,400 million", + "Die Size": "392 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "510 MHz", + "Boost Clock": "1215 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "5888", + "TMUs": "184", + "ROPs": "96", + "SM Count": "46", + "Tensor Cores": "184", + "RT Cores": "46", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "116.6 GPixel/s", + "Texture Rate": "223.6 GTexel/s", + "FP16 (half) performance": "14.31 TFLOPS (1:1)", + "FP32 (float) performance": "14.31 TFLOPS", + "FP64 (double) performance": "447.1 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "115 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a500-embedded.c3896", + "web_page_access_date": "2022/08/22/, 01:04:20", + "Product Name": "NVIDIA RTX A500 Embedded", + "General Specs": { + "Graphics Processor": "GA107S", + "Cores": "2048", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GA107S", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1192 MHz", + "Boost Clock": "1627 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "Tensor Cores": "64", + "RT Cores": "16", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "78.10 GPixel/s", + "Texture Rate": "104.1 GTexel/s", + "FP16 (half) performance": "6.664 TFLOPS (1:1)", + "FP32 (float) performance": "6.664 TFLOPS", + "FP64 (double) performance": "104.1 GFLOPS (1:64)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a5500.c3901", + "web_page_access_date": "2022/08/22/, 01:04:26", + "Product Name": "NVIDIA RTX A5500", + "General Specs": { + "Graphics Processor": "GA102", + "Cores": "10240", + "TMUs": "320", + "ROPs": "96", + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GA102", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "28,300 million", + "Die Size": "628 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Quadro\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1170 MHz", + "Boost Clock": "1695 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "24 GB", + "Memory Type": "GDDR6", + "Memory Bus": "384 bit", + "Bandwidth": "768.0 GB/s" + }, + "Render Config": { + "Shading Units": "10240", + "TMUs": "320", + "ROPs": "96", + "SM Count": "80", + "Tensor Cores": "320", + "RT Cores": "80", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "6 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "162.7 GPixel/s", + "Texture Rate": "542.4 GTexel/s", + "FP16 (half) performance": "34.71 TFLOPS (1:1)", + "FP32 (float) performance": "34.71 TFLOPS", + "FP64 (double) performance": "1,085 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.4a", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/rtx-a5500-mobile.c3902", + "web_page_access_date": "2022/08/22/, 01:04:31", + "Product Name": "NVIDIA RTX A5500 Mobile", + "General Specs": { + "Graphics Processor": "GA103S", + "Cores": "7424", + "TMUs": "232", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GA103S", + "Architecture": "Ampere", + "Foundry": "Samsung", + "Process Size": "8 nm", + "Transistors": "unknown", + "Die Size": "496 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2022", + "Generation": "Quadro Mobile\n(Ax000)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1575 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "448.0 GB/s" + }, + "Render Config": { + "Shading Units": "7424", + "TMUs": "232", + "ROPs": "96", + "SM Count": "58", + "Tensor Cores": "232", + "RT Cores": "58", + "L1 Cache": "128 KB (per SM)", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "151.2 GPixel/s", + "Texture Rate": "365.4 GTexel/s", + "FP16 (half) performance": "23.39 TFLOPS (1:1)", + "FP32 (float) performance": "23.39 TFLOPS", + "FP64 (double) performance": "730.8 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "140 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "8.6", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/t550-mobile.c3918", + "web_page_access_date": "2022/08/22/, 01:04:36", + "Product Name": "NVIDIA T550 Mobile", + "General Specs": { + "Graphics Processor": "TU117", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "TU117", + "Architecture": "Turing", + "Foundry": "TSMC", + "Process Size": "12 nm", + "Transistors": "4,700 million", + "Die Size": "200 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 2022", + "Generation": "Quadro Mobile\n(Tx000)", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1065 MHz", + "Boost Clock": "1665 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "53.28 GPixel/s", + "Texture Rate": "106.6 GTexel/s", + "FP16 (half) performance": "6.820 TFLOPS (2:1)", + "FP32 (float) performance": "3.410 TFLOPS", + "FP64 (double) performance": "106.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "23 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "7.5", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-305m.c1481", + "web_page_access_date": "2022/08/22/, 20:25:48", + "Product Name": "NVIDIA GeForce 305M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N11M-LP1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "525 MHz", + "Shader Clock": "1150 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "11.20 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.100 GPixel/s", + "Texture Rate": "4.200 GTexel/s", + "FP32 (float) performance": "36.80 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-310m.c2374", + "web_page_access_date": "2022/08/22/, 20:27:50", + "Product Name": "NVIDIA GeForce 310M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N11M-GE1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "606 MHz", + "Shader Clock": "1530 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.424 GPixel/s", + "Texture Rate": "4.848 GTexel/s", + "FP32 (float) performance": "48.96 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-310m.c2375", + "web_page_access_date": "2022/08/23/, 10:11:48", + "Product Name": "NVIDIA GeForce 310M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N11M-GE1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1530 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "48.96 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-310m.c1482", + "web_page_access_date": "2022/08/23/, 10:13:50", + "Product Name": "NVIDIA GeForce 310M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N11M-GE2-S-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1530 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "48.96 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "14 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-315-oem.c609", + "web_page_access_date": "2022/08/23/, 10:15:51", + "Product Name": "NVIDIA GeForce 315 OEM", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 31st, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.800 GPixel/s", + "Texture Rate": "7.600 GTexel/s", + "FP32 (float) performance": "105.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "33 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P681" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-320m.c1852", + "web_page_access_date": "2022/08/23/, 10:17:53", + "Product Name": "NVIDIA GeForce 320M", + "General Specs": { + "Graphics Processor": "C89", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "C89", + "GPU Variant": "MCP89-EPT", + "Architecture": "Tesla 2.0", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "91.20 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-320m-mac-edition.c2333", + "web_page_access_date": "2022/08/23/, 10:19:55", + "Product Name": "NVIDIA GeForce 320M Mac Edition", + "General Specs": { + "Graphics Processor": "C89", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "C89", + "GPU Variant": "MCP89", + "Architecture": "Tesla 2.0", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "91.20 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-405-oem.c2106", + "web_page_access_date": "2022/08/23/, 10:21:57", + "Product Name": "NVIDIA GeForce 405 OEM", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-300-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "44.86 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P872" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-405-oem.c604", + "web_page_access_date": "2022/08/23/, 10:23:58", + "Product Name": "NVIDIA GeForce 405 OEM", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.800 GPixel/s", + "Texture Rate": "7.600 GTexel/s", + "FP32 (float) performance": "105.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-405-oem.c3759", + "web_page_access_date": "2022/08/23/, 10:26:00", + "Product Name": "NVIDIA GeForce 405 OEM", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "24", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Memory Bus": "128 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "24", + "TMUs": "12", + "ROPs": "8", + "SM Count": "3", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.800 GPixel/s", + "Texture Rate": "5.700 GTexel/s", + "FP32 (float) performance": "52.80 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-8400-gs-rev-3.c1993", + "web_page_access_date": "2022/08/23/, 10:28:02", + "Product Name": "NVIDIA GeForce 8400 GS Rev. 3", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "8", + "TMUs": "4", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "8400GS-225-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 12th, 2010", + "Generation": "GeForce 8\n(8400)", + "Predecessor": "GeForce 7 PCIe", + "Successor": "GeForce 9", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "520 MHz", + "Shader Clock": "1230 MHz", + "Memory Clock": "400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t800 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Memory Bus": "64 bit", + "Bandwidth": "6.400 GB/s" + }, + "Render Config": { + "Shading Units": "8", + "TMUs": "4", + "ROPs": "4", + "SM Count": "1", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.080 GPixel/s", + "Texture Rate": "2.080 GTexel/s", + "FP32 (float) performance": "19.68 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x VGA1x S-Video", + "Power Connectors": "None", + "Board Number": "P873" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-9500-gt-mac-edition.c2330", + "web_page_access_date": "2022/08/23/, 10:30:03", + "Product Name": "NVIDIA GeForce 9500 GT Mac Edition", + "General Specs": { + "Graphics Processor": "G96C", + "Cores": "32", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "G96C", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "55 nm", + "Transistors": "314 million", + "Die Size": "121 mm²" + }, + "Graphics Card": { + "Release Date": "May 19th, 2010", + "Generation": "GeForce 9\n(9500)", + "Predecessor": "GeForce 8", + "Successor": "GeForce 200", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "22 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "32", + "TMUs": "16", + "ROPs": "8", + "SM Count": "4", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "89.60 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x S-Video", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-220.c2246", + "web_page_access_date": "2022/08/23/, 10:32:05", + "Product Name": "NVIDIA GeForce GT 220", + "General Specs": { + "Graphics Processor": "G94", + "Cores": "48", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "G94", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "65 nm", + "Transistors": "505 million", + "Die Size": "240 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 26th, 2010", + "Generation": "GeForce 200", + "Predecessor": "GeForce 9", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "27 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Shader Clock": "1500 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "22.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "24", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "144.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "58 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI1x VGA" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-240m-le.c2303", + "web_page_access_date": "2022/08/23/, 10:34:07", + "Product Name": "NVIDIA GeForce GT 240M LE", + "General Specs": { + "Graphics Processor": "G96C", + "Cores": "32", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "G96C", + "GPU Variant": "N10P-GE1", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "55 nm", + "Transistors": "314 million", + "Die Size": "121 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 15th, 2010", + "Generation": "GeForce 200M", + "Predecessor": "GeForce 100M", + "Successor": "GeForce 300M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Shader Clock": "1500 MHz", + "Memory Clock": "400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t800 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Memory Bus": "128 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "32", + "TMUs": "16", + "ROPs": "8", + "SM Count": "4", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-320-oem.c294", + "web_page_access_date": "2022/08/23/, 10:36:08", + "Product Name": "NVIDIA GeForce GT 320 OEM", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "72", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "GT215-250-A2", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 2nd, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "540 MHz", + "Shader Clock": "1302 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.28 GB/s" + }, + "Render Config": { + "Shading Units": "72", + "TMUs": "24", + "ROPs": "8", + "SM Count": "9", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.320 GPixel/s", + "Texture Rate": "12.96 GTexel/s", + "FP32 (float) performance": "187.5 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "175 mm\n\t\t\t\t\t6.9 inches", + "TDP": "43 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P684" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-320m.c2272", + "web_page_access_date": "2022/08/23/, 10:38:10", + "Product Name": "NVIDIA GeForce GT 320M", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "24", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 3rd, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.28 GB/s" + }, + "Render Config": { + "Shading Units": "24", + "TMUs": "8", + "ROPs": "8", + "SM Count": "3", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "52.80 GFLOPS" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-325m.c1504", + "web_page_access_date": "2022/08/23/, 10:40:12", + "Product Name": "NVIDIA GeForce GT 325M", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "N11P-GV1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "990 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "22.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "95.04 GFLOPS" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-330-oem.c3314", + "web_page_access_date": "2022/08/23/, 10:42:14", + "Product Name": "NVIDIA GeForce GT 330 OEM", + "General Specs": { + "Graphics Processor": "G92", + "Cores": "96", + "TMUs": "48", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "G92", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "65 nm", + "Transistors": "754 million", + "Die Size": "324 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 2nd, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "256 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "48", + "ROPs": "8", + "SM Count": "12", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "175 mm\n\t\t\t\t\t6.9 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-330-oem.c1758", + "web_page_access_date": "2022/08/23/, 10:44:16", + "Product Name": "NVIDIA GeForce GT 330 OEM", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "96", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "GT215-301-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 2nd, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1340 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "32", + "ROPs": "8", + "SM Count": "12", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "17.60 GTexel/s", + "FP32 (float) performance": "257.3 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "175 mm\n\t\t\t\t\t6.9 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-330-oem.c1757", + "web_page_access_date": "2022/08/23/, 10:46:17", + "Product Name": "NVIDIA GeForce GT 330 OEM", + "General Specs": { + "Graphics Processor": "G92B", + "Cores": "96", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "G92B", + "GPU Variant": "G92-168-B1", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "55 nm", + "Transistors": "754 million", + "Die Size": "260 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 2nd, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "510 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1020 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Memory Bus": "128 bit", + "Bandwidth": "16.32 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "48", + "ROPs": "16", + "SM Count": "12", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "175 mm\n\t\t\t\t\t6.9 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P360, P363" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + }, + "Card Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-330m.c1505", + "web_page_access_date": "2022/08/23/, 10:48:19", + "Product Name": "NVIDIA GeForce GT 330M", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "N11P-GE1-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Shader Clock": "1265 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.600 GPixel/s", + "Texture Rate": "9.200 GTexel/s", + "FP32 (float) performance": "121.4 GFLOPS" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-330m-mac-edition.c2273", + "web_page_access_date": "2022/08/23/, 10:50:21", + "Product Name": "NVIDIA GeForce GT 330M Mac Edition", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "N11P-GE1-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 26th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.28 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "8.000 GTexel/s", + "FP32 (float) performance": "105.6 GFLOPS" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-335m.c1506", + "web_page_access_date": "2022/08/23/, 10:52:22", + "Product Name": "NVIDIA GeForce GT 335M", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "72", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "N11P-GS1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "1080 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "72", + "TMUs": "24", + "ROPs": "8", + "SM Count": "9", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS" + }, + "Board Design": { + "TDP": "28 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-340-oem.c293", + "web_page_access_date": "2022/08/23/, 10:54:24", + "Product Name": "NVIDIA GeForce GT 340 OEM", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "96", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "GT215-301-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 2nd, 2010", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1340 MHz", + "Memory Clock": "850 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1700 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "27.20 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "32", + "ROPs": "8", + "SM Count": "12", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "17.60 GTexel/s", + "FP32 (float) performance": "257.3 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "69 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P672" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-415-oem.c2105", + "web_page_access_date": "2022/08/23/, 10:56:26", + "Product Name": "NVIDIA GeForce GT 415 OEM", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "GT216-305-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1360 MHz", + "Memory Clock": "333 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t666 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "10.66 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.000 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "130.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "32 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P681" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-415m.c1496", + "web_page_access_date": "2022/08/23/, 10:58:27", + "Product Name": "NVIDIA GeForce GT 415M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N11P-GV", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1000 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS", + "FP64 (double) performance": "8.000 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-420-oem.c259", + "web_page_access_date": "2022/08/23/, 11:00:29", + "Product Name": "NVIDIA GeForce GT 420 OEM", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "4", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-200-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "4", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.400 GPixel/s", + "Texture Rate": "2.800 GTexel/s", + "FP32 (float) performance": "134.4 GFLOPS", + "FP64 (double) performance": "11.20 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-420m.c1497", + "web_page_access_date": "2022/08/23/, 11:02:31", + "Product Name": "NVIDIA GeForce GT 420M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N11P-GE-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1000 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "8.000 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS", + "FP64 (double) performance": "16.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-425m.c1498", + "web_page_access_date": "2022/08/23/, 11:04:33", + "Product Name": "NVIDIA GeForce GT 425M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N11P-GS-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "560 MHz", + "Shader Clock": "1120 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.240 GPixel/s", + "Texture Rate": "8.960 GTexel/s", + "FP32 (float) performance": "215.0 GFLOPS", + "FP64 (double) performance": "17.92 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-430.c603", + "web_page_access_date": "2022/08/23/, 11:06:34", + "Product Name": "NVIDIA GeForce GT 430", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-300-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "33 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-430-oem.c1957", + "web_page_access_date": "2022/08/23/, 11:08:36", + "Product Name": "NVIDIA GeForce GT 430 OEM", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "33 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-430-pci.c3327", + "web_page_access_date": "2022/08/23/, 11:10:38", + "Product Name": "NVIDIA GeForce GT 430 PCI", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-300-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "33 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-435m.c1499", + "web_page_access_date": "2022/08/23/, 11:12:40", + "Product Name": "NVIDIA GeForce GT 435M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N11P-GT", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Shader Clock": "1300 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "10.40 GTexel/s", + "FP32 (float) performance": "249.6 GFLOPS", + "FP64 (double) performance": "20.80 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-440-oem.c261", + "web_page_access_date": "2022/08/23/, 11:14:41", + "Product Name": "NVIDIA GeForce GT 440 OEM", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "5 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Memory Bus": "192 bit", + "Bandwidth": "43.20 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "24", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.860 GPixel/s", + "Texture Rate": "19.44 GTexel/s", + "FP32 (float) performance": "466.6 GFLOPS", + "FP64 (double) performance": "38.88 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1062" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-445m.c1500", + "web_page_access_date": "2022/08/23/, 11:16:43", + "Product Name": "NVIDIA GeForce GT 445M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N11E-GE-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "570 MHz", + "Shader Clock": "1140 MHz", + "Memory Clock": "625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "40.00 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.420 GPixel/s", + "Texture Rate": "13.68 GTexel/s", + "FP32 (float) performance": "328.3 GFLOPS", + "FP64 (double) performance": "27.36 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-445m.c1501", + "web_page_access_date": "2022/08/23/, 11:18:45", + "Product Name": "NVIDIA GeForce GT 445M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "DDR3", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N11E-GE-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "590 MHz", + "Shader Clock": "1180 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "DDR3", + "Memory Bus": "192 bit", + "Bandwidth": "38.40 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "24", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.540 GPixel/s", + "Texture Rate": "14.16 GTexel/s", + "FP32 (float) performance": "339.8 GFLOPS", + "FP64 (double) performance": "28.32 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-350m.c1314", + "web_page_access_date": "2022/08/23/, 11:20:47", + "Product Name": "NVIDIA GeForce GTS 350M", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "96", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "N11E-GE1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "32", + "ROPs": "8", + "SM Count": "12", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "28 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-360m.c939", + "web_page_access_date": "2022/08/23/, 11:22:49", + "Product Name": "NVIDIA GeForce GTS 360M", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "96", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "N11E-GS1-A3", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1436 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "32", + "ROPs": "8", + "SM Count": "12", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "17.60 GTexel/s", + "FP32 (float) performance": "275.7 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "38 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P688" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-450.c1778", + "web_page_access_date": "2022/08/23/, 11:24:50", + "Product Name": "NVIDIA GeForce GTS 450", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "192", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "GF106-250-KA-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "129 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "783 MHz", + "Shader Clock": "1566 MHz", + "Memory Clock": "902 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.73 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.264 GPixel/s", + "Texture Rate": "25.06 GTexel/s", + "FP32 (float) performance": "601.3 GFLOPS", + "FP64 (double) performance": "50.11 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "106 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1060" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-450-oem.c3011", + "web_page_access_date": "2022/08/23/, 11:26:52", + "Product Name": "NVIDIA GeForce GTS 450 OEM", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "129 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "783 MHz", + "Shader Clock": "1566 MHz", + "Memory Clock": "902 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.73 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.698 GPixel/s", + "Texture Rate": "18.79 GTexel/s", + "FP32 (float) performance": "451.0 GFLOPS", + "FP64 (double) performance": "37.58 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "106 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x DisplayPort1x VGA", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-450-oem.c599", + "web_page_access_date": "2022/08/23/, 11:28:54", + "Product Name": "NVIDIA GeForce GTS 450 OEM", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "GF106-250-KB-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "790 MHz", + "Shader Clock": "1580 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "24", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.740 GPixel/s", + "Texture Rate": "18.96 GTexel/s", + "FP32 (float) performance": "455.0 GFLOPS", + "FP64 (double) performance": "37.92 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "106 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1060" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-275-physx-edition.c1951", + "web_page_access_date": "2022/08/23/, 11:30:56", + "Product Name": "NVIDIA GeForce GTX 275 PhysX Edition", + "General Specs": { + "Graphics Processor": "GT200B", + "Cores": "240", + "TMUs": "80", + "ROPs": "28", + "Memory Size": "896 MB", + "Memory Type": "GDDR3", + "Bus Width": "448 bit" + }, + "Graphics Processor": { + "GPU Name": "G92B", + "GPU Variant": "G92-421-B1", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "55 nm", + "Transistors": "754 million", + "Die Size": "260 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 16th, 2010", + "Generation": "GeForce 200", + "Predecessor": "GeForce 9", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "61 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "633 MHz", + "Shader Clock": "1296 MHz", + "Memory Clock": "1134 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.3 Gbps effective" + }, + "Memory": { + "Memory Size": "896 MB", + "Memory Type": "GDDR3", + "Memory Bus": "448 bit", + "Bandwidth": "127.0 GB/s" + }, + "Render Config": { + "Shading Units": "240", + "TMUs": "80", + "ROPs": "28", + "SM Count": "30", + "L2 Cache": "224 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.72 GPixel/s", + "Texture Rate": "50.64 GTexel/s", + "FP32 (float) performance": "622.1 GFLOPS", + "FP64 (double) performance": "77.76 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "219 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.3", + "Shader Model": "4.0" + }, + "Card Notes": {}, + "GT200B GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-285m.c391", + "web_page_access_date": "2022/08/23/, 11:32:57", + "Product Name": "NVIDIA GeForce GTX 285M", + "General Specs": { + "Graphics Processor": "G92", + "Cores": "128", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "G92", + "GPU Variant": "N10E-GTX1-B1", + "Architecture": "Tesla", + "Foundry": "TSMC", + "Process Size": "65 nm", + "Transistors": "754 million", + "Die Size": "324 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 1st, 2010", + "Generation": "GeForce 200M", + "Predecessor": "GeForce 100M", + "Successor": "GeForce 300M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Shader Clock": "1500 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "256 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "64", + "ROPs": "16", + "SM Count": "16", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP32 (float) performance": "384.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_0)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.1", + "Shader Model": "4.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460.c2125", + "web_page_access_date": "2022/08/23/, 11:34:59", + "Product Name": "NVIDIA GeForce GTX 460", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "336", + "TMUs": "56", + "ROPs": "24", + "Memory Size": "768 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "GF104-300-KB-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 12th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "768 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "86.40 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "24", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.450 GPixel/s", + "Texture Rate": "37.80 GTexel/s", + "FP32 (float) performance": "907.2 GFLOPS", + "FP64 (double) performance": "75.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460.c265", + "web_page_access_date": "2022/08/23/, 11:37:01", + "Product Name": "NVIDIA GeForce GTX 460", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "336", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "GF104-325-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 12th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.450 GPixel/s", + "Texture Rate": "37.80 GTexel/s", + "FP32 (float) performance": "907.2 GFLOPS", + "FP64 (double) performance": "75.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (23)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-oem.c1723", + "web_page_access_date": "2022/08/23/, 11:39:03", + "Product Name": "NVIDIA GeForce GTX 460 OEM", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "336", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "GF104-325-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 11th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Shader Clock": "1300 MHz", + "Memory Clock": "850 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "108.8 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.100 GPixel/s", + "Texture Rate": "36.40 GTexel/s", + "FP32 (float) performance": "873.6 GFLOPS", + "FP64 (double) performance": "72.80 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-se.c357", + "web_page_access_date": "2022/08/23/, 11:41:05", + "Product Name": "NVIDIA GeForce GTX 460 SE", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "288", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "GF104-225-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 15th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "160 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Shader Clock": "1300 MHz", + "Memory Clock": "850 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "108.8 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "32", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.800 GPixel/s", + "Texture Rate": "31.20 GTexel/s", + "FP32 (float) performance": "748.8 GFLOPS", + "FP64 (double) performance": "62.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-se-v2.c1873", + "web_page_access_date": "2022/08/23/, 11:43:07", + "Product Name": "NVIDIA GeForce GTX 460 SE v2", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "288", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "768 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 15th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Shader Clock": "1300 MHz", + "Memory Clock": "850 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "768 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "81.60 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.800 GPixel/s", + "Texture Rate": "31.20 GTexel/s", + "FP32 (float) performance": "748.8 GFLOPS", + "FP64 (double) performance": "62.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460m.c1502", + "web_page_access_date": "2022/08/23/, 11:45:09", + "Product Name": "NVIDIA GeForce GTX 460M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "192", + "TMUs": "32", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N11E-GS-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "60.00 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "24", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.400 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "518.4 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-465.c266", + "web_page_access_date": "2022/08/23/, 11:47:11", + "Product Name": "NVIDIA GeForce GTX 465", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "352", + "TMUs": "44", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-030-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "May 31st, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "279 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "37 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "802 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.7 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "32", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.38 GPixel/s", + "Texture Rate": "26.75 GTexel/s", + "FP32 (float) performance": "855.4 GFLOPS", + "FP64 (double) performance": "106.9 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1025" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-470.c267", + "web_page_access_date": "2022/08/23/, 11:49:12", + "Product Name": "NVIDIA GeForce GTX 470", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-275-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 26th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "349 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "837 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.3 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "133.9 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "40", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.02 GPixel/s", + "Texture Rate": "34.05 GTexel/s", + "FP32 (float) performance": "1,089 GFLOPS", + "FP64 (double) performance": "136.1 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "215 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1045" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-470-physx-edition.c1952", + "web_page_access_date": "2022/08/23/, 11:51:14", + "Product Name": "NVIDIA GeForce GTX 470 PhysX Edition", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "GT215-400-A2", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "837 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.3 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "133.9 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "40", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.02 GPixel/s", + "Texture Rate": "34.05 GTexel/s", + "FP32 (float) performance": "1,089 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "215 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GF100 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-470-x2.c3000", + "web_page_access_date": "2022/08/23/, 11:53:16", + "Product Name": "NVIDIA GeForce GTX 470 X2", + "General Specs": { + "Graphics Processor": "GF100 x2", + "Cores": "352 x2", + "TMUs": "44 x2", + "ROPs": "32 x2", + "Memory Size": "1024 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-030-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "837 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.3 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "107.1 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "32", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.38 GPixel/s", + "Texture Rate": "26.75 GTexel/s", + "FP32 (float) performance": "855.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "215 W", + "Suggested PSU": "550 W", + "Outputs": "3x DVI", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-470m.c1503", + "web_page_access_date": "2022/08/23/, 11:55:18", + "Product Name": "NVIDIA GeForce GTX 470M", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "288", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "N11E-GT", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 3rd, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "535 MHz", + "Shader Clock": "1070 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.420 GPixel/s", + "Texture Rate": "25.68 GTexel/s", + "FP32 (float) performance": "616.3 GFLOPS", + "FP64 (double) performance": "51.36 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P1044" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-480.c268", + "web_page_access_date": "2022/08/23/, 11:57:20", + "Product Name": "NVIDIA GeForce GTX 480", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "480", + "TMUs": "60", + "ROPs": "48", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-375-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 26th, 2010", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "84 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "701 MHz", + "Shader Clock": "1401 MHz", + "Memory Clock": "924 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.7 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "177.4 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "60", + "ROPs": "48", + "SM Count": "15", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.03 GPixel/s", + "Texture Rate": "42.06 GTexel/s", + "FP32 (float) performance": "1,345 GFLOPS", + "FP64 (double) performance": "168.1 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1022" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {}, + "Retail boards based on this design (16)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-480m.c944", + "web_page_access_date": "2022/08/23/, 11:59:22", + "Product Name": "NVIDIA GeForce GTX 480M", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "352", + "TMUs": "44", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "N11E-GTX-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 25th, 2010", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "3 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "425 MHz", + "Shader Clock": "850 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "76.80 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "32", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.350 GPixel/s", + "Texture Rate": "18.70 GTexel/s", + "FP32 (float) performance": "598.4 GFLOPS", + "FP64 (double) performance": "74.80 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P1028" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-570.c269", + "web_page_access_date": "2022/08/23/, 12:01:24", + "Product Name": "NVIDIA GeForce GTX 570", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "480", + "TMUs": "60", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-275-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 7th, 2010", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "349 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "76 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Shader Clock": "1464 MHz", + "Memory Clock": "950 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "152.0 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "60", + "ROPs": "40", + "SM Count": "15", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.96 GPixel/s", + "Texture Rate": "43.92 GTexel/s", + "FP32 (float) performance": "1,405 GFLOPS", + "FP64 (double) performance": "175.7 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "219 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1263" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {}, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-570-rev-2.c3189", + "web_page_access_date": "2022/08/23/, 12:03:27", + "Product Name": "NVIDIA GeForce GTX 570 Rev. 2", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "480", + "TMUs": "60", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-275-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 7th, 2010", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "349 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "76 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Shader Clock": "1464 MHz", + "Memory Clock": "950 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "152.0 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "60", + "ROPs": "40", + "SM Count": "15", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.96 GPixel/s", + "Texture Rate": "43.92 GTexel/s", + "FP32 (float) performance": "1,405 GFLOPS", + "FP64 (double) performance": "175.7 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "219 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort", + "Power Connectors": "2x 6-pin", + "Board Number": "P1263" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {}, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-580.c270", + "web_page_access_date": "2022/08/23/, 12:05:28", + "Product Name": "NVIDIA GeForce GTX 580", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-375-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 9th, 2010", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "136 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "772 MHz", + "Shader Clock": "1544 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "192.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.70 GPixel/s", + "Texture Rate": "49.41 GTexel/s", + "FP32 (float) performance": "1.581 TFLOPS", + "FP64 (double) performance": "197.6 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "244 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1261 SKU 02" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {}, + "Retail boards based on this design (43)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-2100m.c1469", + "web_page_access_date": "2022/08/23/, 12:07:31", + "Product Name": "NVIDIA NVS 2100M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "NVS Mobile\n(x100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "535 MHz", + "Shader Clock": "1230 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.140 GPixel/s", + "Texture Rate": "4.280 GTexel/s", + "FP32 (float) performance": "39.36 GFLOPS" + }, + "Board Design": { + "TDP": "11 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-3100m.c1468", + "web_page_access_date": "2022/08/23/, 12:09:33", + "Product Name": "NVIDIA NVS 3100M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N10M-NS", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "NVS Mobile\n(x100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "606 MHz", + "Shader Clock": "1468 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.424 GPixel/s", + "Texture Rate": "4.848 GTexel/s", + "FP32 (float) performance": "46.98 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-5100m.c1466", + "web_page_access_date": "2022/08/23/, 12:11:35", + "Product Name": "NVIDIA NVS 5100M", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "N10P-NS", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "NVS Mobile\n(x100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1210 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "116.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-2000.c900", + "web_page_access_date": "2022/08/23/, 12:13:37", + "Product Name": "NVIDIA Quadro 2000", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "192", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "GF106-875-KA-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 24th, 2010", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "41.60 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.000 GPixel/s", + "Texture Rate": "20.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS", + "FP64 (double) performance": "40.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "178 mm\n\t\t\t\t\t7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "62 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort", + "Power Connectors": "None", + "Board Number": "P1232" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-4000.c898", + "web_page_access_date": "2022/08/23/, 12:15:39", + "Product Name": "NVIDIA Quadro 4000", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "256", + "TMUs": "32", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-825-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 2nd, 2010", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "702 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "89.86 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "32", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "15.20 GTexel/s", + "FP32 (float) performance": "486.4 GFLOPS", + "FP64 (double) performance": "243.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "142 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI2x DisplayPort", + "Power Connectors": "1x 6-pin", + "Board Number": "P1031" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-5000m.c1396", + "web_page_access_date": "2022/08/23/, 12:17:41", + "Product Name": "NVIDIA Quadro 5000M", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "320", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "1792 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "N10E-GLM5-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 27th, 2010", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "405 MHz", + "Shader Clock": "810 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1792 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "76.80 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "40", + "ROPs": "32", + "SM Count": "10", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.100 GPixel/s", + "Texture Rate": "16.20 GTexel/s", + "FP32 (float) performance": "518.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-600.c1318", + "web_page_access_date": "2022/08/23/, 12:19:43", + "Product Name": "NVIDIA Quadro 600", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 13th, 2010", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "179 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "640 MHz", + "Shader Clock": "1280 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.560 GPixel/s", + "Texture Rate": "10.24 GTexel/s", + "FP32 (float) performance": "245.8 GFLOPS", + "FP64 (double) performance": "20.48 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "40 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort", + "Power Connectors": "None", + "Board Number": "P1033" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-6000.c896", + "web_page_access_date": "2022/08/23/, 12:21:45", + "Product Name": "NVIDIA Quadro 6000", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-850-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 10th, 2010", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "4,399 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "747 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "143.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "204 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI2x DisplayPort1x S-Video", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-fx-380m.c1395", + "web_page_access_date": "2022/08/23/, 12:23:47", + "Product Name": "NVIDIA Quadro FX 380M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N10M-GLM", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "Quadro FX Mobile\n(x800M)", + "Successor": "Quadro Mobile", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "606 MHz", + "Shader Clock": "1468 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.424 GPixel/s", + "Texture Rate": "4.848 GTexel/s", + "FP32 (float) performance": "46.98 GFLOPS" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-fx-880m.c1394", + "web_page_access_date": "2022/08/23/, 12:25:49", + "Product Name": "NVIDIA Quadro FX 880M", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "N10P-GLM", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2010", + "Generation": "Quadro FX Mobile\n(x800M)", + "Successor": "Quadro Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1210 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.28 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "116.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tegra-2-gpu.c3225", + "web_page_access_date": "2022/08/23/, 12:27:51", + "Product Name": "NVIDIA Tegra 2 GPU", + "General Specs": { + "Graphics Processor": "Tegra 2", + "Pixel Shaders": "4", + "Vertex Shaders": "4", + "TMUs": "4", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Tegra 2", + "GPU Variant": "T20MGS-SHP-A3", + "Architecture": "VLIW Vec4", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jun 3rd, 2010", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Pixel Shaders": "4", + "Vertex Shaders": "4", + "TMUs": "4", + "ROPs": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "1.600 GPixel/s", + "Vertex Rate": "300.0 MVertices/s", + "Texture Rate": "1.600 GTexel/s" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 2.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "N/A", + "Vertex Shader": "N/A" + }, + "Tegra 2 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-315-oem.c2271", + "web_page_access_date": "2022/08/23/, 12:29:53", + "Product Name": "NVIDIA GeForce 315 OEM", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-300-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 22nd, 2011", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "44.86 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "33 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P872" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-315m.c1483", + "web_page_access_date": "2022/08/23/, 13:39:40", + "Product Name": "NVIDIA GeForce 315M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "N11M-GE", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 300M", + "Predecessor": "GeForce 200M", + "Successor": "GeForce 400M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "606 MHz", + "Shader Clock": "1212 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.424 GPixel/s", + "Texture Rate": "4.848 GTexel/s", + "FP32 (float) performance": "38.78 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-405m.c1484", + "web_page_access_date": "2022/08/23/, 13:41:42", + "Product Name": "NVIDIA GeForce 405M", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "606 MHz", + "Shader Clock": "1212 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.424 GPixel/s", + "Texture Rate": "4.848 GTexel/s", + "FP32 (float) performance": "38.78 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-410m.c1485", + "web_page_access_date": "2022/08/23/, 13:43:44", + "Product Name": "NVIDIA GeForce 410M", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N12M-GS", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.148 GPixel/s", + "Texture Rate": "4.592 GTexel/s", + "FP32 (float) performance": "110.1 GFLOPS", + "FP64 (double) performance": "9.176 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-510-oem.c360", + "web_page_access_date": "2022/08/23/, 13:45:46", + "Product Name": "NVIDIA GeForce 510 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 29th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "523 MHz", + "Shader Clock": "1046 MHz", + "Memory Clock": "898 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1796 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.37 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.046 GPixel/s", + "Texture Rate": "4.184 GTexel/s", + "FP32 (float) performance": "100.4 GFLOPS", + "FP64 (double) performance": "8.368 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-315-oem.c2107", + "web_page_access_date": "2022/08/23/, 13:48:56", + "Product Name": "NVIDIA GeForce 315 OEM", + "General Specs": { + "Graphics Processor": "GT215", + "Cores": "48", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT215", + "GPU Variant": "GT215-450-A2", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "727 million", + "Die Size": "144 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 28th, 2011", + "Generation": "GeForce 300", + "Predecessor": "GeForce 200", + "Successor": "GeForce 400", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "506 MHz", + "Shader Clock": "1012 MHz", + "Memory Clock": "350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t700 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Memory Bus": "64 bit", + "Bandwidth": "5.600 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "4", + "SM Count": "6", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.024 GPixel/s", + "Texture Rate": "8.096 GTexel/s", + "FP32 (float) performance": "97.15 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "33 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P680" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-610.c2380", + "web_page_access_date": "2022/08/23/, 13:50:58", + "Product Name": "NVIDIA GeForce 610", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N13M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 1st, 2011", + "Generation": "GeForce 600A", + "Successor": "GeForce 700A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-610m.c2113", + "web_page_access_date": "2022/08/23/, 13:52:59", + "Product Name": "NVIDIA GeForce 610M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "2", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 1st, 2011", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "672 MHz", + "Shader Clock": "1344 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "2", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.344 GPixel/s", + "Texture Rate": "5.376 GTexel/s", + "FP32 (float) performance": "129.0 GFLOPS", + "FP64 (double) performance": "10.75 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-610m.c2112", + "web_page_access_date": "2022/08/23/, 13:55:01", + "Product Name": "NVIDIA GeForce 610M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "48", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL-B-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 1st, 2011", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "8", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.000 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "120.0 GFLOPS", + "FP64 (double) performance": "10.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-610m.c355", + "web_page_access_date": "2022/08/23/, 13:57:03", + "Product Name": "NVIDIA GeForce 610M", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N13M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 1st, 2011", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-9300-gs-rev-2.c2022", + "web_page_access_date": "2022/08/23/, 13:59:04", + "Product Name": "NVIDIA GeForce 9300 GS Rev. 2", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-670-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 12th, 2011", + "Generation": "GeForce 9\n(9300)", + "Predecessor": "GeForce 8", + "Successor": "GeForce 200", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "333 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t666 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "DDR2", + "Memory Bus": "64 bit", + "Bandwidth": "5.328 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "44.86 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "unknown", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P691, P872, P874" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-435m.c2337", + "web_page_access_date": "2022/08/23/, 14:01:06", + "Product Name": "NVIDIA GeForce GT 435M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "96", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N11E-GE-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 15th, 2011", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "590 MHz", + "Shader Clock": "1180 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.360 GPixel/s", + "Texture Rate": "9.440 GTexel/s", + "FP32 (float) performance": "226.6 GFLOPS", + "FP64 (double) performance": "18.88 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-440.c600", + "web_page_access_date": "2022/08/23/, 14:03:08", + "Product Name": "NVIDIA GeForce GT 440", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "5 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.240 GPixel/s", + "Texture Rate": "12.96 GTexel/s", + "FP32 (float) performance": "311.0 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-440-mac-edition.c2256", + "web_page_access_date": "2022/08/23/, 14:05:10", + "Product Name": "NVIDIA GeForce GT 440 Mac Edition", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 9th, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 1.0 x16", + "Reviews": "5 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "21.34 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.240 GPixel/s", + "Texture Rate": "12.96 GTexel/s", + "FP32 (float) performance": "311.0 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520.c285", + "web_page_access_date": "2022/08/23/, 14:07:12", + "Product Name": "NVIDIA GeForce GT 520", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 13th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "59 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520-pci.c913", + "web_page_access_date": "2022/08/23/, 14:09:14", + "Product Name": "NVIDIA GeForce GT 520 PCI", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 13th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCI" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520-pcie-x1.c912", + "web_page_access_date": "2022/08/23/, 14:11:16", + "Product Name": "NVIDIA GeForce GT 520 PCIe x1", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 13th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x1" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "152 mm\n\t\t\t\t\t6 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520m.c1488", + "web_page_access_date": "2022/08/23/, 14:13:18", + "Product Name": "NVIDIA GeForce GT 520M", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N12P-GV-B-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "740 MHz", + "Shader Clock": "1480 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.480 GPixel/s", + "Texture Rate": "5.920 GTexel/s", + "FP32 (float) performance": "142.1 GFLOPS", + "FP64 (double) performance": "11.84 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520m.c1844", + "web_page_access_date": "2022/08/23/, 14:15:20", + "Product Name": "NVIDIA GeForce GT 520M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-GV2-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "672 MHz", + "Shader Clock": "1344 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.344 GPixel/s", + "Texture Rate": "5.376 GTexel/s", + "FP32 (float) performance": "129.0 GFLOPS", + "FP64 (double) performance": "10.75 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "12 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520mx.c1489", + "web_page_access_date": "2022/08/23/, 14:17:22", + "Product Name": "NVIDIA GeForce GT 520MX", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N12P-GVR-B-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 30th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Shader Clock": "1800 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "172.8 GFLOPS", + "FP64 (double) performance": "14.40 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-525m.c1490", + "web_page_access_date": "2022/08/23/, 14:19:24", + "Product Name": "NVIDIA GeForce GT 525M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-GE-OP-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Shader Clock": "1200 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP32 (float) performance": "230.4 GFLOPS", + "FP64 (double) performance": "19.20 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "23 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-530-oem.c630", + "web_page_access_date": "2022/08/23/, 14:21:26", + "Product Name": "NVIDIA GeForce GT 530 OEM", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-200-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-540m.c702", + "web_page_access_date": "2022/08/23/, 14:23:27", + "Product Name": "NVIDIA GeForce GT 540M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-GS-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "672 MHz", + "Shader Clock": "1344 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.688 GPixel/s", + "Texture Rate": "10.75 GTexel/s", + "FP32 (float) performance": "258.0 GFLOPS", + "FP64 (double) performance": "21.50 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-545.c627", + "web_page_access_date": "2022/08/23/, 14:25:29", + "Product Name": "NVIDIA GeForce GT 545", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "720 MHz", + "Shader Clock": "1440 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Memory Bus": "192 bit", + "Bandwidth": "38.40 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.320 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP32 (float) performance": "414.7 GFLOPS", + "FP64 (double) performance": "34.56 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "70 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1062" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-545-oem.c626", + "web_page_access_date": "2022/08/23/, 14:27:31", + "Product Name": "NVIDIA GeForce GT 545 OEM", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "GF116-110-KA-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "871 MHz", + "Shader Clock": "1741 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.226 GPixel/s", + "Texture Rate": "20.90 GTexel/s", + "FP32 (float) performance": "501.4 GFLOPS", + "FP64 (double) performance": "41.78 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "105 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1050 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-550m.c1491", + "web_page_access_date": "2022/08/23/, 14:29:33", + "Product Name": "NVIDIA GeForce GT 550M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-GT1-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "740 MHz", + "Shader Clock": "1480 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.960 GPixel/s", + "Texture Rate": "11.84 GTexel/s", + "FP32 (float) performance": "284.2 GFLOPS", + "FP64 (double) performance": "23.68 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-555m.c1494", + "web_page_access_date": "2022/08/23/, 14:31:35", + "Product Name": "NVIDIA GeForce GT 555M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N12E-GE-B-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 27th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "525 MHz", + "Shader Clock": "1050 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "12.60 GTexel/s", + "FP32 (float) performance": "302.4 GFLOPS", + "FP64 (double) performance": "25.20 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-555m.c1492", + "web_page_access_date": "2022/08/23/, 14:33:36", + "Product Name": "NVIDIA GeForce GT 555M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 15th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "753 MHz", + "Shader Clock": "1506 MHz", + "Memory Clock": "784 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "50.18 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.012 GPixel/s", + "Texture Rate": "12.05 GTexel/s", + "FP32 (float) performance": "289.2 GFLOPS", + "FP64 (double) performance": "24.10 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-555m.c1493", + "web_page_access_date": "2022/08/23/, 14:35:38", + "Product Name": "NVIDIA GeForce GT 555M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 24th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "590 MHz", + "Shader Clock": "1180 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Memory Bus": "192 bit", + "Bandwidth": "43.20 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "24", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.540 GPixel/s", + "Texture Rate": "14.16 GTexel/s", + "FP32 (float) performance": "339.8 GFLOPS", + "FP64 (double) performance": "28.32 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-555m.c2225", + "web_page_access_date": "2022/08/23/, 14:37:40", + "Product Name": "NVIDIA GeForce GT 555M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 2nd, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "590 MHz", + "Shader Clock": "1180 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.540 GPixel/s", + "Texture Rate": "14.16 GTexel/s", + "FP32 (float) performance": "339.8 GFLOPS", + "FP64 (double) performance": "28.32 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-450-rev-2.c595", + "web_page_access_date": "2022/08/23/, 14:39:42", + "Product Name": "NVIDIA GeForce GTS 450 Rev. 2", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "192", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "GF116-200-KA-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 15th, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "783 MHz", + "Shader Clock": "1566 MHz", + "Memory Clock": "902 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.73 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.264 GPixel/s", + "Texture Rate": "25.06 GTexel/s", + "FP32 (float) performance": "601.3 GFLOPS", + "FP64 (double) performance": "50.11 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "106 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1060, P1062" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-x2.c1928", + "web_page_access_date": "2022/08/23/, 14:41:43", + "Product Name": "NVIDIA GeForce GTX 460 X2", + "General Specs": { + "Graphics Processor": "GF104 x2", + "Cores": "336 x2", + "TMUs": "56 x2", + "ROPs": "32 x2", + "Memory Size": "1024 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "GF104-300-KB-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 11th, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "701 MHz", + "Shader Clock": "1401 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.814 GPixel/s", + "Texture Rate": "39.26 GTexel/s", + "FP32 (float) performance": "941.5 GFLOPS", + "FP64 (double) performance": "78.46 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "292 mm\n\t\t\t\t\t11.5 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "3x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 8-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-v2.c356", + "web_page_access_date": "2022/08/23/, 14:43:45", + "Product Name": "NVIDIA GeForce GTX 460 v2", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "336", + "TMUs": "56", + "ROPs": "24", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 24th, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "779 MHz", + "Shader Clock": "1557 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "96.19 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "24", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.91 GPixel/s", + "Texture Rate": "43.62 GTexel/s", + "FP32 (float) performance": "1,046 GFLOPS", + "FP64 (double) performance": "87.19 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041 SKU 60" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-460-v2-es.c3359", + "web_page_access_date": "2022/08/23/, 14:45:47", + "Product Name": "NVIDIA GeForce GTX 460 v2 ES", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "336", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 24th, 2011", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "154 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "779 MHz", + "Shader Clock": "1557 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.3 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.91 GPixel/s", + "Texture Rate": "43.62 GTexel/s", + "FP32 (float) performance": "1,046 GFLOPS", + "FP64 (double) performance": "87.19 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "160 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041 SKU 60" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-480-core-512.c1930", + "web_page_access_date": "2022/08/23/, 14:47:49", + "Product Name": "NVIDIA GeForce GTX 480 Core 512", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-ES-DT1-A2", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "84 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "527 MHz", + "Shader Clock": "1053 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.86 GPixel/s", + "Texture Rate": "33.73 GTexel/s", + "FP32 (float) performance": "1,078 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "292 mm\n\t\t\t\t\t11.5 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 8-pin", + "Board Number": "P1022" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GF100 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-485m.c390", + "web_page_access_date": "2022/08/23/, 14:49:51", + "Product Name": "NVIDIA GeForce GTX 485M", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "384", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "N12E-GTX-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2011", + "Generation": "GeForce 400M", + "Predecessor": "GeForce 300M", + "Successor": "GeForce 500M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Shader Clock": "1150 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.200 GPixel/s", + "Texture Rate": "36.80 GTexel/s", + "FP32 (float) performance": "883.2 GFLOPS", + "FP64 (double) performance": "73.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P1044" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-490.c3332", + "web_page_access_date": "2022/08/23/, 14:51:52", + "Product Name": "NVIDIA GeForce GTX 490", + "General Specs": { + "Graphics Processor": "GF100 x2", + "Cores": "480 x2", + "TMUs": "60 x2", + "ROPs": "48 x2", + "Memory Size": "1536 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-375-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "854 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "164.0 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "60", + "ROPs": "48", + "SM Count": "15", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.24 GPixel/s", + "Texture Rate": "36.48 GTexel/s", + "FP32 (float) performance": "1,166 GFLOPS", + "FP64 (double) performance": "145.8 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "365 W", + "Suggested PSU": "750 W", + "Outputs": "3x DVI1x mini-DisplayPort", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GF100 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-550-ti.c274", + "web_page_access_date": "2022/08/23/, 14:53:54", + "Product Name": "NVIDIA GeForce GTX 550 Ti", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "192", + "TMUs": "32", + "ROPs": "24", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "GF116-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 15th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "62 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Shader Clock": "1800 MHz", + "Memory Clock": "1026 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.1 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "98.50 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "24", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "57.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "116 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1050" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (20)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-555-oem.c882", + "web_page_access_date": "2022/08/23/, 14:55:56", + "Product Name": "NVIDIA GeForce GTX 555 OEM", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "288", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-200-KB-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "736 MHz", + "Shader Clock": "1472 MHz", + "Memory Clock": "957 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "91.87 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.832 GPixel/s", + "Texture Rate": "35.33 GTexel/s", + "FP32 (float) performance": "847.9 GFLOPS", + "FP64 (double) performance": "70.66 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560.c287", + "web_page_access_date": "2022/08/23/, 14:57:58", + "Product Name": "NVIDIA GeForce GTX 560", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "336", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-325-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "May 17th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.34 GPixel/s", + "Texture Rate": "45.36 GTexel/s", + "FP32 (float) performance": "1,089 GFLOPS", + "FP64 (double) performance": "90.72 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1040 SKU 51" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (16)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-oem.c891", + "web_page_access_date": "2022/08/23/, 15:00:00", + "Product Name": "NVIDIA GeForce GTX 560 OEM", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "384", + "TMUs": "48", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-040-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 29th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "552 MHz", + "Shader Clock": "1104 MHz", + "Memory Clock": "802 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "128.3 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "40", + "SM Count": "12", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.25 GPixel/s", + "Texture Rate": "26.50 GTexel/s", + "FP32 (float) performance": "847.9 GFLOPS", + "FP64 (double) performance": "106.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "99 mm\n\t\t\t\t\t3.9 inches", + "Height": "34 mm\n\t\t\t\t\t1.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "1x 6-pin", + "Board Number": "P1263" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-ti.c273", + "web_page_access_date": "2022/08/23/, 15:02:01", + "Product Name": "NVIDIA GeForce GTX 560 Ti", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "384", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 25th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "122 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "823 MHz", + "Shader Clock": "1645 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.3 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.17 GPixel/s", + "Texture Rate": "52.67 GTexel/s", + "FP32 (float) performance": "1,263 GFLOPS", + "FP64 (double) performance": "105.3 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1040" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (29)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-ti-448.c289", + "web_page_access_date": "2022/08/23/, 15:04:03", + "Product Name": "NVIDIA GeForce GTX 560 Ti 448", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "448", + "TMUs": "56", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-270-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 29th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "289 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "36 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Shader Clock": "1464 MHz", + "Memory Clock": "950 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "152.0 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "40", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.50 GPixel/s", + "Texture Rate": "40.99 GTexel/s", + "FP32 (float) performance": "1,312 GFLOPS", + "FP64 (double) performance": "164.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "210 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1263" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-ti-oem.c2434", + "web_page_access_date": "2022/08/23/, 15:06:04", + "Product Name": "NVIDIA GeForce GTX 560 Ti OEM", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "384", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 8th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "122 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "823 MHz", + "Shader Clock": "1645 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.3 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.17 GPixel/s", + "Texture Rate": "52.67 GTexel/s", + "FP32 (float) performance": "1,263 GFLOPS", + "FP64 (double) performance": "105.3 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1040" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-ti-oem.c623", + "web_page_access_date": "2022/08/23/, 15:08:06", + "Product Name": "NVIDIA GeForce GTX 560 Ti OEM", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "352", + "TMUs": "44", + "ROPs": "40", + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 30th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "122 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Shader Clock": "1464 MHz", + "Memory Clock": "950 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1280 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "121.6 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "40", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.10 GPixel/s", + "Texture Rate": "32.21 GTexel/s", + "FP32 (float) performance": "1,031 GFLOPS", + "FP64 (double) performance": "128.8 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "TDP": "210 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort", + "Power Connectors": "2x 6-pin", + "Board Number": "P1263" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-ti-x2.c1927", + "web_page_access_date": "2022/08/23/, 15:10:08", + "Product Name": "NVIDIA GeForce GTX 560 Ti X2", + "General Specs": { + "Graphics Processor": "GF114 x2", + "Cores": "384 x2", + "TMUs": "64 x2", + "ROPs": "32 x2", + "Memory Size": "1024 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-400-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 25th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "122 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Shader Clock": "1700 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.3 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.60 GPixel/s", + "Texture Rate": "54.40 GTexel/s", + "FP32 (float) performance": "1,306 GFLOPS", + "FP64 (double) performance": "108.8 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "292 mm\n\t\t\t\t\t11.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "3x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 8-pin", + "Board Number": "P1040" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560m.c936", + "web_page_access_date": "2022/08/23/, 15:12:09", + "Product Name": "NVIDIA GeForce GTX 560M", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "192", + "TMUs": "32", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "N12E-GS-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 30th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "60.00 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "24", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.200 GPixel/s", + "Texture Rate": "24.80 GTexel/s", + "FP32 (float) performance": "595.2 GFLOPS", + "FP64 (double) performance": "49.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E1069, P1065" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-570m.c1495", + "web_page_access_date": "2022/08/23/, 15:14:15", + "Product Name": "NVIDIA GeForce GTX 570M", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "336", + "TMUs": "56", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "N12E-GT-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 28th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Shader Clock": "1150 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "24", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.050 GPixel/s", + "Texture Rate": "32.20 GTexel/s", + "FP32 (float) performance": "772.8 GFLOPS", + "FP64 (double) performance": "64.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P1314" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-580-rev-2.c3009", + "web_page_access_date": "2022/08/23/, 15:16:17", + "Product Name": "NVIDIA GeForce GTX 580 Rev. 2", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-380-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 6th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "136 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "772 MHz", + "Shader Clock": "1544 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "192.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.70 GPixel/s", + "Texture Rate": "49.41 GTexel/s", + "FP32 (float) performance": "1.581 TFLOPS", + "FP64 (double) performance": "197.6 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "244 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1261 SKU 12" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-580m.c940", + "web_page_access_date": "2022/08/23/, 15:18:18", + "Product Name": "NVIDIA GeForce GTX 580M", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "384", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "N12E-GTX2-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 28th, 2011", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "620 MHz", + "Shader Clock": "1240 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.920 GPixel/s", + "Texture Rate": "39.68 GTexel/s", + "FP32 (float) performance": "952.3 GFLOPS", + "FP64 (double) performance": "79.36 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P1314" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-590.c281", + "web_page_access_date": "2022/08/23/, 15:20:20", + "Product Name": "NVIDIA GeForce GTX 590", + "General Specs": { + "Graphics Processor": "GF110 x2", + "Cores": "512 x2", + "TMUs": "64 x2", + "ROPs": "48 x2", + "Memory Size": "1536 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-351-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 24th, 2011", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "36 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "608 MHz", + "Shader Clock": "1215 MHz", + "Memory Clock": "854 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "164.0 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.46 GPixel/s", + "Texture Rate": "38.91 GTexel/s", + "FP32 (float) performance": "1,244 GFLOPS", + "FP64 (double) performance": "155.5 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "365 W", + "Suggested PSU": "750 W", + "Outputs": "3x DVI1x mini-DisplayPort", + "Power Connectors": "2x 8-pin", + "Board Number": "P1020" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GF110 GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-300.c1452", + "web_page_access_date": "2022/08/23/, 15:22:22", + "Product Name": "NVIDIA NVS 300", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-670-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 8th, 2011", + "Generation": "NVS", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "520 MHz", + "Shader Clock": "1230 MHz", + "Memory Clock": "790 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1580 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.64 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.080 GPixel/s", + "Texture Rate": "4.160 GTexel/s", + "FP32 (float) performance": "39.36 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "18 W", + "Suggested PSU": "200 W", + "Outputs": "1x DMS-59", + "Power Connectors": "None", + "Board Number": "P1035" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-4200m.c1741", + "web_page_access_date": "2022/08/23/, 15:24:24", + "Product Name": "NVIDIA NVS 4200M", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "N12P-NS1-S-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 22nd, 2011", + "Generation": "NVS Mobile\n(x200M)", + "Production": "End-of-life", + "Bus Interface": "MXM", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-1000m.c1431", + "web_page_access_date": "2022/08/23/, 15:26:25", + "Product Name": "NVIDIA Quadro 1000M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-Q1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 13th, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-2000d.c901", + "web_page_access_date": "2022/08/23/, 15:28:27", + "Product Name": "NVIDIA Quadro 2000D", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "192", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "GF106-875-KA-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 5th, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "41.60 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.000 GPixel/s", + "Texture Rate": "20.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS", + "FP64 (double) performance": "40.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "178 mm\n\t\t\t\t\t7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "62 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI", + "Power Connectors": "None", + "Board Number": "P1232" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-2000m.c1430", + "web_page_access_date": "2022/08/23/, 15:30:28", + "Product Name": "NVIDIA Quadro 2000M", + "General Specs": { + "Graphics Processor": "GF106", + "Cores": "192", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF106", + "GPU Variant": "N12P-Q3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 13th, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1100 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "32", + "ROPs": "16", + "SM Count": "4", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "17.60 GTexel/s", + "FP32 (float) performance": "422.4 GFLOPS", + "FP64 (double) performance": "35.20 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-3000m.c1429", + "web_page_access_date": "2022/08/23/, 15:32:30", + "Product Name": "NVIDIA Quadro 3000M", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "240", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "N12E-Q1-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 22nd, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "900 MHz", + "Memory Clock": "625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "240", + "TMUs": "40", + "ROPs": "32", + "SM Count": "5", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.500 GPixel/s", + "Texture Rate": "18.00 GTexel/s", + "FP32 (float) performance": "432.0 GFLOPS", + "FP64 (double) performance": "36.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-400.c1317", + "web_page_access_date": "2022/08/23/, 15:34:32", + "Product Name": "NVIDIA Quadro 400", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "48", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "GPU Variant": "GT216 GL", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 5th, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "169 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "1125 MHz", + "Memory Clock": "770 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1540 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.32 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "16", + "ROPs": "8", + "SM Count": "6", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "108.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "163 mm\n\t\t\t\t\t6.4 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "32 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort", + "Power Connectors": "None", + "Board Number": "P1052" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-4000-mac-edition.c899", + "web_page_access_date": "2022/08/23/, 15:36:33", + "Product Name": "NVIDIA Quadro 4000 Mac Edition", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "256", + "TMUs": "32", + "ROPs": "32", + "Memory Size": "1792 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 12th, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "1,199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "702 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1792 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "89.86 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "32", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "15.20 GTexel/s", + "FP32 (float) performance": "486.4 GFLOPS", + "FP64 (double) performance": "243.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "142 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x DisplayPort1x S-Video", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-4000m.c1428", + "web_page_access_date": "2022/08/23/, 15:38:35", + "Product Name": "NVIDIA Quadro 4000M", + "General Specs": { + "Graphics Processor": "GF104", + "Cores": "336", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF104", + "GPU Variant": "N12E-Q3-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 22nd, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "32", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.650 GPixel/s", + "Texture Rate": "26.60 GTexel/s", + "FP32 (float) performance": "638.4 GFLOPS", + "FP64 (double) performance": "53.20 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-5000.c897", + "web_page_access_date": "2022/08/23/, 15:40:37", + "Product Name": "NVIDIA Quadro 5000", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "352", + "TMUs": "44", + "ROPs": "40", + "Memory Size": "2.5 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-850-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 23rd, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "2,499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "513 MHz", + "Shader Clock": "1026 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2.5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "120.0 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "40", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.29 GPixel/s", + "Texture Rate": "22.57 GTexel/s", + "FP32 (float) performance": "722.3 GFLOPS", + "FP64 (double) performance": "361.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "152 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI2x DisplayPort", + "Power Connectors": "1x 6-pin", + "Board Number": "P2007" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-5000-sdi.c2438", + "web_page_access_date": "2022/08/23/, 15:42:38", + "Product Name": "NVIDIA Quadro 5000 SDI", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "352", + "TMUs": "44", + "ROPs": "40", + "Memory Size": "2.5 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-850-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 23rd, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "7,899 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "513 MHz", + "Shader Clock": "1026 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2.5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "120.0 GB/s" + }, + "Render Config": { + "Shading Units": "352", + "TMUs": "44", + "ROPs": "40", + "SM Count": "11", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "640 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.29 GPixel/s", + "Texture Rate": "22.57 GTexel/s", + "FP32 (float) performance": "722.3 GFLOPS", + "FP64 (double) performance": "361.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "172 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI2x DisplayPort1x S-Video2x SDI" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-500m.c1432", + "web_page_access_date": "2022/08/23/, 15:44:40", + "Product Name": "NVIDIA Quadro 500M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12M-Q3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 22nd, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-5010m.c1427", + "web_page_access_date": "2022/08/23/, 15:46:42", + "Product Name": "NVIDIA Quadro 5010M", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "384", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "N12E-Q5", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 22nd, 2011", + "Generation": "Quadro Mobile\n(x000M)", + "Predecessor": "Quadro FX Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Shader Clock": "900 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "83.20 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "32", + "SM Count": "12", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-6000-sdi.c2141", + "web_page_access_date": "2022/08/23/, 15:52:40", + "Product Name": "NVIDIA Quadro 6000 SDI", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "11,499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "747 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "143.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Quad-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "231 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI2x DisplayPort1x S-Video2x SDI", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-plex-7000.c902", + "web_page_access_date": "2022/08/23/, 15:54:41", + "Product Name": "NVIDIA Quadro Plex 7000", + "General Specs": { + "Graphics Processor": "GF110 x2", + "Cores": "512 x2", + "TMUs": "64 x2", + "ROPs": "48 x2", + "Memory Size": "6 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Quadro Plex", + "Production": "End-of-life", + "Launch Price": "14,999 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1148 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "144.0 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.37 GPixel/s", + "Texture Rate": "36.74 GTexel/s", + "FP32 (float) performance": "1,176 GFLOPS", + "FP64 (double) performance": "587.8 GFLOPS (1:2)" + }, + "Board Design": { + "Length": "522 mm\n\t\t\t\t\t20.6 inches", + "TDP": "600 W", + "Suggested PSU": "1000 W", + "Outputs": "4x DVI2x S-Video" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tegra-3-gpu.c3226", + "web_page_access_date": "2022/08/23/, 15:56:43", + "Product Name": "NVIDIA Tegra 3 GPU", + "General Specs": { + "Graphics Processor": "Kal-El", + "Pixel Shaders": "8", + "Vertex Shaders": "4", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kal-El", + "GPU Variant": "T30-P-A3", + "Architecture": "VLIW Vec4", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "10 million", + "Die Size": "80 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 9th, 2011", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Clock Speeds": { + "Base Clock": "416 MHz", + "Boost Clock": "520 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Pixel Shaders": "8", + "Vertex Shaders": "4", + "TMUs": "8", + "ROPs": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "4.160 GPixel/s", + "Vertex Rate": "416.0 MVertices/s", + "Texture Rate": "4.160 GTexel/s" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 2.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "N/A", + "Vertex Shader": "N/A" + }, + "Kal-El GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-c2050.c923", + "web_page_access_date": "2022/08/23/, 15:58:45", + "Product Name": "NVIDIA Tesla C2050", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-850-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "144.0 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "238 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-c2070.c924", + "web_page_access_date": "2022/08/23/, 16:00:47", + "Product Name": "NVIDIA Tesla C2070", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "747 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "143.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "238 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-c2075.c563", + "web_page_access_date": "2022/08/23/, 16:02:49", + "Product Name": "NVIDIA Tesla C2075", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-351-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "783 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "150.3 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "247 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-c2090.c2317", + "web_page_access_date": "2022/08/23/, 16:04:50", + "Product Name": "NVIDIA Tesla C2090", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "651 MHz", + "Shader Clock": "1301 MHz", + "Memory Clock": "924 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "177.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.83 GPixel/s", + "Texture Rate": "41.66 GTexel/s", + "FP32 (float) performance": "1,332 GFLOPS", + "FP64 (double) performance": "666.1 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m2050.c1534", + "web_page_access_date": "2022/08/23/, 16:06:52", + "Product Name": "NVIDIA Tesla M2050", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Launch Price": "2,699 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Shader Clock": "1150 MHz", + "Memory Clock": "773 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "148.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.10 GPixel/s", + "Texture Rate": "32.20 GTexel/s", + "FP32 (float) performance": "1,030 GFLOPS", + "FP64 (double) performance": "515.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m2070.c1535", + "web_page_access_date": "2022/08/23/, 16:08:54", + "Product Name": "NVIDIA Tesla M2070", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Launch Price": "3,099 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1150 MHz", + "Memory Clock": "783 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "150.3 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,030 GFLOPS", + "FP64 (double) performance": "515.2 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m2070-q.c1536", + "web_page_access_date": "2022/08/23/, 16:10:56", + "Product Name": "NVIDIA Tesla M2070-Q", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-876-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Launch Price": "5,489 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "783 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "150.3 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m2075.c2025", + "web_page_access_date": "2022/08/23/, 16:13:46", + "Product Name": "NVIDIA Tesla M2075", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "GPU Variant": "GF110-876-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Launch Price": "2,399 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "783 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "150.3 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-m2090.c1537", + "web_page_access_date": "2022/08/23/, 16:15:48", + "Product Name": "NVIDIA Tesla M2090", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "651 MHz", + "Shader Clock": "1301 MHz", + "Memory Clock": "924 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "177.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.83 GPixel/s", + "Texture Rate": "41.66 GTexel/s", + "FP32 (float) performance": "1,332 GFLOPS", + "FP64 (double) performance": "666.1 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P1030 SKU 214" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-s2050.c1538", + "web_page_access_date": "2022/08/23/, 16:17:50", + "Product Name": "NVIDIA Tesla S2050", + "General Specs": { + "Graphics Processor": "GF100 x4", + "Cores": "448 x4", + "TMUs": "56 x4", + "ROPs": "48 x4", + "Memory Size": "3 GB x4", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x4" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Launch Price": "11,999 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "574 MHz", + "Shader Clock": "1147 MHz", + "Memory Clock": "773 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "148.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.07 GPixel/s", + "Texture Rate": "32.14 GTexel/s", + "FP32 (float) performance": "1,028 GFLOPS", + "FP64 (double) performance": "513.9 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "900 W", + "Suggested PSU": "1300 W", + "Outputs": "No outputs", + "Board Number": "P1030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-x2070.c2024", + "web_page_access_date": "2022/08/23/, 16:19:51", + "Product Name": "NVIDIA Tesla X2070", + "General Specs": { + "Graphics Processor": "GF100", + "Cores": "448", + "TMUs": "56", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF100", + "GPU Variant": "GF100-876-A3", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,100 million", + "Die Size": "529 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "651 MHz", + "Shader Clock": "1301 MHz", + "Memory Clock": "924 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "177.4 GB/s" + }, + "Render Config": { + "Shading Units": "448", + "TMUs": "56", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.23 GPixel/s", + "Texture Rate": "36.46 GTexel/s", + "FP32 (float) performance": "1,166 GFLOPS", + "FP64 (double) performance": "582.8 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF100 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-x2090.c1887", + "web_page_access_date": "2022/08/23/, 16:21:53", + "Product Name": "NVIDIA Tesla X2090", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 25th, 2011", + "Generation": "Tesla\n(x20xx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "651 MHz", + "Shader Clock": "1301 MHz", + "Memory Clock": "924 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "177.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "16", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.83 GPixel/s", + "Texture Rate": "41.66 GTexel/s", + "FP32 (float) performance": "1,332 GFLOPS", + "FP64 (double) performance": "666.1 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-605-oem.c359", + "web_page_access_date": "2022/08/23/, 16:23:55", + "Product Name": "NVIDIA GeForce 605 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-200-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "523 MHz", + "Shader Clock": "1046 MHz", + "Memory Clock": "897 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1794 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.35 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.046 GPixel/s", + "Texture Rate": "4.184 GTexel/s", + "FP32 (float) performance": "100.4 GFLOPS", + "FP64 (double) performance": "8.368 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-615.c2145", + "web_page_access_date": "2022/08/23/, 16:25:57", + "Product Name": "NVIDIA GeForce 615", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "GeForce 600A", + "Successor": "GeForce 700A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.320 GPixel/s", + "Texture Rate": "5.280 GTexel/s", + "FP32 (float) performance": "126.7 GFLOPS", + "FP64 (double) performance": "10.56 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "49 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-620m.c2382", + "web_page_access_date": "2022/08/23/, 16:27:59", + "Product Name": "NVIDIA GeForce 620M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N13P-GLP", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-9400-gt-rev-3.c2338", + "web_page_access_date": "2022/08/23/, 16:30:01", + "Product Name": "NVIDIA GeForce 9400 GT Rev. 3", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "128 MB", + "Memory Type": "DDR2", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-670-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 13th, 2012", + "Generation": "GeForce 9\n(9400)", + "Predecessor": "GeForce 8", + "Successor": "GeForce 200", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "6 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "128 MB", + "Memory Type": "DDR2", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "44.86 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x VGA1x S-Video", + "Power Connectors": "None", + "Board Number": "P690, P691" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520-oem.c2281", + "web_page_access_date": "2022/08/23/, 16:32:03", + "Product Name": "NVIDIA GeForce GT 520 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119 B1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 20th, 2012", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "134.6 GFLOPS", + "FP64 (double) performance": "11.22 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-520-oem.c1747", + "web_page_access_date": "2022/08/23/, 16:34:05", + "Product Name": "NVIDIA GeForce GT 520 OEM", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "48", + "TMUs": "8", + "ROPs": "2", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-200-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2012", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "2", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.400 GPixel/s", + "Texture Rate": "5.600 GTexel/s", + "FP32 (float) performance": "134.4 GFLOPS", + "FP64 (double) performance": "11.20 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-555m.c1955", + "web_page_access_date": "2022/08/23/, 16:36:07", + "Product Name": "NVIDIA GeForce GT 555M", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "N12E-GE2-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 26th, 2012", + "Generation": "GeForce 500M", + "Predecessor": "GeForce 400M", + "Successor": "GeForce 600M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "16.20 GTexel/s", + "FP32 (float) performance": "388.8 GFLOPS", + "FP64 (double) performance": "32.40 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-610.c821", + "web_page_access_date": "2022/08/23/, 16:38:09", + "Product Name": "NVIDIA GeForce GT 610", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "898 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1796 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.37 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (39)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-610-oem.c2282", + "web_page_access_date": "2022/08/23/, 16:40:10", + "Product Name": "NVIDIA GeForce GT 610 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119 B1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 9th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Shader Clock": "1200 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.200 GPixel/s", + "Texture Rate": "4.400 GTexel/s", + "FP32 (float) performance": "115.2 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310, P1311" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-610-pci.c914", + "web_page_access_date": "2022/08/23/, 16:42:12", + "Product Name": "NVIDIA GeForce GT 610 PCI", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCI" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-610-pcie-x1.c925", + "web_page_access_date": "2022/08/23/, 16:44:14", + "Product Name": "NVIDIA GeForce GT 610 PCIe x1", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x1" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-620.c820", + "web_page_access_date": "2022/08/23/, 16:46:16", + "Product Name": "NVIDIA GeForce GT 620", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-100-KB-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "May 15th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (11)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-620-oem.c358", + "web_page_access_date": "2022/08/23/, 16:48:18", + "Product Name": "NVIDIA GeForce GT 620 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 2nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "898 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1796 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.37 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.620 GPixel/s", + "Texture Rate": "6.480 GTexel/s", + "FP32 (float) performance": "155.5 GFLOPS", + "FP64 (double) performance": "12.96 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1310" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-620m.c354", + "web_page_access_date": "2022/08/23/, 16:50:20", + "Product Name": "NVIDIA GeForce GT 620M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-620m.c2226", + "web_page_access_date": "2022/08/23/, 16:52:22", + "Product Name": "NVIDIA GeForce GT 620M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N13P-GLP-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 23rd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-625m.c1411", + "web_page_access_date": "2022/08/23/, 16:54:23", + "Product Name": "NVIDIA GeForce GT 625M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N13M-GS-B-A2", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 1st, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630.c816", + "web_page_access_date": "2022/08/23/, 16:56:25", + "Product Name": "NVIDIA GeForce GT 630", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "May 15th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Shader Clock": "1620 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.240 GPixel/s", + "Texture Rate": "12.96 GTexel/s", + "FP32 (float) performance": "311.0 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (34)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630-oem.c818", + "web_page_access_date": "2022/08/23/, 16:58:27", + "Product Name": "NVIDIA GeForce GT 630 OEM", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "875 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.500 GPixel/s", + "Texture Rate": "14.00 GTexel/s", + "FP32 (float) performance": "336.0 GFLOPS", + "FP64 (double) performance": "14.00 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2011" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630m.c555", + "web_page_access_date": "2022/08/23/, 17:00:29", + "Product Name": "NVIDIA GeForce GT 630M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N13P-GL2-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630m.c353", + "web_page_access_date": "2022/08/23/, 17:02:31", + "Product Name": "NVIDIA GeForce GT 630M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N13P-GL-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Shader Clock": "1600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "12.80 GTexel/s", + "FP32 (float) performance": "307.2 GFLOPS", + "FP64 (double) performance": "25.60 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630m.c2302", + "web_page_access_date": "2022/08/23/, 17:04:33", + "Product Name": "NVIDIA GeForce GT 630M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12P-GS-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-635m.c2232", + "web_page_access_date": "2022/08/23/, 17:06:35", + "Product Name": "NVIDIA GeForce GT 635M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N12E-GE-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-635m.c352", + "web_page_access_date": "2022/08/23/, 17:08:37", + "Product Name": "NVIDIA GeForce GT 635M", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "N12E-GE2-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.900 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "388.8 GFLOPS", + "FP64 (double) performance": "32.40 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-635m.c3017", + "web_page_access_date": "2022/08/23/, 17:10:39", + "Product Name": "NVIDIA GeForce GT 635M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-635m.c558", + "web_page_access_date": "2022/08/23/, 17:12:40", + "Product Name": "NVIDIA GeForce GT 635M", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "N12E-GE2-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Shader Clock": "1350 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.050 GPixel/s", + "Texture Rate": "16.20 GTexel/s", + "FP32 (float) performance": "388.8 GFLOPS", + "FP64 (double) performance": "32.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640.c813", + "web_page_access_date": "2022/08/23/, 17:14:42", + "Product Name": "NVIDIA GeForce GT 640", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-300-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 5th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "99 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.216 GPixel/s", + "Texture Rate": "28.86 GTexel/s", + "FP32 (float) performance": "692.7 GFLOPS", + "FP64 (double) performance": "28.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2011" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {}, + "Retail boards based on this design (36)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640-oem.c812", + "web_page_access_date": "2022/08/23/, 17:16:44", + "Product Name": "NVIDIA GeForce GT 640 OEM", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-320-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.376 GPixel/s", + "Texture Rate": "25.50 GTexel/s", + "FP32 (float) performance": "612.1 GFLOPS", + "FP64 (double) performance": "25.50 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640-oem-rebrand.c814", + "web_page_access_date": "2022/08/23/, 17:18:46", + "Product Name": "NVIDIA GeForce GT 640 OEM Rebrand", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "GF116-150-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "720 MHz", + "Shader Clock": "1440 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "DDR3", + "Memory Bus": "192 bit", + "Bandwidth": "38.40 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "24", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.320 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP32 (float) performance": "414.7 GFLOPS", + "FP64 (double) performance": "34.56 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "P1062" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640m.c347", + "web_page_access_date": "2022/08/23/, 17:20:48", + "Product Name": "NVIDIA GeForce GT 640M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-GS", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.000 GPixel/s", + "Texture Rate": "20.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "32 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640m-le.c350", + "web_page_access_date": "2022/08/23/, 17:22:50", + "Product Name": "NVIDIA GeForce GT 640M LE", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-LP", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "16.00 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640m-le.c349", + "web_page_access_date": "2022/08/23/, 17:24:51", + "Product Name": "NVIDIA GeForce GT 640M LE", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 4th, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "753 MHz", + "Shader Clock": "1505 MHz", + "Memory Clock": "785 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "50.24 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.012 GPixel/s", + "Texture Rate": "12.05 GTexel/s", + "FP32 (float) performance": "289.0 GFLOPS", + "FP64 (double) performance": "24.08 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "32 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-645-oem.c363", + "web_page_access_date": "2022/08/23/, 17:26:53", + "Product Name": "NVIDIA GeForce GT 645 OEM", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "288", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "776 MHz", + "Shader Clock": "1552 MHz", + "Memory Clock": "957 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "91.87 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.312 GPixel/s", + "Texture Rate": "37.25 GTexel/s", + "FP32 (float) performance": "894.0 GFLOPS", + "FP64 (double) performance": "74.50 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "102 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-645m.c1412", + "web_page_access_date": "2022/08/23/, 17:28:55", + "Product Name": "NVIDIA GeForce GT 645M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-GS", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 1st, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "709 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.672 GPixel/s", + "Texture Rate": "22.69 GTexel/s", + "FP32 (float) performance": "544.5 GFLOPS", + "FP64 (double) performance": "22.69 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "32 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-650m.c547", + "web_page_access_date": "2022/08/23/, 17:30:57", + "Product Name": "NVIDIA GeForce GT 650M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-GT-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "835 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "30.40 GTexel/s", + "FP32 (float) performance": "729.6 GFLOPS", + "FP64 (double) performance": "30.40 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-650m-mac-edition.c550", + "web_page_access_date": "2022/08/23/, 17:32:59", + "Product Name": "NVIDIA GeForce GT 650M Mac Edition", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-GT-W-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 12th, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1254 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.26 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "28.80 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gts-450-rev-3.c2043", + "web_page_access_date": "2022/08/23/, 17:35:01", + "Product Name": "NVIDIA GeForce GTS 450 Rev. 3", + "General Specs": { + "Graphics Processor": "GF116", + "Cores": "144", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF116", + "GPU Variant": "GF116-200-KA-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,170 million", + "Die Size": "238 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 11th, 2012", + "Generation": "GeForce 400", + "Predecessor": "GeForce 200", + "Successor": "GeForce 500", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "783 MHz", + "Shader Clock": "1566 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "22.40 GB/s" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "24", + "ROPs": "16", + "SM Count": "3", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.698 GPixel/s", + "Texture Rate": "18.79 GTexel/s", + "FP32 (float) performance": "451.0 GFLOPS", + "FP64 (double) performance": "37.58 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "106 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Board Number": "P1060" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-560-se.c341", + "web_page_access_date": "2022/08/23/, 17:37:03", + "Product Name": "NVIDIA GeForce GTX 560 SE", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "288", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "GF114-200-KB-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 20th, 2012", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "48 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "736 MHz", + "Shader Clock": "1472 MHz", + "Memory Clock": "957 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "91.87 GB/s" + }, + "Render Config": { + "Shading Units": "288", + "TMUs": "48", + "ROPs": "24", + "SM Count": "6", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.832 GPixel/s", + "Texture Rate": "35.33 GTexel/s", + "FP32 (float) performance": "847.9 GFLOPS", + "FP64 (double) performance": "70.66 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x mini-HDMI 1.3a", + "Power Connectors": "2x 6-pin", + "Board Number": "P1041" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-650.c894", + "web_page_access_date": "2022/08/23/, 17:39:05", + "Product Name": "NVIDIA GeForce GTX 650", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-450-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 6th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "17 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1058 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.464 GPixel/s", + "Texture Rate": "33.86 GTexel/s", + "FP32 (float) performance": "812.5 GFLOPS", + "FP64 (double) performance": "33.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {}, + "Retail boards based on this design (60)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-650-ti.c1188", + "web_page_access_date": "2022/08/23/, 17:41:06", + "Product Name": "NVIDIA GeForce GTX 650 Ti", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "GK106-220-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 9th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "62 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "928 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "86.40 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "16", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.85 GPixel/s", + "Texture Rate": "59.39 GTexel/s", + "FP32 (float) performance": "1,425 GFLOPS", + "FP64 (double) performance": "59.39 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "110 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {}, + "Retail boards based on this design (52)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660.c895", + "web_page_access_date": "2022/08/23/, 17:43:08", + "Product Name": "NVIDIA GeForce GTX 660", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "960", + "TMUs": "80", + "ROPs": "24", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "GK106-400-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 6th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "229 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "77 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1032 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "144.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "24", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.64 GPixel/s", + "Texture Rate": "82.56 GTexel/s", + "FP32 (float) performance": "1.981 TFLOPS", + "FP64 (double) performance": "82.56 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "140 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK106 GPU Notes": {}, + "Retail boards based on this design (55)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660-oem.c1961", + "web_page_access_date": "2022/08/23/, 17:45:10", + "Product Name": "NVIDIA GeForce GTX 660 OEM", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-200-KD-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 22nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "77 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "823 MHz", + "Boost Clock": "888 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "32", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.31 GPixel/s", + "Texture Rate": "85.25 GTexel/s", + "FP32 (float) performance": "2.046 TFLOPS", + "FP64 (double) performance": "85.25 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660-oem.c807", + "web_page_access_date": "2022/08/23/, 17:47:12", + "Product Name": "NVIDIA GeForce GTX 660 OEM", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-200-KD-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 22nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "77 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "823 MHz", + "Boost Clock": "888 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "24", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.31 GPixel/s", + "Texture Rate": "85.25 GTexel/s", + "FP32 (float) performance": "2.046 TFLOPS", + "FP64 (double) performance": "85.25 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660-ti.c364", + "web_page_access_date": "2022/08/23/, 17:49:14", + "Product Name": "NVIDIA GeForce GTX 660 Ti", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "24", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-300-KD-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 16th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "83 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "144.2 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "24", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.44 GPixel/s", + "Texture Rate": "109.8 GTexel/s", + "FP32 (float) performance": "2.634 TFLOPS", + "FP64 (double) performance": "109.8 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (55)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660m.c345", + "web_page_access_date": "2022/08/23/, 17:51:16", + "Product Name": "NVIDIA GeForce GTX 660M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13E-GE-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "835 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "30.40 GTexel/s", + "FP32 (float) performance": "729.6 GFLOPS", + "FP64 (double) performance": "30.40 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-670.c362", + "web_page_access_date": "2022/08/23/, 17:53:18", + "Product Name": "NVIDIA GeForce GTX 670", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-325-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "May 10th, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "108 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.44 GPixel/s", + "Texture Rate": "109.8 GTexel/s", + "FP32 (float) performance": "2.634 TFLOPS", + "FP64 (double) performance": "109.8 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (44)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-670m.c548", + "web_page_access_date": "2022/08/23/, 17:55:20", + "Product Name": "NVIDIA GeForce GTX 670M", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "336", + "TMUs": "56", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "N13E-GS1-LP-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "598 MHz", + "Shader Clock": "1196 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "336", + "TMUs": "56", + "ROPs": "24", + "SM Count": "7", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.372 GPixel/s", + "Texture Rate": "33.49 GTexel/s", + "FP32 (float) performance": "803.7 GFLOPS", + "FP64 (double) performance": "66.98 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-670mx.c1413", + "web_page_access_date": "2022/08/23/, 17:57:22", + "Product Name": "NVIDIA GeForce GTX 670MX", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "960", + "TMUs": "80", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GR-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 1st, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "601 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "67.20 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "24", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.02 GPixel/s", + "Texture Rate": "48.08 GTexel/s", + "FP32 (float) performance": "1,154 GFLOPS", + "FP64 (double) performance": "48.08 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-675m.c343", + "web_page_access_date": "2022/08/23/, 17:59:24", + "Product Name": "NVIDIA GeForce GTX 675M", + "General Specs": { + "Graphics Processor": "GF114", + "Cores": "384", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GF114", + "GPU Variant": "N13E-GS1-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,950 million", + "Die Size": "332 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "620 MHz", + "Shader Clock": "1240 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "64", + "ROPs": "32", + "SM Count": "8", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.920 GPixel/s", + "Texture Rate": "39.68 GTexel/s", + "FP32 (float) performance": "952.3 GFLOPS", + "FP64 (double) performance": "79.36 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-675mx.c1414", + "web_page_access_date": "2022/08/23/, 18:01:26", + "Product Name": "NVIDIA GeForce GTX 675MX", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "960", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GSR-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 1st, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "654 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "32", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.08 GPixel/s", + "Texture Rate": "52.32 GTexel/s", + "FP32 (float) performance": "1,256 GFLOPS", + "FP64 (double) performance": "52.32 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2051B" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-680.c342", + "web_page_access_date": "2022/08/23/, 18:03:28", + "Product Name": "NVIDIA GeForce GTX 680", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-400-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 22nd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "151 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1006 MHz", + "Boost Clock": "1058 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.86 GPixel/s", + "Texture Rate": "135.4 GTexel/s", + "FP32 (float) performance": "3.250 TFLOPS", + "FP64 (double) performance": "135.4 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "256 mm\n\t\t\t\t\t10.1 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "195 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2002" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (91)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-680m.c344", + "web_page_access_date": "2022/08/23/, 18:05:30", + "Product Name": "NVIDIA GeForce GTX 680M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GTX-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 4th, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "719 MHz", + "Boost Clock": "758 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.22 GPixel/s", + "Texture Rate": "84.90 GTexel/s", + "FP32 (float) performance": "2.038 TFLOPS", + "FP64 (double) performance": "84.90 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2051B" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-680mx-mac-edition.c2274", + "web_page_access_date": "2022/08/23/, 18:07:33", + "Product Name": "NVIDIA GeForce GTX 680MX Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GTX2-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 23rd, 2012", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.01 GPixel/s", + "Texture Rate": "92.03 GTexel/s", + "FP32 (float) performance": "2.209 TFLOPS", + "FP64 (double) performance": "92.03 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "122 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-690.c361", + "web_page_access_date": "2022/08/23/, 18:09:34", + "Product Name": "NVIDIA GeForce GTX 690", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "2 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-355-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "May 3rd, 2012", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "20 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "1019 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.61 GPixel/s", + "Texture Rate": "130.4 GTexel/s", + "FP32 (float) performance": "3.130 TFLOPS", + "FP64 (double) performance": "130.4 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "3x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "P2000" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-1000.c2311", + "web_page_access_date": "2022/08/23/, 21:17:44", + "Product Name": "NVIDIA NVS 1000", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "NVS", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.188 GPixel/s", + "Texture Rate": "12.75 GTexel/s", + "FP32 (float) performance": "306.0 GFLOPS", + "FP64 (double) performance": "12.75 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.2" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-310.c1451", + "web_page_access_date": "2022/08/23/, 21:19:46", + "Product Name": "NVIDIA NVS 310", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-825-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 26th, 2012", + "Generation": "NVS", + "Production": "End-of-life", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "523 MHz", + "Shader Clock": "1046 MHz", + "Memory Clock": "875 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1750 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.00 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.046 GPixel/s", + "Texture Rate": "4.184 GTexel/s", + "FP32 (float) performance": "100.4 GFLOPS", + "FP64 (double) performance": "8.368 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "156 mm\n\t\t\t\t\t6.1 inches", + "TDP": "20 W", + "Suggested PSU": "200 W", + "Outputs": "2x DisplayPort", + "Power Connectors": "None", + "Board Number": "P2014" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-510.c1868", + "web_page_access_date": "2022/08/23/, 21:21:48", + "Product Name": "NVIDIA NVS 510", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 23rd, 2012", + "Generation": "NVS", + "Production": "End-of-life", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.188 GPixel/s", + "Texture Rate": "12.75 GTexel/s", + "FP32 (float) performance": "306.0 GFLOPS", + "FP64 (double) performance": "12.75 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-5200m.c1743", + "web_page_access_date": "2022/08/23/, 21:23:50", + "Product Name": "NVIDIA NVS 5200M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N13M-NS1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "NVS Mobile\n(x200M)", + "Production": "End-of-life", + "Bus Interface": "MXM", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-5200m.c2099", + "web_page_access_date": "2022/08/23/, 21:25:52", + "Product Name": "NVIDIA NVS 5200M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-300-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 17th, 2012", + "Generation": "NVS Mobile\n(x200M)", + "Production": "End-of-life", + "Bus Interface": "MXM", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "672 MHz", + "Shader Clock": "1344 MHz", + "Memory Clock": "785 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.1 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.12 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.688 GPixel/s", + "Texture Rate": "10.75 GTexel/s", + "FP32 (float) performance": "258.0 GFLOPS", + "FP64 (double) performance": "21.50 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-5400m.c1742", + "web_page_access_date": "2022/08/23/, 21:27:53", + "Product Name": "NVIDIA NVS 5400M", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "N13P-NS1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "NVS Mobile\n(x400M)", + "Production": "End-of-life", + "Bus Interface": "MXM", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Shader Clock": "1320 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.640 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "253.4 GFLOPS", + "FP64 (double) performance": "21.12 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-3-gpu-40nm.c2554", + "web_page_access_date": "2022/08/23/, 21:29:55", + "Product Name": "NVIDIA Playstation 3 GPU 40nm", + "General Specs": { + "Graphics Processor": "RSX-40nm", + "Pixel Shaders": "24", + "Vertex Shaders": "8", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "256 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "RSX-40nm", + "GPU Variant": "RSX-CXD5302", + "Architecture": "Curie", + "Foundry": "Sony", + "Process Size": "40 nm", + "Transistors": "302 million", + "Die Size": "114 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 4th, 2012", + "Generation": "Console GPU\n(Sony)", + "Production": "End-of-life", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1300 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "20.80 GB/s" + }, + "Render Config": { + "Pixel Shaders": "24", + "Vertex Shaders": "8", + "TMUs": "24", + "ROPs": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Vertex Rate": "1.100 GVertices/s", + "Texture Rate": "13.20 GTexel/s" + }, + "Board Design": { + "Length": "290 mm\n\t\t\t\t\t11.4 inches", + "Width": "290 mm\n\t\t\t\t\t11.4 inches", + "Height": "65 mm\n\t\t\t\t\t2.6 inches", + "Weight": "3.2 kg (7.1 lbs)", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 1.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "3.0", + "Vertex Shader": "3.0" + }, + "Console Notes": {}, + "RSX-40nm GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-410.c1316", + "web_page_access_date": "2022/08/23/, 21:31:57", + "Product Name": "NVIDIA Quadro 410", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-810-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2012", + "Generation": "Quadro\n(x10)", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.26 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.824 GPixel/s", + "Texture Rate": "11.30 GTexel/s", + "FP32 (float) performance": "271.1 GFLOPS", + "FP64 (double) performance": "11.30 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "176 mm\n\t\t\t\t\t6.9 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "38 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2012" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-7000.c1840", + "web_page_access_date": "2022/08/23/, 21:33:59", + "Product Name": "NVIDIA Quadro 7000", + "General Specs": { + "Graphics Processor": "GF110", + "Cores": "512", + "TMUs": "64", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GF110", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "3,000 million", + "Die Size": "520 mm²" + }, + "Graphics Card": { + "Release Date": "May 2nd, 2012", + "Generation": "Quadro\n(x000)", + "Production": "End-of-life", + "Launch Price": "14,499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "651 MHz", + "Shader Clock": "1301 MHz", + "Memory Clock": "851 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.4 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "163.4 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "64", + "ROPs": "48", + "SM Count": "14", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.23 GPixel/s", + "Texture Rate": "41.66 GTexel/s", + "FP32 (float) performance": "1,332 GFLOPS", + "FP64 (double) performance": "666.1 GFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "204 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI2x DisplayPort1x S-Video" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.0", + "Shader Model": "5.1" + }, + "GF110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k1000m.c1425", + "web_page_access_date": "2022/08/23/, 21:36:01", + "Product Name": "NVIDIA Quadro K1000M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-Q1-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2000m.c1424", + "web_page_access_date": "2022/08/23/, 21:38:03", + "Product Name": "NVIDIA Quadro K2000M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-Q3-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.960 GPixel/s", + "Texture Rate": "23.84 GTexel/s", + "FP32 (float) performance": "572.2 GFLOPS", + "FP64 (double) performance": "23.84 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Board Number": "P2091 SKU 0502" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k3000m.c1423", + "web_page_access_date": "2022/08/23/, 21:40:05", + "Product Name": "NVIDIA Quadro K3000M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "576", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N14E-Q1-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "654 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "89.60 GB/s" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "48", + "ROPs": "32", + "SMX Count": "3", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.848 GPixel/s", + "Texture Rate": "31.39 GTexel/s", + "FP32 (float) performance": "753.4 GFLOPS", + "FP64 (double) performance": "31.39 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k4000m.c1422", + "web_page_access_date": "2022/08/23/, 21:42:07", + "Product Name": "NVIDIA Quadro K4000M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "960", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N14E-Q3-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "601 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "89.60 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "32", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.02 GPixel/s", + "Texture Rate": "48.08 GTexel/s", + "FP32 (float) performance": "1,154 GFLOPS", + "FP64 (double) performance": "48.08 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5000.c565", + "web_page_access_date": "2022/08/23/, 21:44:09", + "Product Name": "NVIDIA Quadro K5000", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 17th, 2012", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "2,499 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "172.8 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.59 GPixel/s", + "Texture Rate": "90.37 GTexel/s", + "FP32 (float) performance": "2.169 TFLOPS", + "FP64 (double) performance": "90.37 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "122 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5000-mac-edition.c1325", + "web_page_access_date": "2022/08/23/, 21:46:11", + "Product Name": "NVIDIA Quadro K5000 Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2012", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "2,249 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "172.8 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.59 GPixel/s", + "Texture Rate": "90.37 GTexel/s", + "FP32 (float) performance": "2.169 TFLOPS", + "FP64 (double) performance": "90.37 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "122 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5000m.c1397", + "web_page_access_date": "2022/08/23/, 21:48:13", + "Product Name": "NVIDIA Quadro K5000M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N14E-Q5-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 7th, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "601 MHz", + "Memory Clock": "750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.83 GPixel/s", + "Texture Rate": "67.31 GTexel/s", + "FP32 (float) performance": "1.615 TFLOPS", + "FP64 (double) performance": "67.31 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k500m.c1426", + "web_page_access_date": "2022/08/23/, 21:50:15", + "Product Name": "NVIDIA Quadro K500M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14M-Q1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 1st, 2012", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k10.c918", + "web_page_access_date": "2022/08/23/, 21:52:16", + "Product Name": "NVIDIA Tesla K10", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "May 1st, 2012", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "5,099 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "272 mm\n\t\t\t\t\t10.7 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k20x.c2315", + "web_page_access_date": "2022/08/23/, 21:54:18", + "Product Name": "NVIDIA Tesla K20X", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2688", + "TMUs": "224", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "249.6 GB/s" + }, + "Render Config": { + "Shading Units": "2688", + "TMUs": "224", + "ROPs": "48", + "SMX Count": "14", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.99 GPixel/s", + "Texture Rate": "164.0 GTexel/s", + "FP32 (float) performance": "3.935 TFLOPS", + "FP64 (double) performance": "1,312 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "235 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2081" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k20xm.c1884", + "web_page_access_date": "2022/08/23/, 21:56:20", + "Product Name": "NVIDIA Tesla K20Xm", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2688", + "TMUs": "224", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "732 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "249.6 GB/s" + }, + "Render Config": { + "Shading Units": "2688", + "TMUs": "224", + "ROPs": "48", + "SMX Count": "14", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "40.99 GPixel/s", + "Texture Rate": "164.0 GTexel/s", + "FP32 (float) performance": "3.935 TFLOPS", + "FP64 (double) performance": "1,312 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "235 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k20c.c564", + "web_page_access_date": "2022/08/23/, 21:58:22", + "Product Name": "NVIDIA Tesla K20c", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2496", + "TMUs": "208", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "GPU Variant": "GK110-885-KA-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "3,199 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "208.0 GB/s" + }, + "Render Config": { + "Shading Units": "2496", + "TMUs": "208", + "ROPs": "40", + "SMX Count": "13", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.71 GPixel/s", + "Texture Rate": "146.8 GTexel/s", + "FP32 (float) performance": "3.524 TFLOPS", + "FP64 (double) performance": "1,175 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2081 SKU 204" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k1.c1699", + "web_page_access_date": "2022/08/23/, 22:00:24", + "Product Name": "NVIDIA GRID K1", + "General Specs": { + "Graphics Processor": "GK107 x4", + "Cores": "192 x4", + "TMUs": "16 x4", + "ROPs": "16 x4", + "Memory Size": "4 GB x4", + "Memory Type": "DDR3", + "Bus Width": "128 bit x4" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-450-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 18th, 2013", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "4,140 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "P2401 SKU 502" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k100.c2486", + "web_page_access_date": "2022/08/23/, 22:02:26", + "Product Name": "NVIDIA GRID K100", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "256 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "63 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k140q.c2485", + "web_page_access_date": "2022/08/23/, 22:04:28", + "Product Name": "NVIDIA GRID K140Q", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "125 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k160q.c2667", + "web_page_access_date": "2022/08/23/, 22:06:30", + "Product Name": "NVIDIA GRID K160Q", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "125 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k180q.c2668", + "web_page_access_date": "2022/08/23/, 22:08:32", + "Product Name": "NVIDIA GRID K180Q", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "125 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k2.c1700", + "web_page_access_date": "2022/08/23/, 22:10:34", + "Product Name": "NVIDIA GRID K2", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-895-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "May 11th, 2013", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "5,199 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "P2055" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k200.c2490", + "web_page_access_date": "2022/08/23/, 22:12:36", + "Product Name": "NVIDIA GRID K200", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "235 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k240q.c2489", + "web_page_access_date": "2022/08/23/, 22:14:38", + "Product Name": "NVIDIA GRID K240Q", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "469 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k260q.c2488", + "web_page_access_date": "2022/08/23/, 22:16:40", + "Product Name": "NVIDIA GRID K260Q", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "937 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k280q.c2487", + "web_page_access_date": "2022/08/23/, 22:18:42", + "Product Name": "NVIDIA GRID K280Q", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 28th, 2013", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "1,875 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k340.c2313", + "web_page_access_date": "2022/08/23/, 22:20:44", + "Product Name": "NVIDIA GRID K340", + "General Specs": { + "Graphics Processor": "GK107 x4", + "Cores": "384 x4", + "TMUs": "32 x4", + "ROPs": "16 x4", + "Memory Size": "1024 MB x4", + "Memory Type": "GDDR5", + "Bus Width": "128 bit x4" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "GRID\n(K3)", + "Production": "End-of-life", + "Launch Price": "3,299 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.632 GPixel/s", + "Texture Rate": "30.53 GTexel/s", + "FP32 (float) performance": "732.7 GFLOPS", + "FP64 (double) performance": "30.53 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k520.c2312", + "web_page_access_date": "2022/08/23/, 22:22:46", + "Product Name": "NVIDIA GRID K520", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "GRID\n(K5)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "P2055 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-505-oem.c1998", + "web_page_access_date": "2022/08/23/, 22:24:48", + "Product Name": "NVIDIA GeForce 505 OEM", + "General Specs": { + "Graphics Processor": "GT218", + "Cores": "16", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GT218", + "GPU Variant": "GT218-300-B1", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "260 million", + "Die Size": "57 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 6th, 2013", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 1.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "589 MHz", + "Shader Clock": "1402 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "16", + "TMUs": "8", + "ROPs": "4", + "SM Count": "2", + "L2 Cache": "32 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.356 GPixel/s", + "Texture Rate": "4.712 GTexel/s", + "FP32 (float) performance": "44.86 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA", + "Power Connectors": "None", + "Board Number": "P873" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-505-oem.c2060", + "web_page_access_date": "2022/08/23/, 22:26:49", + "Product Name": "NVIDIA GeForce 505 OEM", + "General Specs": { + "Graphics Processor": "GT216", + "Cores": "24", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GT216", + "Architecture": "Tesla 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "486 million", + "Die Size": "100 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 17th, 2013", + "Generation": "GeForce 500", + "Predecessor": "GeForce 400", + "Successor": "GeForce 600", + "Production": "End-of-life", + "Bus Interface": "PCIe 1.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "615 MHz", + "Shader Clock": "1031 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1400 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "22.40 GB/s" + }, + "Render Config": { + "Shading Units": "24", + "TMUs": "12", + "ROPs": "8", + "SM Count": "3", + "L2 Cache": "64 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.920 GPixel/s", + "Texture Rate": "7.380 GTexel/s", + "FP32 (float) performance": "49.49 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI1x VGA" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "1.2", + "Shader Model": "4.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-705a.c2519", + "web_page_access_date": "2022/08/23/, 22:28:52", + "Product Name": "NVIDIA GeForce 705A", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 1st, 2013", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-705m.c2308", + "web_page_access_date": "2022/08/23/, 22:30:54", + "Product Name": "NVIDIA GeForce 705M", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119 B1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-705m.c2492", + "web_page_access_date": "2022/08/23/, 22:32:55", + "Product Name": "NVIDIA GeForce 705M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "48", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 27th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "8", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-710a.c2384", + "web_page_access_date": "2022/08/23/, 22:34:58", + "Product Name": "NVIDIA GeForce 710A", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-710m.c2433", + "web_page_access_date": "2022/08/23/, 22:37:00", + "Product Name": "NVIDIA GeForce 710M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 24th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.752 GPixel/s", + "Texture Rate": "11.50 GTexel/s", + "FP32 (float) performance": "276.1 GFLOPS", + "FP64 (double) performance": "11.50 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-710m.c2017", + "web_page_access_date": "2022/08/23/, 22:39:01", + "Product Name": "NVIDIA GeForce 710M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-720m.c2385", + "web_page_access_date": "2022/08/23/, 22:41:04", + "Product Name": "NVIDIA GeForce 720M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-820m.c2524", + "web_page_access_date": "2022/08/23/, 22:43:06", + "Product Name": "NVIDIA GeForce 820M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N15V-GM-B-A2", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 27th, 2013", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-625-oem.c2058", + "web_page_access_date": "2022/08/23/, 22:45:08", + "Product Name": "NVIDIA GeForce GT 625 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "874 MHz", + "Shader Clock": "1748 MHz", + "Memory Clock": "825 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1650 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "13.20 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.748 GPixel/s", + "Texture Rate": "6.992 GTexel/s", + "FP32 (float) performance": "167.8 GFLOPS", + "FP64 (double) performance": "13.98 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630-rev-2.c2376", + "web_page_access_date": "2022/08/23/, 22:47:10", + "Product Name": "NVIDIA GeForce GT 630 Rev. 2", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GK208-301-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "May 29th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.216 GPixel/s", + "Texture Rate": "28.86 GTexel/s", + "FP32 (float) performance": "692.7 GFLOPS", + "FP64 (double) performance": "28.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2132" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-630-rev-2-pcie-x8.c2396", + "web_page_access_date": "2022/08/23/, 22:49:12", + "Product Name": "NVIDIA GeForce GT 630 Rev. 2 PCIe x8", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GK208-301-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "May 29th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.216 GPixel/s", + "Texture Rate": "28.86 GTexel/s", + "FP32 (float) performance": "692.7 GFLOPS", + "FP64 (double) performance": "28.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "115 mm\n\t\t\t\t\t4.5 inches", + "TDP": "25 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2132" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {}, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-635-oem.c2041", + "web_page_access_date": "2022/08/23/, 22:51:14", + "Product Name": "NVIDIA GeForce GT 635 OEM", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 1st, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "967 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.736 GPixel/s", + "Texture Rate": "30.94 GTexel/s", + "FP32 (float) performance": "742.7 GFLOPS", + "FP64 (double) performance": "30.94 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2130" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640-rev-2.c2377", + "web_page_access_date": "2022/08/23/, 22:53:15", + "Product Name": "NVIDIA GeForce GT 640 Rev. 2", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GK208-400-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "May 29th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "89 USD", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "1046 MHz", + "Memory Clock": "1252 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.06 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.368 GPixel/s", + "Texture Rate": "33.47 GTexel/s", + "FP32 (float) performance": "803.3 GFLOPS", + "FP64 (double) performance": "33.47 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2131" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {}, + "Retail boards based on this design (16)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-640m-mac-edition.c2227", + "web_page_access_date": "2022/08/23/, 22:55:17", + "Product Name": "NVIDIA GeForce GT 640M Mac Edition", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N13P-GS", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 3rd, 2013", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.960 GPixel/s", + "Texture Rate": "23.84 GTexel/s", + "FP32 (float) performance": "572.2 GFLOPS", + "FP64 (double) performance": "23.84 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "32 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710m.c2383", + "web_page_access_date": "2022/08/23/, 22:57:19", + "Product Name": "NVIDIA GeForce GT 710M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720m.c2444", + "web_page_access_date": "2022/08/23/, 22:59:21", + "Product Name": "NVIDIA GeForce GT 720M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GT 720M", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 25th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "Base Clock": "719 MHz", + "Boost Clock": "758 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.032 GPixel/s", + "Texture Rate": "12.13 GTexel/s", + "FP32 (float) performance": "291.1 GFLOPS", + "FP64 (double) performance": "12.13 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720m.c2297", + "web_page_access_date": "2022/08/23/, 23:01:23", + "Product Name": "NVIDIA GeForce GT 720M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1250 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS", + "FP64 (double) performance": "20.00 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730m.c1914", + "web_page_access_date": "2022/08/23/, 23:03:25", + "Product Name": "NVIDIA GeForce GT 730M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GT 730M", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 20th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "23.20 GTexel/s", + "FP32 (float) performance": "556.8 GFLOPS", + "FP64 (double) performance": "23.20 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-735m.c2300", + "web_page_access_date": "2022/08/23/, 23:05:27", + "Product Name": "NVIDIA GeForce GT 735M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "N14M-LP", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.600 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP32 (float) performance": "441.6 GFLOPS", + "FP64 (double) performance": "18.40 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740a.c2456", + "web_page_access_date": "2022/08/23/, 23:07:29", + "Product Name": "NVIDIA GeForce GT 740A", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GT 740M", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 26th, 2013", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "31.36 GTexel/s", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "31.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740m.c2299", + "web_page_access_date": "2022/08/23/, 23:09:31", + "Product Name": "NVIDIA GeForce GT 740M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GT 740M", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 20th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "31.36 GTexel/s", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "31.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740m.c2310", + "web_page_access_date": "2022/08/23/, 23:11:33", + "Product Name": "NVIDIA GeForce GT 740M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GT 740M", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Memory Clock": "901 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1802 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.83 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.480 GPixel/s", + "Texture Rate": "25.92 GTexel/s", + "FP32 (float) performance": "622.1 GFLOPS", + "FP64 (double) performance": "25.92 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-745a.c2457", + "web_page_access_date": "2022/08/23/, 23:13:35", + "Product Name": "NVIDIA GeForce GT 745A", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-LP", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 26th, 2013", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "837 MHz", + "Boost Clock": "915 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.320 GPixel/s", + "Texture Rate": "29.28 GTexel/s", + "FP32 (float) performance": "702.7 GFLOPS", + "FP64 (double) performance": "29.28 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-745m.c2298", + "web_page_access_date": "2022/08/23/, 23:15:37", + "Product Name": "NVIDIA GeForce GT 745M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-LP", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "837 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.696 GPixel/s", + "Texture Rate": "26.78 GTexel/s", + "FP32 (float) performance": "642.8 GFLOPS", + "FP64 (double) performance": "26.78 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-745m.c2320", + "web_page_access_date": "2022/08/23/, 23:17:39", + "Product Name": "NVIDIA GeForce GT 745M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-GS", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "549 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.392 GPixel/s", + "Texture Rate": "17.57 GTexel/s", + "FP32 (float) performance": "421.6 GFLOPS", + "FP64 (double) performance": "17.57 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-750m.c2224", + "web_page_access_date": "2022/08/23/, 23:19:41", + "Product Name": "NVIDIA GeForce GT 750M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-GT", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "941 MHz", + "Boost Clock": "967 MHz", + "Memory Clock": "1003 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.736 GPixel/s", + "Texture Rate": "30.94 GTexel/s", + "FP32 (float) performance": "742.7 GFLOPS", + "FP64 (double) performance": "30.94 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-750m-mac-edition.c2527", + "web_page_access_date": "2022/08/23/, 23:21:43", + "Product Name": "NVIDIA GeForce GT 750M Mac Edition", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14P-GT", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 8th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "926 MHz", + "Memory Clock": "1254 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.26 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.408 GPixel/s", + "Texture Rate": "29.63 GTexel/s", + "FP32 (float) performance": "711.2 GFLOPS", + "FP64 (double) performance": "29.63 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-755m.c2420", + "web_page_access_date": "2022/08/23/, 23:23:45", + "Product Name": "NVIDIA GeForce GT 755M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GT 755M", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 25th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "980 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "86.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "31.36 GTexel/s", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "31.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-755m-mac-edition.c2525", + "web_page_access_date": "2022/08/23/, 23:25:47", + "Product Name": "NVIDIA GeForce GT 755M Mac Edition", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GT 755M", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 8th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1085 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.680 GPixel/s", + "Texture Rate": "34.72 GTexel/s", + "FP32 (float) performance": "833.3 GFLOPS", + "FP64 (double) performance": "34.72 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-820m.c2665", + "web_page_access_date": "2022/08/23/, 23:27:49", + "Product Name": "NVIDIA GeForce GT 820M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N15V-GM", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 27th, 2013", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-645-oem.c2359", + "web_page_access_date": "2022/08/23/, 23:29:51", + "Product Name": "NVIDIA GeForce GTX 645 OEM", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "576", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "GK106-200-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 22nd, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "824 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "48", + "ROPs": "16", + "SMX Count": "3", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.888 GPixel/s", + "Texture Rate": "39.55 GTexel/s", + "FP32 (float) performance": "949.2 GFLOPS", + "FP64 (double) performance": "39.55 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2010 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-650.c2445", + "web_page_access_date": "2022/08/23/, 23:31:53", + "Product Name": "NVIDIA GeForce GTX 650", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 27th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "17 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1058 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.464 GPixel/s", + "Texture Rate": "33.86 GTexel/s", + "FP32 (float) performance": "812.5 GFLOPS", + "FP64 (double) performance": "33.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "147 mm\n\t\t\t\t\t5.8 inches", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-650-ti-boost.c2059", + "web_page_access_date": "2022/08/23/, 23:33:55", + "Product Name": "NVIDIA GeForce GTX 650 Ti Boost", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "24", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "GK106-240-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 26th, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "169 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "66 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1032 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "144.2 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "24", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.51 GPixel/s", + "Texture Rate": "66.05 GTexel/s", + "FP32 (float) performance": "1.585 TFLOPS", + "FP64 (double) performance": "66.05 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "134 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {}, + "Retail boards based on this design (48)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-650-ti-oem.c2301", + "web_page_access_date": "2022/08/23/, 23:35:57", + "Product Name": "NVIDIA GeForce GTX 650 Ti OEM", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 31st, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "62 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "928 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "86.40 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "16", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.85 GPixel/s", + "Texture Rate": "59.39 GTexel/s", + "FP32 (float) performance": "1,425 GFLOPS", + "FP64 (double) performance": "59.39 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "110 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660m-mac-edition.c2318", + "web_page_access_date": "2022/08/23/, 23:37:59", + "Product Name": "NVIDIA GeForce GTX 660M Mac Edition", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "950 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.600 GPixel/s", + "Texture Rate": "30.40 GTexel/s", + "FP32 (float) performance": "729.6 GFLOPS", + "FP64 (double) performance": "30.40 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-675mx-mac-edition.c2304", + "web_page_access_date": "2022/08/23/, 23:40:01", + "Product Name": "NVIDIA GeForce GTX 675MX Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GSR-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "GeForce 600M", + "Predecessor": "GeForce 500M", + "Successor": "GeForce 700M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.13 GPixel/s", + "Texture Rate": "80.53 GTexel/s", + "FP32 (float) performance": "1.933 TFLOPS", + "FP64 (double) performance": "80.53 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-680-mac-edition.c2323", + "web_page_access_date": "2022/08/23/, 23:42:03", + "Product Name": "NVIDIA GeForce GTX 680 Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-400-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 3rd, 2013", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "151 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1006 MHz", + "Boost Clock": "1058 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.86 GPixel/s", + "Texture Rate": "135.4 GTexel/s", + "FP32 (float) performance": "3.250 TFLOPS", + "FP64 (double) performance": "135.4 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "254 mm\n\t\t\t\t\t10 inches", + "TDP": "195 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760.c1857", + "web_page_access_date": "2022/08/23/, 23:44:05", + "Product Name": "NVIDIA GeForce GTX 760", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-225-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 25th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "140 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1032 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "32", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.77 GPixel/s", + "Texture Rate": "99.07 GTexel/s", + "FP32 (float) performance": "2.378 TFLOPS", + "FP64 (double) performance": "99.07 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (83)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-oem.c2455", + "web_page_access_date": "2022/08/23/, 23:46:07", + "Product Name": "NVIDIA GeForce GTX 760 OEM", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "24", + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-200-KD-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 27th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "823 MHz", + "Boost Clock": "888 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1536 MB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "24", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.31 GPixel/s", + "Texture Rate": "85.25 GTexel/s", + "FP32 (float) performance": "2.046 TFLOPS", + "FP64 (double) performance": "85.25 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-oem-rebrand.c2454", + "web_page_access_date": "2022/08/23/, 23:48:09", + "Product Name": "NVIDIA GeForce GTX 760 OEM Rebrand", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-200-KD-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 25th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "823 MHz", + "Boost Clock": "888 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "32", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.31 GPixel/s", + "Texture Rate": "85.25 GTexel/s", + "FP32 (float) performance": "2.046 TFLOPS", + "FP64 (double) performance": "85.25 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-ti-oem.c2491", + "web_page_access_date": "2022/08/23/, 23:50:11", + "Product Name": "NVIDIA GeForce GTX 760 Ti OEM", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 27th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.44 GPixel/s", + "Texture Rate": "109.8 GTexel/s", + "FP32 (float) performance": "2.634 TFLOPS", + "FP64 (double) performance": "109.8 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-ti-oem-rebrand.c2453", + "web_page_access_date": "2022/08/23/, 23:52:13", + "Product Name": "NVIDIA GeForce GTX 760 Ti OEM Rebrand", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-325-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 25th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "915 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.44 GPixel/s", + "Texture Rate": "109.8 GTexel/s", + "FP32 (float) performance": "2.634 TFLOPS", + "FP64 (double) performance": "109.8 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "170 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760-x2.c2521", + "web_page_access_date": "2022/08/23/, 23:54:15", + "Product Name": "NVIDIA GeForce GTX 760 X2", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1152 x2", + "TMUs": "96 x2", + "ROPs": "32 x2", + "Memory Size": "2 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-225-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 19th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "140 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1006 MHz", + "Boost Clock": "1072 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "32", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.73 GPixel/s", + "Texture Rate": "102.9 GTexel/s", + "FP32 (float) performance": "2.470 TFLOPS", + "FP64 (double) performance": "102.9 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "3x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760m.c2305", + "web_page_access_date": "2022/08/23/, 23:56:17", + "Product Name": "NVIDIA GeForce GTX 760M", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "N14E-GL-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 30th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "628 MHz", + "Boost Clock": "657 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.13 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "16", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.51 GPixel/s", + "Texture Rate": "42.05 GTexel/s", + "FP32 (float) performance": "1,009 GFLOPS", + "FP64 (double) performance": "42.05 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "55 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-765m.c2306", + "web_page_access_date": "2022/08/23/, 23:58:19", + "Product Name": "NVIDIA GeForce GTX 765M", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "N14E-GE-B-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 30th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "797 MHz", + "Boost Clock": "863 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.13 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "16", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.81 GPixel/s", + "Texture Rate": "55.23 GTexel/s", + "FP32 (float) performance": "1,326 GFLOPS", + "FP64 (double) performance": "55.23 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-770.c1856", + "web_page_access_date": "2022/08/24/, 00:00:21", + "Product Name": "NVIDIA GeForce GTX 770", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-425-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "May 30th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "112 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1046 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.72 GPixel/s", + "Texture Rate": "138.9 GTexel/s", + "FP32 (float) performance": "3.333 TFLOPS", + "FP64 (double) performance": "138.9 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "230 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2005" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {}, + "Retail boards based on this design (83)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-770m.c2129", + "web_page_access_date": "2022/08/24/, 00:02:23", + "Product Name": "NVIDIA GeForce GTX 770M", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "960", + "TMUs": "80", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "N14E-GS-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 30th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "706 MHz", + "Boost Clock": "797 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "96.19 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "24", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "15.94 GPixel/s", + "Texture Rate": "63.76 GTexel/s", + "FP32 (float) performance": "1.530 TFLOPS", + "FP64 (double) performance": "63.76 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2303" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-775m-mac-edition.c2381", + "web_page_access_date": "2022/08/24/, 00:04:25", + "Product Name": "NVIDIA GeForce GTX 775M Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N13E-GTX-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 8th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.32 GPixel/s", + "Texture Rate": "89.26 GTexel/s", + "FP32 (float) performance": "2.142 TFLOPS", + "FP64 (double) performance": "89.26 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780.c1701", + "web_page_access_date": "2022/08/24/, 00:06:27", + "Product Name": "NVIDIA GeForce GTX 780", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2304", + "TMUs": "192", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "GPU Variant": "GK110-300-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "May 23rd, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "155 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "863 MHz", + "Boost Clock": "902 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "192", + "ROPs": "48", + "SMX Count": "12", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "43.30 GPixel/s", + "Texture Rate": "173.2 GTexel/s", + "FP32 (float) performance": "4.156 TFLOPS", + "FP64 (double) performance": "173.2 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 20" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {}, + "Retail boards based on this design (58)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780-6-gb.c2707", + "web_page_access_date": "2022/08/24/, 00:08:29", + "Product Name": "NVIDIA GeForce GTX 780 6 GB", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2304", + "TMUs": "192", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-301-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 10th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "155 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "863 MHz", + "Boost Clock": "902 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "192", + "ROPs": "48", + "SMX Count": "12", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "43.30 GPixel/s", + "Texture Rate": "173.2 GTexel/s", + "FP32 (float) performance": "4.156 TFLOPS", + "FP64 (double) performance": "173.2 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 25" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780-rev-2.c2513", + "web_page_access_date": "2022/08/24/, 11:01:41", + "Product Name": "NVIDIA GeForce GTX 780 Rev. 2", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2304", + "TMUs": "192", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-300-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 10th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "649 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "155 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "863 MHz", + "Boost Clock": "902 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "192", + "ROPs": "48", + "SMX Count": "12", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "43.30 GPixel/s", + "Texture Rate": "173.2 GTexel/s", + "FP32 (float) performance": "4.156 TFLOPS", + "FP64 (double) performance": "173.2 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 21" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK110B GPU Notes": {}, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780-ti.c2512", + "web_page_access_date": "2022/08/24/, 11:03:43", + "Product Name": "NVIDIA GeForce GTX 780 Ti", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-425-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 7th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "94 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "875 MHz", + "Boost Clock": "928 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.6 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "55.68 GPixel/s", + "Texture Rate": "222.7 GTexel/s", + "FP32 (float) performance": "5.345 TFLOPS", + "FP64 (double) performance": "222.7 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {}, + "Retail boards based on this design (51)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780-ti-6-gb.c3302", + "web_page_access_date": "2022/08/24/, 11:05:45", + "Product Name": "NVIDIA GeForce GTX 780 Ti 6 GB", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "94 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "875 MHz", + "Boost Clock": "928 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.6 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "55.68 GPixel/s", + "Texture Rate": "222.7 GTexel/s", + "FP32 (float) performance": "5.345 TFLOPS", + "FP64 (double) performance": "222.7 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 30" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780m.c2128", + "web_page_access_date": "2022/08/24/, 11:07:47", + "Product Name": "NVIDIA GeForce GTX 780M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N14E-GTX-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 11th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "771 MHz", + "Boost Clock": "797 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.50 GPixel/s", + "Texture Rate": "102.0 GTexel/s", + "FP32 (float) performance": "2.448 TFLOPS", + "FP64 (double) performance": "102.0 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "122 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2053 SKU 1" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-780m-mac-edition.c2526", + "web_page_access_date": "2022/08/24/, 11:09:50", + "Product Name": "NVIDIA GeForce GTX 780M Mac Edition", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N14E-GTX-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 8th, 2013", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "771 MHz", + "Boost Clock": "797 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.50 GPixel/s", + "Texture Rate": "102.0 GTexel/s", + "FP32 (float) performance": "2.448 TFLOPS", + "FP64 (double) performance": "102.0 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "122 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-titan.c1996", + "web_page_access_date": "2022/08/24/, 11:11:51", + "Product Name": "NVIDIA GeForce GTX TITAN", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2688", + "TMUs": "224", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "GPU Variant": "GK110-400-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 19th, 2013", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "45 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "836 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2688", + "TMUs": "224", + "ROPs": "48", + "SMX Count": "14", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.06 GPixel/s", + "Texture Rate": "196.2 GTexel/s", + "FP32 (float) performance": "4.709 TFLOPS", + "FP64 (double) performance": "1.570 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {}, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/nvs-315.c2147", + "web_page_access_date": "2022/08/24/, 11:13:53", + "Product Name": "NVIDIA NVS 315", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-825-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 10th, 2013", + "Generation": "NVS", + "Production": "End-of-life", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "523 MHz", + "Shader Clock": "1046 MHz", + "Memory Clock": "875 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1750 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.00 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.046 GPixel/s", + "Texture Rate": "4.184 GTexel/s", + "FP32 (float) performance": "100.4 GFLOPS", + "FP64 (double) performance": "8.368 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DMS-59", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-3-gpu-28nm.c3498", + "web_page_access_date": "2022/08/24/, 11:15:55", + "Product Name": "NVIDIA Playstation 3 GPU 28nm", + "General Specs": { + "Graphics Processor": "RSX-28nm", + "Pixel Shaders": "24", + "Vertex Shaders": "8", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "256 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "RSX-28nm", + "GPU Variant": "RSX-D5305L", + "Architecture": "Curie", + "Foundry": "Sony", + "Process Size": "28 nm", + "Transistors": "302 million", + "Die Size": "68 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 3rd, 2013", + "Generation": "Console GPU\n(Sony)", + "Production": "End-of-life", + "Launch Price": "299 USD" + }, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1300 Mbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "20.80 GB/s" + }, + "Render Config": { + "Pixel Shaders": "24", + "Vertex Shaders": "8", + "TMUs": "24", + "ROPs": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Vertex Rate": "1.100 GVertices/s", + "Texture Rate": "13.20 GTexel/s" + }, + "Board Design": { + "Length": "290 mm\n\t\t\t\t\t11.4 inches", + "Width": "60 mm\n\t\t\t\t\t2.4 inches", + "Height": "230 mm\n\t\t\t\t\t9.1 inches", + "Weight": "2.1 kg (4.6 lbs)", + "TDP": "21 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 1.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "3.0", + "Vertex Shader": "3.0" + }, + "Console Notes": {}, + "RSX-28nm GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-4100.c2309", + "web_page_access_date": "2022/08/24/, 11:17:58", + "Product Name": "NVIDIA Quadro 4100", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Quadro\n(x10)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "256 bit", + "Bandwidth": "57.02 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.32 GPixel/s", + "Texture Rate": "89.26 GTexel/s", + "FP32 (float) performance": "2.142 TFLOPS", + "FP64 (double) performance": "89.26 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "4x mini-DisplayPort 1.2" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k1100m.c2430", + "web_page_access_date": "2022/08/24/, 11:20:00", + "Product Name": "NVIDIA Quadro K1100M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "700 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "44.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.648 GPixel/s", + "Texture Rate": "22.59 GTexel/s", + "FP32 (float) performance": "542.2 GFLOPS", + "FP64 (double) performance": "22.59 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2000.c1838", + "web_page_access_date": "2022/08/24/, 11:22:01", + "Product Name": "NVIDIA Quadro K2000", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.632 GPixel/s", + "Texture Rate": "30.53 GTexel/s", + "FP32 (float) performance": "732.7 GFLOPS", + "FP64 (double) performance": "30.53 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "202 mm\n\t\t\t\t\t8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "51 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2095" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2000d.c2021", + "web_page_access_date": "2022/08/24/, 11:24:04", + "Product Name": "NVIDIA Quadro K2000D", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.632 GPixel/s", + "Texture Rate": "30.53 GTexel/s", + "FP32 (float) performance": "732.7 GFLOPS", + "FP64 (double) performance": "30.53 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "202 mm\n\t\t\t\t\t8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "51 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2095" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2100m.c2429", + "web_page_access_date": "2022/08/24/, 11:26:06", + "Product Name": "NVIDIA Quadro K2100M", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "576", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "N15P-Q3-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "667 MHz", + "Memory Clock": "752 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "48.13 GB/s" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "48", + "ROPs": "16", + "SMX Count": "3", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.004 GPixel/s", + "Texture Rate": "32.02 GTexel/s", + "FP32 (float) performance": "768.4 GFLOPS", + "FP64 (double) performance": "32.02 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "55 W", + "Outputs": "No outputs", + "Board Number": "P2039" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k3100m.c2428", + "web_page_access_date": "2022/08/24/, 11:28:08", + "Product Name": "NVIDIA Quadro K3100M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "768", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15E-Q1-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "32", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.30 GPixel/s", + "Texture Rate": "45.18 GTexel/s", + "FP32 (float) performance": "1,084 GFLOPS", + "FP64 (double) performance": "45.18 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k4000.c1841", + "web_page_access_date": "2022/08/24/, 11:30:10", + "Product Name": "NVIDIA Quadro K4000", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "1,269 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "810 MHz", + "Memory Clock": "1404 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "134.8 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "24", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.96 GPixel/s", + "Texture Rate": "51.84 GTexel/s", + "FP32 (float) performance": "1,244 GFLOPS", + "FP64 (double) performance": "51.84 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "80 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2030" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k4100m.c2427", + "web_page_access_date": "2022/08/24/, 11:32:12", + "Product Name": "NVIDIA Quadro K4100M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15E-Q3-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Launch Price": "1,499 USD", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "32", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.94 GPixel/s", + "Texture Rate": "67.78 GTexel/s", + "FP32 (float) performance": "1.627 TFLOPS", + "FP64 (double) performance": "67.78 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5000-sync.c2437", + "web_page_access_date": "2022/08/24/, 11:34:14", + "Product Name": "NVIDIA Quadro K5000 SYNC", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 25th, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "3,299 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "172.8 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.59 GPixel/s", + "Texture Rate": "90.37 GTexel/s", + "FP32 (float) performance": "2.169 TFLOPS", + "FP64 (double) performance": "90.37 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "122 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI2x DisplayPort 1.21x SDI", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5100m.c2425", + "web_page_access_date": "2022/08/24/, 11:36:16", + "Product Name": "NVIDIA Quadro K5100M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15E-Q5-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "771 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.67 GPixel/s", + "Texture Rate": "98.69 GTexel/s", + "FP32 (float) performance": "2.369 TFLOPS", + "FP64 (double) performance": "98.69 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k510m.c2432", + "web_page_access_date": "2022/08/24/, 11:38:19", + "Product Name": "NVIDIA Quadro K510M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Clock Speeds": { + "GPU Clock": "889 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "19.20 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.556 GPixel/s", + "Texture Rate": "14.22 GTexel/s", + "FP32 (float) performance": "341.4 GFLOPS", + "FP64 (double) performance": "14.22 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k600.c1839", + "web_page_access_date": "2022/08/24/, 11:40:21", + "Product Name": "NVIDIA Quadro K600", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "876 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.504 GPixel/s", + "Texture Rate": "14.02 GTexel/s", + "FP32 (float) performance": "336.4 GFLOPS", + "FP64 (double) performance": "14.02 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "41 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2012" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k6000.c2426", + "web_page_access_date": "2022/08/24/, 11:42:23", + "Product Name": "NVIDIA Quadro K6000", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-890-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "5,265 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "797 MHz", + "Boost Clock": "902 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.12 GPixel/s", + "Texture Rate": "216.5 GTexel/s", + "FP32 (float) performance": "5.196 TFLOPS", + "FP64 (double) performance": "1.732 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI2x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "P2081 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k6000-sdi.c2436", + "web_page_access_date": "2022/08/24/, 11:44:25", + "Product Name": "NVIDIA Quadro K6000 SDI", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro\n(Kx000)", + "Production": "End-of-life", + "Launch Price": "8,599 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.12 GPixel/s", + "Texture Rate": "216.5 GTexel/s", + "FP32 (float) performance": "5.196 TFLOPS", + "FP64 (double) performance": "1.732 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "239 W", + "Suggested PSU": "550 W", + "Outputs": "3x DVI2x DisplayPort 1.23x SDI" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k610m.c2431", + "web_page_access_date": "2022/08/24/, 11:46:27", + "Product Name": "NVIDIA Quadro K610M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "N15M-Q2-B-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Quadro Mobile\n(Kx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Clock Speeds": { + "GPU Clock": "980 MHz", + "Memory Clock": "650 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "20.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.920 GPixel/s", + "Texture Rate": "15.68 GTexel/s", + "FP32 (float) performance": "376.3 GFLOPS", + "FP64 (double) performance": "15.68 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tegra-4-gpu.c3227", + "web_page_access_date": "2022/08/24/, 11:48:29", + "Product Name": "NVIDIA Tegra 4 GPU", + "General Specs": { + "Graphics Processor": "Wayne", + "Pixel Shaders": "48", + "Vertex Shaders": "24", + "TMUs": "4", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wayne", + "GPU Variant": "Tegra 4", + "Architecture": "VLIW Vec4", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "11 million", + "Die Size": "85 mm²" + }, + "Integrated Graphics": { + "Release Date": "Aug 1st, 2013", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Clock Speeds": { + "GPU Clock": "672 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Pixel Shaders": "48", + "Vertex Shaders": "24", + "TMUs": "4", + "ROPs": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "2.688 GPixel/s", + "Vertex Rate": "4.032 GVertices/s", + "Texture Rate": "2.688 GTexel/s" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 3.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "N/A", + "Vertex Shader": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tegra-4i-gpu.c3228", + "web_page_access_date": "2022/08/24/, 11:50:31", + "Product Name": "NVIDIA Tegra 4i GPU", + "General Specs": { + "Graphics Processor": "Wayne", + "Pixel Shaders": "48", + "Vertex Shaders": "12", + "TMUs": "2", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Wayne", + "GPU Variant": "Tegra 4i", + "Architecture": "VLIW Vec4", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "11 million", + "Die Size": "85 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 19th, 2013", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Clock Speeds": { + "GPU Clock": "660 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Pixel Shaders": "48", + "Vertex Shaders": "12", + "TMUs": "2", + "ROPs": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.320 GPixel/s", + "Vertex Rate": "1.980 GVertices/s", + "Texture Rate": "1.320 GTexel/s" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "ES 3.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Pixel Shader": "N/A", + "Vertex Shader": "N/A" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k20m.c2029", + "web_page_access_date": "2022/08/24/, 11:52:33", + "Product Name": "NVIDIA Tesla K20m", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2496", + "TMUs": "208", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "3,199 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "706 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "208.0 GB/s" + }, + "Render Config": { + "Shading Units": "2496", + "TMUs": "208", + "ROPs": "40", + "SMX Count": "13", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.71 GPixel/s", + "Texture Rate": "146.8 GTexel/s", + "FP32 (float) performance": "3.524 TFLOPS", + "FP64 (double) performance": "1,175 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2081 SKU 208" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k20s.c2044", + "web_page_access_date": "2022/08/24/, 11:54:35", + "Product Name": "NVIDIA Tesla K20s", + "General Specs": { + "Graphics Processor": "GK110", + "Cores": "2496", + "TMUs": "208", + "ROPs": "40", + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Bus Width": "320 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "3,199 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Memory Clock": "1300 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.2 Gbps effective" + }, + "Memory": { + "Memory Size": "5 GB", + "Memory Type": "GDDR5", + "Memory Bus": "320 bit", + "Bandwidth": "208.0 GB/s" + }, + "Render Config": { + "Shading Units": "2496", + "TMUs": "208", + "ROPs": "40", + "SMX Count": "13", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1280 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.90 GPixel/s", + "Texture Rate": "119.6 GTexel/s", + "FP32 (float) performance": "2.870 TFLOPS", + "FP64 (double) performance": "956.8 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40c.c2505", + "web_page_access_date": "2022/08/24/, 11:56:37", + "Product Name": "NVIDIA Tesla K40c", + "General Specs": { + "Graphics Processor": "GK180", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK180", + "GPU Variant": "GK180-890-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "745 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK180 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40d.c3402", + "web_page_access_date": "2022/08/24/, 11:58:39", + "Product Name": "NVIDIA Tesla K40d", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "745 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40m.c2529", + "web_page_access_date": "2022/08/24/, 12:00:41", + "Product Name": "NVIDIA Tesla K40m", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "745 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40s.c2528", + "web_page_access_date": "2022/08/24/, 12:02:44", + "Product Name": "NVIDIA Tesla K40s", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "745 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40st.c2530", + "web_page_access_date": "2022/08/24/, 12:04:46", + "Product Name": "NVIDIA Tesla K40st", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.50 GPixel/s", + "Texture Rate": "138.0 GTexel/s", + "FP32 (float) performance": "3.312 TFLOPS", + "FP64 (double) performance": "1,104 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k40t.c3403", + "web_page_access_date": "2022/08/24/, 12:06:48", + "Product Name": "NVIDIA Tesla K40t", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Launch Price": "7,699 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "745 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.4 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k120q.c2593", + "web_page_access_date": "2022/08/24/, 12:08:50", + "Product Name": "NVIDIA GRID K120Q", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K1)", + "Production": "End-of-life", + "Launch Price": "125 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k220q.c2592", + "web_page_access_date": "2022/08/24/, 12:10:52", + "Product Name": "NVIDIA GRID K220Q", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K2)", + "Production": "End-of-life", + "Launch Price": "469 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k500.c2597", + "web_page_access_date": "2022/08/24/, 12:12:54", + "Product Name": "NVIDIA GRID K500", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K5)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k520q.c2594", + "web_page_access_date": "2022/08/24/, 12:14:56", + "Product Name": "NVIDIA GRID K520Q", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K5)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k540q.c2595", + "web_page_access_date": "2022/08/24/, 12:16:59", + "Product Name": "NVIDIA GRID K540Q", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K5)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/grid-k560q.c2596", + "web_page_access_date": "2022/08/24/, 12:19:01", + "Product Name": "NVIDIA GRID K560Q", + "General Specs": { + "Graphics Processor": "GK104 x2", + "Cores": "1536 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2014", + "Generation": "GRID\n(K5)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "745 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.84 GPixel/s", + "Texture Rate": "95.36 GTexel/s", + "FP32 (float) performance": "2.289 TFLOPS", + "FP64 (double) performance": "95.36 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-705a.c2386", + "web_page_access_date": "2022/08/24/, 12:21:03", + "Product Name": "NVIDIA GeForce 705A", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119 B1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "950.0 MPixel/s", + "Texture Rate": "3.800 GTexel/s", + "FP32 (float) performance": "91.20 GFLOPS", + "FP64 (double) performance": "7.600 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-710a.c2566", + "web_page_access_date": "2022/08/24/, 12:23:05", + "Product Name": "NVIDIA GeForce 710A", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.752 GPixel/s", + "Texture Rate": "11.50 GTexel/s", + "FP32 (float) performance": "276.1 GFLOPS", + "FP64 (double) performance": "11.50 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-720a.c2666", + "web_page_access_date": "2022/08/24/, 12:25:07", + "Product Name": "NVIDIA GeForce 720A", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Shader Clock": "1876 MHz", + "Boost Clock": "938 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.752 GPixel/s", + "Texture Rate": "15.01 GTexel/s", + "FP32 (float) performance": "180.1 GFLOPS", + "FP64 (double) performance": "15.01 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-800a.c2564", + "web_page_access_date": "2022/08/24/, 12:27:10", + "Product Name": "NVIDIA GeForce 800A", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "950.0 MPixel/s", + "Texture Rate": "3.800 GTexel/s", + "FP32 (float) performance": "91.20 GFLOPS", + "FP64 (double) performance": "7.600 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-800a.c2673", + "web_page_access_date": "2022/08/24/, 12:29:12", + "Product Name": "NVIDIA GeForce 800A", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "475 MHz", + "Shader Clock": "950 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "950.0 MPixel/s", + "Texture Rate": "3.800 GTexel/s", + "FP32 (float) performance": "91.20 GFLOPS", + "FP64 (double) performance": "7.600 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-800m.c2567", + "web_page_access_date": "2022/08/24/, 12:31:14", + "Product Name": "NVIDIA GeForce 800M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "48", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "8", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-805a.c2671", + "web_page_access_date": "2022/08/24/, 12:33:16", + "Product Name": "NVIDIA GeForce 805A", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 22nd, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "Base Clock": "719 MHz", + "Boost Clock": "758 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.064 GPixel/s", + "Texture Rate": "12.13 GTexel/s", + "FP32 (float) performance": "291.1 GFLOPS", + "FP64 (double) performance": "12.13 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-810a.c2604", + "web_page_access_date": "2022/08/24/, 12:35:18", + "Product Name": "NVIDIA GeForce 810A", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 22nd, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "Base Clock": "719 MHz", + "Boost Clock": "758 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.064 GPixel/s", + "Texture Rate": "12.13 GTexel/s", + "FP32 (float) performance": "291.1 GFLOPS", + "FP64 (double) performance": "12.13 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-810m.c2584", + "web_page_access_date": "2022/08/24/, 12:37:20", + "Product Name": "NVIDIA GeForce 810M", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "48", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GL", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 24th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "738 MHz", + "Shader Clock": "1476 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "8", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.476 GPixel/s", + "Texture Rate": "5.904 GTexel/s", + "FP32 (float) performance": "141.7 GFLOPS", + "FP64 (double) performance": "11.81 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-820a.c2570", + "web_page_access_date": "2022/08/24/, 12:39:22", + "Product Name": "NVIDIA GeForce 820A", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N15V-GM", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-825m.c2547", + "web_page_access_date": "2022/08/24/, 12:41:25", + "Product Name": "NVIDIA GeForce 825M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 27th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "941 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.528 GPixel/s", + "Texture Rate": "30.11 GTexel/s", + "FP32 (float) performance": "722.7 GFLOPS", + "FP64 (double) performance": "30.11 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-830a.c2605", + "web_page_access_date": "2022/08/24/, 12:43:27", + "Product Name": "NVIDIA GeForce 830A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Jul 22nd, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1082 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.200 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP32 (float) performance": "588.8 GFLOPS", + "FP64 (double) performance": "18.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-830m.c2560", + "web_page_access_date": "2022/08/24/, 12:45:29", + "Product Name": "NVIDIA GeForce 830M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 12th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1082 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "2", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.200 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP32 (float) performance": "588.8 GFLOPS", + "FP64 (double) performance": "18.40 GFLOPS (1:32)" + }, + "Board Design": { + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-840a.c2569", + "web_page_access_date": "2022/08/24/, 12:47:31", + "Product Name": "NVIDIA GeForce 840A", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.992 GPixel/s", + "Texture Rate": "17.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-840m.c2539", + "web_page_access_date": "2022/08/24/, 12:49:33", + "Product Name": "NVIDIA GeForce 840M", + "General Specs": { + "Graphics Processor": "GM108", + "Cores": "384", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GM108", + "GPU Variant": "N15S-GT", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Mobile Graphics": { + "Release Date": "Mar 12th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1029 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "16", + "ROPs": "8", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.992 GPixel/s", + "Texture Rate": "17.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-705-oem.c2578", + "web_page_access_date": "2022/08/24/, 12:51:36", + "Product Name": "NVIDIA GeForce GT 705 OEM", + "General Specs": { + "Graphics Processor": "GF119", + "Cores": "48", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF119", + "GPU Variant": "GF119-300-A1", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "79 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "874 MHz", + "Shader Clock": "1748 MHz", + "Memory Clock": "825 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1650 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "13.20 GB/s" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "8", + "ROPs": "4", + "SM Count": "1", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.748 GPixel/s", + "Texture Rate": "6.992 GTexel/s", + "FP32 (float) performance": "167.8 GFLOPS", + "FP64 (double) performance": "13.98 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "29 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710.c1990", + "web_page_access_date": "2022/08/24/, 12:53:38", + "Product Name": "NVIDIA GeForce GT 710", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "GK208-203-B1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.816 GPixel/s", + "Texture Rate": "15.26 GTexel/s", + "FP32 (float) performance": "366.3 GFLOPS", + "FP64 (double) performance": "15.26 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2132 SKU 14" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {}, + "Retail boards based on this design (11)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710.c3027", + "web_page_access_date": "2022/08/24/, 12:55:40", + "Product Name": "NVIDIA GeForce GT 710", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.816 GPixel/s", + "Texture Rate": "15.26 GTexel/s", + "FP32 (float) performance": "366.3 GFLOPS", + "FP64 (double) performance": "15.26 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2132 SKU 14" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-710-pcie-x1.c3739", + "web_page_access_date": "2022/08/24/, 12:57:42", + "Product Name": "NVIDIA GeForce GT 710 PCIe x1", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "GK208-203-B1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x1" + }, + "Clock Speeds": { + "GPU Clock": "954 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.816 GPixel/s", + "Texture Rate": "15.26 GTexel/s", + "FP32 (float) performance": "366.3 GFLOPS", + "FP64 (double) performance": "15.26 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "146 mm\n\t\t\t\t\t5.7 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2132 SKU 14" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720.c2702", + "web_page_access_date": "2022/08/24/, 12:59:44", + "Product Name": "NVIDIA GeForce GT 720", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 29th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "49 USD", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "797 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.188 GPixel/s", + "Texture Rate": "12.75 GTexel/s", + "FP32 (float) performance": "306.0 GFLOPS", + "FP64 (double) performance": "12.75 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2131 SKU 10 P2132 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720.c1989", + "web_page_access_date": "2022/08/24/, 13:01:46", + "Product Name": "NVIDIA GeForce GT 720", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GK208-320-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "49 USD", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "967 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.736 GPixel/s", + "Texture Rate": "30.94 GTexel/s", + "FP32 (float) performance": "742.7 GFLOPS", + "FP64 (double) performance": "30.94 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2130 SKU 4" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-720a.c2379", + "web_page_access_date": "2022/08/24/, 13:03:48", + "Product Name": "NVIDIA GeForce GT 720A", + "General Specs": { + "Graphics Processor": "GF117", + "Cores": "96", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GF117", + "GPU Variant": "N14M-GE", + "Architecture": "Fermi 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Shader Clock": "1550 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "8", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "12.40 GTexel/s", + "FP32 (float) performance": "297.6 GFLOPS", + "FP64 (double) performance": "24.80 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730.c3114", + "web_page_access_date": "2022/08/24/, 13:05:51", + "Product Name": "NVIDIA GeForce GT 730", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1070, P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730.c1988", + "web_page_access_date": "2022/08/24/, 13:07:53", + "Product Name": "NVIDIA GeForce GT 730", + "General Specs": { + "Graphics Processor": "GK208B", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208B", + "GPU Variant": "GK208-302-B1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "40.10 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.216 GPixel/s", + "Texture Rate": "28.86 GTexel/s", + "FP32 (float) performance": "692.7 GFLOPS", + "FP64 (double) performance": "28.86 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "38 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "P2131 SKU 10 P2132 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208B GPU Notes": {}, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730.c2590", + "web_page_access_date": "2022/08/24/, 13:09:55", + "Product Name": "NVIDIA GeForce GT 730", + "General Specs": { + "Graphics Processor": "GF108", + "Cores": "96", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GF108", + "GPU Variant": "GF108-400-A1", + "Architecture": "Fermi", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "585 million", + "Die Size": "116 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Shader Clock": "1400 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "4", + "SM Count": "2", + "L1 Cache": "64 KB (per SM)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "22.40 GFLOPS (1:12)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "49 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "P1070, P1071" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "1.1", + "Vulkan": "N/A", + "CUDA": "2.1", + "Shader Model": "5.1" + }, + "Retail boards based on this design (10)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730a.c2387", + "web_page_access_date": "2022/08/24/, 13:11:57", + "Product Name": "NVIDIA GeForce GT 730A", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GT 730M", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.02 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.752 GPixel/s", + "Texture Rate": "23.01 GTexel/s", + "FP32 (float) performance": "552.2 GFLOPS", + "FP64 (double) performance": "23.01 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-730m.c2307", + "web_page_access_date": "2022/08/24/, 13:13:59", + "Product Name": "NVIDIA GeForce GT 730M", + "General Specs": { + "Graphics Processor": "GK208", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK208", + "GPU Variant": "GT 730M", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,020 million", + "Die Size": "87 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 6th, 2014", + "Generation": "GeForce 700M", + "Predecessor": "GeForce 600M", + "Successor": "GeForce 800M", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x8" + }, + "Clock Speeds": { + "GPU Clock": "719 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.752 GPixel/s", + "Texture Rate": "23.01 GTexel/s", + "FP32 (float) performance": "552.2 GFLOPS", + "FP64 (double) performance": "23.01 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK208 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gt-740.c1987", + "web_page_access_date": "2022/08/24/, 13:16:01", + "Product Name": "NVIDIA GeForce GT 740", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "384", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-425-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "May 29th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "89 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "993 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "16", + "SMX Count": "2", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.944 GPixel/s", + "Texture Rate": "31.78 GTexel/s", + "FP32 (float) performance": "762.6 GFLOPS", + "FP64 (double) performance": "31.78 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "64 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 1.4a", + "Power Connectors": "1x 6-pin", + "Board Number": "P2010 SKU 8 P2011 SKU 6" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {}, + "Retail boards based on this design (47)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-660-rev-2.c2631", + "web_page_access_date": "2022/08/24/, 13:18:03", + "Product Name": "NVIDIA GeForce GTX 660 Rev. 2", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "960", + "TMUs": "80", + "ROPs": "24", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 13th, 2014", + "Generation": "GeForce 600", + "Predecessor": "GeForce 500", + "Successor": "GeForce 700", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "77 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "980 MHz", + "Boost Clock": "1032 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "144.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "24", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "20.64 GPixel/s", + "Texture Rate": "82.56 GTexel/s", + "FP32 (float) performance": "1.981 TFLOPS", + "FP64 (double) performance": "82.56 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "140 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004 SKU 11" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-745-oem.c2561", + "web_page_access_date": "2022/08/24/, 13:20:05", + "Product Name": "NVIDIA GeForce GTX 745 OEM", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-220-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1033 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.53 GPixel/s", + "Texture Rate": "24.79 GTexel/s", + "FP32 (float) performance": "793.3 GFLOPS", + "FP64 (double) performance": "24.79 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 2.01x VGA", + "Power Connectors": "None", + "Board Number": "P2012 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-750.c1986", + "web_page_access_date": "2022/08/24/, 13:22:07", + "Product Name": "NVIDIA GeForce GTX 750", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-300-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "119 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "SMM Count": "4", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.36 GPixel/s", + "Texture Rate": "34.72 GTexel/s", + "FP32 (float) performance": "1,111 GFLOPS", + "FP64 (double) performance": "34.72 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 2.0", + "Power Connectors": "None", + "Board Number": "P2010" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (46)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-750-ti.c2548", + "web_page_access_date": "2022/08/24/, 13:24:10", + "Product Name": "NVIDIA GeForce GTX 750 Ti", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-400-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "69 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "86.40 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.36 GPixel/s", + "Texture Rate": "43.40 GTexel/s", + "FP32 (float) performance": "1,389 GFLOPS", + "FP64 (double) performance": "43.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x mini-HDMI 2.0", + "Power Connectors": "None", + "Board Number": "P2010 SKU 50" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (60)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-750-ti-oem.c2462", + "web_page_access_date": "2022/08/24/, 13:26:12", + "Product Name": "NVIDIA GeForce GTX 750 Ti OEM", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "960", + "TMUs": "80", + "ROPs": "24", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "69 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1033 MHz", + "Boost Clock": "1098 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "80", + "ROPs": "24", + "SMX Count": "5", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.96 GPixel/s", + "Texture Rate": "87.84 GTexel/s", + "FP32 (float) performance": "2.108 TFLOPS", + "FP64 (double) performance": "87.84 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-760a.c2565", + "web_page_access_date": "2022/08/24/, 13:28:14", + "Product Name": "NVIDIA GeForce GTX 760A", + "General Specs": { + "Graphics Processor": "GK106", + "Cores": "768", + "TMUs": "64", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK106", + "GPU Variant": "N14E-GL-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,540 million", + "Die Size": "221 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 700A", + "Predecessor": "GeForce 600A", + "Successor": "GeForce 800A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "628 MHz", + "Boost Clock": "657 MHz", + "Memory Clock": "1002 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.13 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "64", + "ROPs": "16", + "SMX Count": "4", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.51 GPixel/s", + "Texture Rate": "42.05 GTexel/s", + "FP32 (float) performance": "1,009 GFLOPS", + "FP64 (double) performance": "42.05 GFLOPS (1:24)" + }, + "Board Design": { + "TDP": "55 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK106 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-850a.c2568", + "web_page_access_date": "2022/08/24/, 13:30:16", + "Product Name": "NVIDIA GeForce GTX 850A", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N15P-GT-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 17th, 2014", + "Generation": "GeForce 800A", + "Predecessor": "GeForce 700A", + "Successor": "GeForce 900A", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "902 MHz", + "Boost Clock": "936 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.98 GPixel/s", + "Texture Rate": "37.44 GTexel/s", + "FP32 (float) performance": "1,198 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-850m.c2538", + "web_page_access_date": "2022/08/24/, 13:32:18", + "Product Name": "NVIDIA GeForce GTX 850M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N15P-GT-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 12th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "902 MHz", + "Memory Clock": "1001 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.03 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.43 GPixel/s", + "Texture Rate": "36.08 GTexel/s", + "FP32 (float) performance": "1,155 GFLOPS", + "FP64 (double) performance": "36.08 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-860m.c2536", + "web_page_access_date": "2022/08/24/, 13:34:20", + "Product Name": "NVIDIA GeForce GTX 860M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "N15P-GX-A1", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 13th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1020 MHz", + "Boost Clock": "1085 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.36 GPixel/s", + "Texture Rate": "43.40 GTexel/s", + "FP32 (float) performance": "1,389 GFLOPS", + "FP64 (double) performance": "43.40 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "E2704 SKU 10" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-860m.c2537", + "web_page_access_date": "2022/08/24/, 13:36:22", + "Product Name": "NVIDIA GeForce GTX 860M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1152", + "TMUs": "96", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15P-GX-A1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 10th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "797 MHz", + "Boost Clock": "915 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.00 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "96", + "ROPs": "16", + "SMX Count": "6", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.96 GPixel/s", + "Texture Rate": "87.84 GTexel/s", + "FP32 (float) performance": "2.108 TFLOPS", + "FP64 (double) performance": "87.84 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2053 SKU 4" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-870m.c2535", + "web_page_access_date": "2022/08/24/, 13:38:25", + "Product Name": "NVIDIA GeForce GTX 870M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "24", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15E-GT-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 12th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "941 MHz", + "Boost Clock": "967 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "120.0 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "24", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "384 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.08 GPixel/s", + "Texture Rate": "108.3 GTexel/s", + "FP32 (float) performance": "2.599 TFLOPS", + "FP64 (double) performance": "108.3 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2053 SKU 3" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-880m.c2534", + "web_page_access_date": "2022/08/24/, 13:40:27", + "Product Name": "NVIDIA GeForce GTX 880M", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "N15E-GX-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 12th, 2014", + "Generation": "GeForce 800M", + "Predecessor": "GeForce 700M", + "Successor": "GeForce 900M", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "954 MHz", + "Boost Clock": "993 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.78 GPixel/s", + "Texture Rate": "127.1 GTexel/s", + "FP32 (float) performance": "3.050 TFLOPS", + "FP64 (double) performance": "127.1 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "122 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2053 SKU 2" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-970.c2620", + "web_page_access_date": "2022/08/24/, 13:42:29", + "Product Name": "NVIDIA GeForce GTX 970", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1664", + "TMUs": "104", + "ROPs": "56", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-200-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 19th, 2014", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "329 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "111 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1050 MHz", + "Boost Clock": "1178 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.4 GB/s" + }, + "Render Config": { + "Shading Units": "1664", + "TMUs": "104", + "ROPs": "56", + "SMM Count": "13", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "65.97 GPixel/s", + "Texture Rate": "122.5 GTexel/s", + "FP32 (float) performance": "3.920 TFLOPS", + "FP64 (double) performance": "122.5 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "148 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "2x 6-pin", + "Board Number": "PG401" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Card Notes": {}, + "Retail boards based on this design (78)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-970m.c2623", + "web_page_access_date": "2022/08/24/, 13:44:31", + "Product Name": "NVIDIA GeForce GTX 970M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GT-A2", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 7th, 2014", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "924 MHz", + "Boost Clock": "1038 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "120.3 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SMM Count": "10", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.82 GPixel/s", + "Texture Rate": "83.04 GTexel/s", + "FP32 (float) performance": "2.657 TFLOPS", + "FP64 (double) performance": "83.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 2 / 5" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-970m.c2881", + "web_page_access_date": "2022/08/24/, 13:46:33", + "Product Name": "NVIDIA GeForce GTX 970M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1280", + "TMUs": "80", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GT-A2", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 7th, 2014", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "924 MHz", + "Boost Clock": "1038 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "192 bit", + "Bandwidth": "120.3 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "48", + "SMM Count": "10", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.82 GPixel/s", + "Texture Rate": "83.04 GTexel/s", + "FP32 (float) performance": "2.657 TFLOPS", + "FP64 (double) performance": "83.04 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 2 / 5" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980.c2621", + "web_page_access_date": "2022/08/24/, 13:48:35", + "Product Name": "NVIDIA GeForce GTX 980", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "GM204-400-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 19th, 2014", + "Generation": "GeForce 900", + "Predecessor": "GeForce 700", + "Successor": "GeForce 10", + "Production": "End-of-life", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "146 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1127 MHz", + "Boost Clock": "1216 MHz", + "Memory Clock": "1753 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "224.4 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "SMM Count": "16", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "77.82 GPixel/s", + "Texture Rate": "155.6 GTexel/s", + "FP32 (float) performance": "4.981 TFLOPS", + "FP64 (double) performance": "155.6 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "165 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 2.03x DisplayPort 1.4a", + "Power Connectors": "2x 6-pin", + "Board Number": "PG401" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (71)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980m.c2622", + "web_page_access_date": "2022/08/24/, 13:50:38", + "Product Name": "NVIDIA GeForce GTX 980M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GX-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 7th, 2014", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1038 MHz", + "Boost Clock": "1127 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "SMM Count": "12", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "72.13 GPixel/s", + "Texture Rate": "108.2 GTexel/s", + "FP32 (float) performance": "3.462 TFLOPS", + "FP64 (double) performance": "108.2 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 3" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-980m.c2746", + "web_page_access_date": "2022/08/24/, 13:52:40", + "Product Name": "NVIDIA GeForce GTX 980M", + "General Specs": { + "Graphics Processor": "GM204", + "Cores": "1536", + "TMUs": "96", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GM204", + "GPU Variant": "N16E-GX-A1", + "Architecture": "Maxwell 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,200 million", + "Die Size": "398 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 7th, 2014", + "Generation": "GeForce 900M", + "Predecessor": "GeForce 800M", + "Successor": "GeForce 10 Mobile", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "540 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.4 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "64", + "SMM Count": "12", + "L1 Cache": "48 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "34.56 GPixel/s", + "Texture Rate": "51.84 GTexel/s", + "FP32 (float) performance": "1.659 TFLOPS", + "FP64 (double) performance": "51.84 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "P2754 SKU 3" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.2", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-titan-black.c2549", + "web_page_access_date": "2022/08/24/, 13:54:42", + "Product Name": "NVIDIA GeForce GTX TITAN BLACK", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2880", + "TMUs": "240", + "ROPs": "48", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-430-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 18th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "11 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "889 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "58.80 GPixel/s", + "Texture Rate": "235.2 GTexel/s", + "FP32 (float) performance": "5.645 TFLOPS", + "FP64 (double) performance": "1.882 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "P2083 SKU 31" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/geforce-gtx-titan-z.c2575", + "web_page_access_date": "2022/08/24/, 13:56:44", + "Product Name": "NVIDIA GeForce GTX TITAN Z", + "General Specs": { + "Graphics Processor": "GK110B x2", + "Cores": "2880 x2", + "TMUs": "240 x2", + "ROPs": "48 x2", + "Memory Size": "6 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "GPU Variant": "GK110-350-B1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "May 28th, 2014", + "Generation": "GeForce 700", + "Predecessor": "GeForce 600", + "Successor": "GeForce 900", + "Production": "End-of-life", + "Launch Price": "2,999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "4 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "705 MHz", + "Boost Clock": "876 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t7 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "2880", + "TMUs": "240", + "ROPs": "48", + "SMX Count": "15", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.56 GPixel/s", + "Texture Rate": "210.2 GTexel/s", + "FP32 (float) performance": "5.046 TFLOPS", + "FP64 (double) performance": "1.682 TFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "62 mm\n\t\t\t\t\t2.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "P2080" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/jetson-tk1-gpu.c3229", + "web_page_access_date": "2022/08/24/, 13:58:46", + "Product Name": "NVIDIA Jetson TK1 GPU", + "General Specs": { + "Graphics Processor": "GK20A", + "Cores": "192", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "GK20A", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Oct 15th, 2014", + "Generation": "Tegra", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Clock Speeds": { + "Base Clock": "756 MHz", + "Boost Clock": "951 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "8", + "ROPs": "4", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.804 GPixel/s", + "Texture Rate": "7.608 GTexel/s", + "FP32 (float) performance": "365.2 GFLOPS", + "FP64 (double) performance": "11.41 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "8 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "ES 3.1", + "OpenCL": "N/A", + "Vulkan": "1.1", + "CUDA": "3.2", + "Shader Model": "5.1" + }, + "GK20A GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k100m.c2618", + "web_page_access_date": "2022/08/24/, 14:00:49", + "Product Name": "NVIDIA Quadro K100M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14M-Q1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 22nd, 2014", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k200m.c2617", + "web_page_access_date": "2022/08/24/, 14:02:51", + "Product Name": "NVIDIA Quadro K200M", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "N14M-Q1", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 22nd, 2014", + "Generation": "Quadro Mobile\n(Kx000M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "8", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.400 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "13.60 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2200.c2601", + "web_page_access_date": "2022/08/24/, 14:04:53", + "Product Name": "NVIDIA Quadro K2200", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 22nd, 2014", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1046 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "44.96 GTexel/s", + "FP32 (float) performance": "1,439 GFLOPS", + "FP64 (double) performance": "44.96 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "202 mm\n\t\t\t\t\t8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "68 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "P2010 SKU 500" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k2200m.c2598", + "web_page_access_date": "2022/08/24/, 14:06:55", + "Product Name": "NVIDIA Quadro K2200M", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 19th, 2014", + "Generation": "Quadro Mobile\n(Kx200M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "667 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "80.19 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "SMM Count": "5", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.67 GPixel/s", + "Texture Rate": "26.68 GTexel/s", + "FP32 (float) performance": "853.8 GFLOPS", + "FP64 (double) performance": "26.68 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "65 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k420.c2599", + "web_page_access_date": "2022/08/24/, 15:21:07", + "Product Name": "NVIDIA Quadro K420", + "General Specs": { + "Graphics Processor": "GK107", + "Cores": "192", + "TMUs": "16", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GK107", + "GPU Variant": "GK107-301-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,270 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 22nd, 2014", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "876 MHz", + "Memory Clock": "891 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1782 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.51 GB/s" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "16", + "SMX Count": "1", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.504 GPixel/s", + "Texture Rate": "14.02 GTexel/s", + "FP32 (float) performance": "336.4 GFLOPS", + "FP64 (double) performance": "14.02 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "41 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "P2012" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "GK107 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k4200.c2602", + "web_page_access_date": "2022/08/24/, 15:23:08", + "Product Name": "NVIDIA Quadro K4200", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1344", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "GPU Variant": "GK104-850-A2", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 22nd, 2014", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "771 MHz", + "Boost Clock": "784 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "172.8 GB/s" + }, + "Render Config": { + "Shading Units": "1344", + "TMUs": "112", + "ROPs": "32", + "SMX Count": "7", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.95 GPixel/s", + "Texture Rate": "87.81 GTexel/s", + "FP32 (float) performance": "2.107 TFLOPS", + "FP64 (double) performance": "87.81 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "108 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k5200.c2603", + "web_page_access_date": "2022/08/24/, 15:25:10", + "Product Name": "NVIDIA Quadro K5200", + "General Specs": { + "Graphics Processor": "GK110B", + "Cores": "2304", + "TMUs": "192", + "ROPs": "48", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK110B", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,080 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 22nd, 2014", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "667 MHz", + "Boost Clock": "771 MHz", + "Memory Clock": "1502 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.3 GB/s" + }, + "Render Config": { + "Shading Units": "2304", + "TMUs": "192", + "ROPs": "48", + "SMX Count": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "37.01 GPixel/s", + "Texture Rate": "148.0 GTexel/s", + "FP32 (float) performance": "3.553 TFLOPS", + "FP64 (double) performance": "148.0 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI2x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "P2081" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.5", + "Shader Model": "5.1" + }, + "GK110B GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/quadro-k620.c2600", + "web_page_access_date": "2022/08/24/, 15:27:13", + "Product Name": "NVIDIA Quadro K620", + "General Specs": { + "Graphics Processor": "GM107", + "Cores": "384", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "GM107", + "GPU Variant": "GM107-850-A2", + "Architecture": "Maxwell", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,870 million", + "Die Size": "148 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 22nd, 2014", + "Generation": "Quadro\n(Kx200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "26 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1058 MHz", + "Boost Clock": "1124 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "16", + "SMM Count": "3", + "L1 Cache": "64 KB (per SMM)", + "L2 Cache": "2 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.98 GPixel/s", + "Texture Rate": "26.98 GTexel/s", + "FP32 (float) performance": "863.2 GFLOPS", + "FP64 (double) performance": "26.98 GFLOPS (1:32)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "160 mm\n\t\t\t\t\t6.3 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "45 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.4a", + "Power Connectors": "None", + "Board Number": "P2012" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "CUDA": "5.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k8.c2619", + "web_page_access_date": "2022/08/24/, 15:29:15", + "Product Name": "NVIDIA Tesla K8", + "General Specs": { + "Graphics Processor": "GK104", + "Cores": "1536", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "GK104", + "Architecture": "Kepler", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "3,540 million", + "Die Size": "294 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 16th, 2014", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "693 MHz", + "Boost Clock": "811 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "128", + "ROPs": "32", + "SMX Count": "8", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.95 GPixel/s", + "Texture Rate": "103.8 GTexel/s", + "FP32 (float) performance": "2.491 TFLOPS", + "FP64 (double) performance": "103.8 GFLOPS (1:24)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "100 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "P2004" + }, + "Graphics Features": { + "DirectX": "12 (11_0)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.0", + "Shader Model": "5.1" + }, + "GK104 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/tesla-k80.c2616", + "web_page_access_date": "2022/08/24/, 15:31:17", + "Product Name": "NVIDIA Tesla K80", + "General Specs": { + "Graphics Processor": "GK210 x2", + "Cores": "2496 x2", + "TMUs": "208 x2", + "ROPs": "48 x2", + "Memory Size": "12 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "GK210", + "GPU Variant": "GK210-885-A1", + "Architecture": "Kepler 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "7,100 million", + "Die Size": "561 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 17th, 2014", + "Generation": "Tesla\n(Kxx)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Clock Speeds": { + "Base Clock": "562 MHz", + "Boost Clock": "824 MHz", + "Memory Clock": "1253 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.6 GB/s" + }, + "Render Config": { + "Shading Units": "2496", + "TMUs": "208", + "ROPs": "48", + "SMX Count": "13", + "L1 Cache": "16 KB (per SMX)", + "L2 Cache": "1536 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "42.85 GPixel/s", + "Texture Rate": "171.4 GTexel/s", + "FP32 (float) performance": "4.113 TFLOPS", + "FP64 (double) performance": "1,371 GFLOPS (1:3)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin", + "Board Number": "P2080 SKU 200" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.1", + "CUDA": "3.7", + "Shader Model": "5.1" + }, + "GK210 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m3900.c2287", + "web_page_access_date": "2022/08/24/, 15:33:19", + "Product Name": "AMD FirePro M3900", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 19th, 2010", + "Generation": "FirePro Mobile\n(Mx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-rg220a.c584", + "web_page_access_date": "2022/08/24/, 15:35:22", + "Product Name": "AMD FirePro RG220A", + "General Specs": { + "Graphics Processor": "M93", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "M93", + "Architecture": "TeraScale", + "Foundry": "TSMC", + "Process Size": "55 nm", + "Transistors": "242 million", + "Die Size": "73 mm²" + }, + "Graphics Card": { + "Release Date": "May 4th, 2010", + "Generation": "FirePro Remote", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "256 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "1" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI", + "Power Connectors": "None", + "Board Number": "B925" + }, + "Graphics Features": { + "DirectX": "10.1 (10_1)", + "OpenGL": "3.3", + "OpenCL": "1.1", + "Vulkan": "N/A", + "Shader Model": "4.1" + }, + "Card Notes": {}, + "M93 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firestream-9350.c1184", + "web_page_access_date": "2022/08/24/, 15:37:24", + "Product Name": "AMD FireStream 9350", + "General Specs": { + "Graphics Processor": "Cypress", + "Cores": "1440", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cypress", + "GPU Variant": "Cypress PRO GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,154 million", + "Die Size": "334 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 1st, 2010", + "Generation": "FireStream", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "1440", + "TMUs": "72", + "ROPs": "32", + "Compute Units": "18", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.40 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "2.016 TFLOPS", + "FP64 (double) performance": "403.2 GFLOPS (1:5)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DisplayPort 1.1", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cypress GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firestream-9370.c1185", + "web_page_access_date": "2022/08/24/, 15:39:26", + "Product Name": "AMD FireStream 9370", + "General Specs": { + "Graphics Processor": "Cypress", + "Cores": "1600", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cypress", + "GPU Variant": "Cypress XT GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,154 million", + "Die Size": "334 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 23rd, 2010", + "Generation": "FireStream", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "825 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "147.2 GB/s" + }, + "Render Config": { + "Shading Units": "1600", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "66.00 GTexel/s", + "FP32 (float) performance": "2.640 TFLOPS", + "FP64 (double) performance": "528.0 GFLOPS (1:5)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x DisplayPort 1.1", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cypress GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6250-igp.c2409", + "web_page_access_date": "2022/08/24/, 15:41:29", + "Product Name": "AMD Radeon HD 6250 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 9th, 2010", + "Generation": "Palm\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "9 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6310-igp.c2286", + "web_page_access_date": "2022/08/24/, 15:43:31", + "Product Name": "AMD Radeon HD 6310 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 9th, 2010", + "Generation": "Palm\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "488 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.952 GPixel/s", + "Texture Rate": "3.904 GTexel/s", + "FP32 (float) performance": "78.08 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6310-igp.c2284", + "web_page_access_date": "2022/08/24/, 15:45:33", + "Product Name": "AMD Radeon HD 6310 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 9th, 2010", + "Generation": "Palm\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "276 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.104 GPixel/s", + "Texture Rate": "2.208 GTexel/s", + "FP32 (float) performance": "44.16 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6330m.c337", + "web_page_access_date": "2022/08/24/, 15:47:35", + "Product Name": "AMD Radeon HD 6330M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6300M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Robson GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6350m.c336", + "web_page_access_date": "2022/08/24/, 15:49:38", + "Product Name": "AMD Radeon HD 6350M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6300M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Robson GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6370m.c335", + "web_page_access_date": "2022/08/24/, 15:51:41", + "Product Name": "AMD Radeon HD 6370M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson XT", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6300M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "120.0 GFLOPS" + }, + "Board Design": { + "TDP": "11 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Robson GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6530m.c330", + "web_page_access_date": "2022/08/24/, 15:53:44", + "Product Name": "AMD Radeon HD 6530M", + "General Specs": { + "Graphics Processor": "Capilano", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Capilano", + "GPU Variant": "Capilano LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6500M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "9.000 GTexel/s", + "FP32 (float) performance": "360.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Capilano GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6550m.c3275", + "web_page_access_date": "2022/08/24/, 15:55:46", + "Product Name": "AMD Radeon HD 6550M", + "General Specs": { + "Graphics Processor": "Lexington", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Lexington", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,154 million", + "Die Size": "334 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6500M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Lexington GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6550m.c329", + "web_page_access_date": "2022/08/24/, 15:57:48", + "Product Name": "AMD Radeon HD 6550M", + "General Specs": { + "Graphics Processor": "Capilano", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Capilano", + "GPU Variant": "Capilano PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6500M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Capilano GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6570m.c1211", + "web_page_access_date": "2022/08/24/, 15:59:50", + "Product Name": "AMD Radeon HD 6570M", + "General Specs": { + "Graphics Processor": "Capilano", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Capilano", + "GPU Variant": "Capilano XT", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 26th, 2010", + "Generation": "Vancouver\n(HD 6500M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-II" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Capilano GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6850.c255", + "web_page_access_date": "2022/08/24/, 16:01:53", + "Product Name": "AMD Radeon HD 6850", + "General Specs": { + "Graphics Processor": "Barts", + "Cores": "960", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0798006)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 21st, 2010", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "179 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "105 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.80 GPixel/s", + "Texture Rate": "37.20 GTexel/s", + "FP32 (float) performance": "1,488 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "198 mm\n\t\t\t\t\t7.8 inches", + "TDP": "127 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1", + "Power Connectors": "1x 6-pin", + "Board Number": "C223" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Barts GPU Notes": {}, + "Retail boards based on this design (18)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6870.c256", + "web_page_access_date": "2022/08/24/, 16:03:55", + "Product Name": "AMD Radeon HD 6870", + "General Specs": { + "Graphics Processor": "Barts", + "Cores": "1120", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0798000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 21st, 2010", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "239 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "170 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "1120", + "TMUs": "56", + "ROPs": "32", + "Compute Units": "14", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "2.016 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "247 mm\n\t\t\t\t\t9.7 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "151 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1", + "Power Connectors": "2x 6-pin", + "Board Number": "C222" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Barts GPU Notes": {}, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6950.c405", + "web_page_access_date": "2022/08/24/, 16:05:57", + "Product Name": "AMD Radeon HD 6950", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "1408", + "TMUs": "88", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0807019)", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 14th, 2010", + "Generation": "Northern Islands\n(HD 6900)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "111 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1408", + "TMUs": "88", + "ROPs": "32", + "Compute Units": "22", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "70.40 GTexel/s", + "FP32 (float) performance": "2.253 TFLOPS", + "FP64 (double) performance": "563.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "286 mm\n\t\t\t\t\t11.3 inches", + "Width": "126 mm\n\t\t\t\t\t5 inches", + "Height": "42 mm\n\t\t\t\t\t1.7 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C216-47" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cayman GPU Notes": {}, + "Retail boards based on this design (27)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6970.c258", + "web_page_access_date": "2022/08/24/, 16:07:59", + "Product Name": "AMD Radeon HD 6970", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0807007)", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 14th, 2010", + "Generation": "Northern Islands\n(HD 6900)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "369 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "80 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "880 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.16 GPixel/s", + "Texture Rate": "84.48 GTexel/s", + "FP32 (float) performance": "2.703 TFLOPS", + "FP64 (double) performance": "675.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "286 mm\n\t\t\t\t\t11.3 inches", + "Width": "126 mm\n\t\t\t\t\t5 inches", + "Height": "42 mm\n\t\t\t\t\t1.7 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C200-47" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cayman GPU Notes": {}, + "Retail boards based on this design (20)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-2270.c1183", + "web_page_access_date": "2022/08/24/, 16:10:01", + "Product Name": "AMD FirePro 2270", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar WS", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2011", + "Generation": "FirePro Multi-View\n(2200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "1", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "15 W", + "Suggested PSU": "200 W", + "Outputs": "1x DMS-59", + "Power Connectors": "None", + "Board Number": "C319" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cedar GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-2270-pcie-x1.c3096", + "web_page_access_date": "2022/08/24/, 16:12:03", + "Product Name": "AMD FirePro 2270 PCIe x1", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar WS", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2011", + "Generation": "FirePro Multi-View\n(2200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x1" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "9.600 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "1", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "15 W", + "Suggested PSU": "200 W", + "Outputs": "1x DMS-59", + "Power Connectors": "None", + "Board Number": "C320" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cedar GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m5950.c1398", + "web_page_access_date": "2022/08/24/, 16:14:05", + "Product Name": "AMD FirePro M5950", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XT GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "FirePro Mobile\n(Mx900)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m8900.c1674", + "web_page_access_date": "2022/08/24/, 16:16:08", + "Product Name": "AMD FirePro M8900", + "General Specs": { + "Graphics Processor": "Blackcomb", + "Cores": "960", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Blackcomb", + "GPU Variant": "Blackcomb XT GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 12th, 2011", + "Generation": "FirePro Mobile\n(Mx900)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "680 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.76 GPixel/s", + "Texture Rate": "32.64 GTexel/s", + "FP32 (float) performance": "1,306 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C296" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Blackcomb GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-v4900.c578", + "web_page_access_date": "2022/08/24/, 16:18:10", + "Product Name": "AMD FirePro V4900", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 1st, 2011", + "Generation": "FirePro\n(Vx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "163 mm\n\t\t\t\t\t6.4 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.1", + "Power Connectors": "None", + "Board Number": "C338-02" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-v5900.c577", + "web_page_access_date": "2022/08/24/, 16:20:12", + "Product Name": "AMD FirePro V5900", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "512", + "TMUs": "32", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman LE WS", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "May 24th, 2011", + "Generation": "FirePro\n(Vx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "32", + "Compute Units": "8", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "19.20 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "614.4 GFLOPS", + "FP64 (double) performance": "153.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "229 mm\n\t\t\t\t\t9 inches", + "Width": "112 mm\n\t\t\t\t\t4.4 inches", + "Height": "19 mm\n\t\t\t\t\t0.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI", + "Power Connectors": "None", + "Board Number": "C203-04" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cayman GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-v7900.c580", + "web_page_access_date": "2022/08/24/, 16:22:14", + "Product Name": "AMD FirePro V7900", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman PRO GL", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "May 24th, 2011", + "Generation": "FirePro\n(Vx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.20 GPixel/s", + "Texture Rate": "58.00 GTexel/s", + "FP32 (float) performance": "1.856 TFLOPS", + "FP64 (double) performance": "464.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "4x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C326" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cayman GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-v7900-sdi.c576", + "web_page_access_date": "2022/08/24/, 16:24:16", + "Product Name": "AMD FirePro V7900 SDI", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman PRO GL", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "May 24th, 2011", + "Generation": "FirePro\n(Vx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.20 GPixel/s", + "Texture Rate": "58.00 GTexel/s", + "FP32 (float) performance": "1.856 TFLOPS", + "FP64 (double) performance": "464.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "4x SDI", + "Power Connectors": "1x 6-pin", + "Board Number": "C326" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Cayman GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e6460.c1738", + "web_page_access_date": "2022/08/24/, 16:26:18", + "Product Name": "AMD Radeon E6460", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "E6460", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 7th, 2011", + "Generation": "Embedded\n(6000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e6760-mxm.c1736", + "web_page_access_date": "2022/08/24/, 16:28:20", + "Product Name": "AMD Radeon E6760 MXM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 2nd, 2011", + "Generation": "Embedded\n(6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e6760-pcie.c3022", + "web_page_access_date": "2022/08/24/, 16:30:22", + "Product Name": "AMD Radeon E6760 PCIe", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 2nd, 2011", + "Generation": "Embedded\n(6000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "175 mm\n\t\t\t\t\t6.9 inches", + "TDP": "45 W", + "Outputs": "6x mini-DisplayPort 1.1" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6230.c2070", + "web_page_access_date": "2022/08/24/, 16:32:25", + "Product Name": "AMD Radeon HD 6230", + "General Specs": { + "Graphics Processor": "Park", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Park", + "GPU Variant": "Park S3 LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 2nd, 2011", + "Generation": "Northern Islands\n(HD 6200)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR2", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Park GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6250.c2066", + "web_page_access_date": "2022/08/24/, 16:34:27", + "Product Name": "AMD Radeon HD 6250", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2011", + "Generation": "Northern Islands\n(HD 6200)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C026, C027" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6290.c2069", + "web_page_access_date": "2022/08/24/, 16:36:29", + "Product Name": "AMD Radeon HD 6290", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 4th, 2011", + "Generation": "Northern Islands\n(HD 6200)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6290-igp.c831", + "web_page_access_date": "2022/08/24/, 16:38:31", + "Product Name": "AMD Radeon HD 6290 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2011", + "Generation": "Wrestler\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "276 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.104 GPixel/s", + "Texture Rate": "2.208 GTexel/s", + "FP32 (float) performance": "44.16 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "9 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6320-igp.c675", + "web_page_access_date": "2022/08/24/, 16:40:33", + "Product Name": "AMD Radeon HD 6320 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Aug 15th, 2011", + "Generation": "Wrestler\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "508 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.032 GPixel/s", + "Texture Rate": "4.064 GTexel/s", + "FP32 (float) performance": "81.28 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6350.c302", + "web_page_access_date": "2022/08/24/, 16:42:35", + "Product Name": "AMD Radeon HD 6350", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2011", + "Generation": "Northern Islands\n(HD 6300)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "23 USD", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t800 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "6.400 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "B890, C090" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6350a.c1874", + "web_page_access_date": "2022/08/24/, 16:44:37", + "Product Name": "AMD Radeon HD 6350A", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 7th, 2011", + "Generation": "All-In-One\n(HD 6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6370d-igp.c833", + "web_page_access_date": "2022/08/24/, 16:46:39", + "Product Name": "AMD Radeon HD 6370D IGP", + "General Specs": { + "Graphics Processor": "SuperSumo", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "SuperSumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 1st, 2011", + "Generation": "Sumo\n(HD 6000)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "444 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.776 GPixel/s", + "Texture Rate": "3.552 GTexel/s", + "FP32 (float) performance": "142.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "SuperSumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6380g-igp.c826", + "web_page_access_date": "2022/08/24/, 16:48:41", + "Product Name": "AMD Radeon HD 6380G IGP", + "General Specs": { + "Graphics Processor": "SuperSumo", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "SuperSumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 14th, 2011", + "Generation": "Sumo\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.600 GPixel/s", + "Texture Rate": "3.200 GTexel/s", + "FP32 (float) performance": "128.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "SuperSumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6390.c2068", + "web_page_access_date": "2022/08/24/, 16:50:44", + "Product Name": "AMD Radeon HD 6390", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 4th, 2011", + "Generation": "Northern Islands\n(HD 6300)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Memory Bus": "128 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "352.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6410d-igp.c2410", + "web_page_access_date": "2022/08/24/, 16:52:46", + "Product Name": "AMD Radeon HD 6410D IGP", + "General Specs": { + "Graphics Processor": "SuperSumo", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "SuperSumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 20th, 2011", + "Generation": "Sumo\n(HD 6000)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "444 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.776 GPixel/s", + "Texture Rate": "3.552 GTexel/s", + "FP32 (float) performance": "142.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "SuperSumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6430m.c334", + "web_page_access_date": "2022/08/24/, 16:54:48", + "Product Name": "AMD Radeon HD 6430M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6400M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "480 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "1.920 GPixel/s", + "Texture Rate": "3.840 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6450.c402", + "web_page_access_date": "2022/08/24/, 16:56:50", + "Product Name": "AMD Radeon HD 6450", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 7th, 2011", + "Generation": "Northern Islands\n(HD 6400)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "55 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "14 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "18 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Caicos GPU Notes": {}, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6450-oem.c1416", + "web_page_access_date": "2022/08/24/, 16:58:52", + "Product Name": "AMD Radeon HD 6450 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Junbonator", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2011", + "Generation": "Northern Islands\n(HD 6400)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "14 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "533 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1066 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.528 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "18 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Caicos GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6450a.c1691", + "web_page_access_date": "2022/08/24/, 17:00:54", + "Product Name": "AMD Radeon HD 6450A", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 7th, 2011", + "Generation": "All-In-One\n(HD 6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "533 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1066 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.528 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6450m.c333", + "web_page_access_date": "2022/08/24/, 17:02:56", + "Product Name": "AMD Radeon HD 6450M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6400M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6470m.c332", + "web_page_access_date": "2022/08/24/, 17:04:58", + "Product Name": "AMD Radeon HD 6470M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810084)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6400M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "5.600 GTexel/s", + "FP32 (float) performance": "224.0 GFLOPS" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Seymour GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6480g-igp.c2413", + "web_page_access_date": "2022/08/24/, 17:07:00", + "Product Name": "AMD Radeon HD 6480G IGP", + "General Specs": { + "Graphics Processor": "SuperSumo", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "SuperSumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 14th, 2011", + "Generation": "Sumo\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "593 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.372 GPixel/s", + "Texture Rate": "4.744 GTexel/s", + "FP32 (float) performance": "189.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "SuperSumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6480g-igp.c827", + "web_page_access_date": "2022/08/24/, 17:09:03", + "Product Name": "AMD Radeon HD 6480G IGP", + "General Specs": { + "Graphics Processor": "Sumo", + "Cores": "240", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 14th, 2011", + "Generation": "Sumo\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "444 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "240", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "1.776 GPixel/s", + "Texture Rate": "5.328 GTexel/s", + "FP32 (float) performance": "213.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Sumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6490.c2475", + "web_page_access_date": "2022/08/24/, 17:11:05", + "Product Name": "AMD Radeon HD 6490", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 4th, 2011", + "Generation": "Northern Islands\n(HD 6400)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR2", + "Memory Bus": "128 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "352.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6490m.c414", + "web_page_access_date": "2022/08/24/, 17:13:07", + "Product Name": "AMD Radeon HD 6490M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour XTX\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6400M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "256.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6490m-mac-edition.c2288", + "web_page_access_date": "2022/08/24/, 17:15:09", + "Product Name": "AMD Radeon HD 6490M Mac Edition", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour XTX\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 2nd, 2011", + "Generation": "Vancouver\n(HD 6400M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "794 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.41 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6510.c2067", + "web_page_access_date": "2022/08/24/, 17:17:11", + "Product Name": "AMD Radeon HD 6510", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0757004)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C021" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6510.c2395", + "web_page_access_date": "2022/08/24/, 17:19:14", + "Product Name": "AMD Radeon HD 6510", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "21.34 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "10.40 GTexel/s", + "FP32 (float) performance": "416.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6520g-igp.c829", + "web_page_access_date": "2022/08/24/, 17:21:16", + "Product Name": "AMD Radeon HD 6520G IGP", + "General Specs": { + "Graphics Processor": "Sumo", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 7th, 2011", + "Generation": "Sumo\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "256.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Sumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6530.c2361", + "web_page_access_date": "2022/08/24/, 17:23:18", + "Product Name": "AMD Radeon HD 6530", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0757004)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "May 14th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1200 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "19.20 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6530d-igp.c835", + "web_page_access_date": "2022/08/24/, 17:25:20", + "Product Name": "AMD Radeon HD 6530D IGP", + "General Specs": { + "Graphics Processor": "Sumo", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 20th, 2011", + "Generation": "Sumo\n(HD 6000)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "444 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.552 GPixel/s", + "Texture Rate": "7.104 GTexel/s", + "FP32 (float) performance": "284.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Sumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6550a.c1693", + "web_page_access_date": "2022/08/24/, 17:27:22", + "Product Name": "AMD Radeon HD 6550A", + "General Specs": { + "Graphics Processor": "Pinewood", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Pinewood", + "GPU Variant": "Pinewood PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 7th, 2011", + "Generation": "All-In-One\n(HD 6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "13.20 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Pinewood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6550d-igp.c836", + "web_page_access_date": "2022/08/24/, 17:29:25", + "Product Name": "AMD Radeon HD 6550D IGP", + "General Specs": { + "Graphics Processor": "Sumo", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 20th, 2011", + "Generation": "Sumo\n(HD 6000)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Sumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6570.c277", + "web_page_access_date": "2022/08/24/, 17:31:27", + "Product Name": "AMD Radeon HD 6570", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0803002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 19th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "79 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "7 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C331" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {}, + "Retail boards based on this design (19)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6570.c3152", + "web_page_access_date": "2022/08/24/, 17:33:29", + "Product Name": "AMD Radeon HD 6570", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames XTX", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "7 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "44 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C239" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Thames GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6570-oem.c408", + "web_page_access_date": "2022/08/24/, 17:35:31", + "Product Name": "AMD Radeon HD 6570 OEM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO-G", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2011", + "Generation": "Northern Islands\n(HD 6500)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "7 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "44 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C239" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6570m.c2289", + "web_page_access_date": "2022/08/24/, 17:37:34", + "Product Name": "AMD Radeon HD 6570M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 25th, 2011", + "Generation": "Vancouver\n(HD 6500M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6610m.c1734", + "web_page_access_date": "2022/08/24/, 17:39:36", + "Product Name": "AMD Radeon HD 6610M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6600M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "432.0 GFLOPS" + }, + "Board Design": { + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6620g-igp.c830", + "web_page_access_date": "2022/08/24/, 17:41:38", + "Product Name": "AMD Radeon HD 6620G IGP", + "General Specs": { + "Graphics Processor": "Sumo", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sumo", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,178 million", + "Die Size": "227 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 7th, 2011", + "Generation": "Sumo\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "444 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "3.552 GPixel/s", + "Texture Rate": "8.880 GTexel/s", + "FP32 (float) performance": "355.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Sumo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6625m.c2207", + "web_page_access_date": "2022/08/24/, 17:43:40", + "Product Name": "AMD Radeon HD 6625M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6600M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "432.0 GFLOPS" + }, + "Board Design": { + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6630m.c327", + "web_page_access_date": "2022/08/24/, 17:45:42", + "Product Name": "AMD Radeon HD 6630M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6600M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6630m-mac-edition.c2294", + "web_page_access_date": "2022/08/24/, 17:47:45", + "Product Name": "AMD Radeon HD 6630M Mac Edition", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6600M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "600 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "256 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "19.20 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "TDP": "26 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6650a.c1726", + "web_page_access_date": "2022/08/24/, 17:49:47", + "Product Name": "AMD Radeon HD 6650A", + "General Specs": { + "Graphics Processor": "Onega", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Onega", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 19th, 2011", + "Generation": "All-In-One\n(HD 6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Onega GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6650m.c326", + "web_page_access_date": "2022/08/24/, 17:51:49", + "Product Name": "AMD Radeon HD 6650M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6600M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6670.c406", + "web_page_access_date": "2022/08/24/, 17:53:52", + "Product Name": "AMD Radeon HD 6670", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 19th, 2011", + "Generation": "Northern Islands\n(HD 6600)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "99 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "35 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "66 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C334" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6670a.c1690", + "web_page_access_date": "2022/08/24/, 17:55:54", + "Product Name": "AMD Radeon HD 6670A", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 19th, 2011", + "Generation": "All-In-One\n(HD 6000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6730m.c325", + "web_page_access_date": "2022/08/24/, 17:57:56", + "Product Name": "AMD Radeon HD 6730M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6700M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6750.c279", + "web_page_access_date": "2022/08/24/, 17:59:58", + "Product Name": "AMD Radeon HD 6750", + "General Specs": { + "Graphics Processor": "Juniper", + "Cores": "720", + "TMUs": "36", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Juniper", + "GPU Variant": "Juniper LE\n\t\t\t\t\t\t\t\t\t\t\n(215-0754009)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 21st, 2011", + "Generation": "Northern Islands\n(HD 6700)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "4 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "720", + "TMUs": "36", + "ROPs": "16", + "Compute Units": "9", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "1,008 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "86 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1", + "Power Connectors": "1x 6-pin", + "Board Number": "C012" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Juniper GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6750m.c324", + "web_page_access_date": "2022/08/24/, 18:02:00", + "Product Name": "AMD Radeon HD 6750M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6700M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6750m-mac-edition.c2248", + "web_page_access_date": "2022/08/24/, 18:04:02", + "Product Name": "AMD Radeon HD 6750M Mac Edition", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 18th, 2011", + "Generation": "Vancouver\n(HD 6700M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "598 MHz", + "Memory Clock": "794 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "50.82 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.784 GPixel/s", + "Texture Rate": "14.35 GTexel/s", + "FP32 (float) performance": "574.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6770.c280", + "web_page_access_date": "2022/08/24/, 18:06:05", + "Product Name": "AMD Radeon HD 6770", + "General Specs": { + "Graphics Processor": "Juniper", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Juniper", + "GPU Variant": "Juniper XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0754013)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 21st, 2011", + "Generation": "Northern Islands\n(HD 6700)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "129 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "35 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "76.80 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.60 GPixel/s", + "Texture Rate": "34.00 GTexel/s", + "FP32 (float) performance": "1,360 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "198 mm\n\t\t\t\t\t7.8 inches", + "TDP": "108 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1", + "Power Connectors": "1x 6-pin", + "Board Number": "C010" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Juniper GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6770m.c323", + "web_page_access_date": "2022/08/24/, 18:08:07", + "Product Name": "AMD Radeon HD 6770M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810001)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6700M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6770m-mac-edition.c2254", + "web_page_access_date": "2022/08/24/, 18:10:09", + "Product Name": "AMD Radeon HD 6770M Mac Edition", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810001)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 28th, 2011", + "Generation": "Vancouver\n(HD 6700M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6790.c283", + "web_page_access_date": "2022/08/24/, 18:12:11", + "Product Name": "AMD Radeon HD 6790", + "General Specs": { + "Graphics Processor": "Barts", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts LE\n\t\t\t\t\t\t\t\t\t\t\n(215-0798002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 4th, 2011", + "Generation": "Northern Islands\n(HD 6700)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "37 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "840 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.44 GPixel/s", + "Texture Rate": "33.60 GTexel/s", + "FP32 (float) performance": "1,344 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "198 mm\n\t\t\t\t\t7.8 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort 1.1", + "Power Connectors": "2x 6-pin", + "Board Number": "C220, C222" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Barts GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6830m.c322", + "web_page_access_date": "2022/08/24/, 18:14:13", + "Product Name": "AMD Radeon HD 6830M", + "General Specs": { + "Graphics Processor": "Granville", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Granville", + "GPU Variant": "Granville LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6800M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.200 GPixel/s", + "Texture Rate": "23.00 GTexel/s", + "FP32 (float) performance": "920.0 GFLOPS" + }, + "Board Design": { + "TDP": "39 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Granville GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6850-x2.c1698", + "web_page_access_date": "2022/08/24/, 18:16:15", + "Product Name": "AMD Radeon HD 6850 X2", + "General Specs": { + "Graphics Processor": "Barts x2", + "Cores": "960 x2", + "TMUs": "48 x2", + "ROPs": "32 x2", + "Memory Size": "2 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0798006)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 19th, 2011", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "105 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "254 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort 1.1", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Barts GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6850m.c1193", + "web_page_access_date": "2022/08/24/, 18:18:17", + "Product Name": "AMD Radeon HD 6850M", + "General Specs": { + "Graphics Processor": "Granville", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Granville", + "GPU Variant": "Granville PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6800M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP32 (float) performance": "1,080 GFLOPS" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Granville GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6870-x2.c1174", + "web_page_access_date": "2022/08/24/, 18:20:19", + "Product Name": "AMD Radeon HD 6870 X2", + "General Specs": { + "Graphics Processor": "Barts x2", + "Cores": "1120 x2", + "TMUs": "56 x2", + "ROPs": "32 x2", + "Memory Size": "1024 MB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0798000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 8th, 2011", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "520 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "170 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "1120", + "TMUs": "56", + "ROPs": "32", + "Compute Units": "14", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP32 (float) performance": "2.016 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "304 mm\n\t\t\t\t\t12 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Barts GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6870m.c320", + "web_page_access_date": "2022/08/24/, 18:22:22", + "Product Name": "AMD Radeon HD 6870M", + "General Specs": { + "Graphics Processor": "Granville", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Granville", + "GPU Variant": "Granville XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0769024)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6800M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP32 (float) performance": "1,080 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Granville GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6930.c306", + "web_page_access_date": "2022/08/24/, 18:24:24", + "Product Name": "AMD Radeon HD 6930", + "General Specs": { + "Graphics Processor": "Cayman", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cayman", + "GPU Variant": "Cayman CE\n\t\t\t\t\t\t\t\t\t\t\n(215-0807105)", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 1st, 2011", + "Generation": "Northern Islands\n(HD 6900)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "180 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "24.00 GPixel/s", + "Texture Rate": "60.00 GTexel/s", + "FP32 (float) performance": "1.920 TFLOPS", + "FP64 (double) performance": "480.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "220 mm\n\t\t\t\t\t8.7 inches", + "TDP": "186 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cayman GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6950m.c319", + "web_page_access_date": "2022/08/24/, 18:26:26", + "Product Name": "AMD Radeon HD 6950M", + "General Specs": { + "Graphics Processor": "Blackcomb", + "Cores": "960", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Blackcomb", + "GPU Variant": "Blackcomb PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "580 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "18.56 GPixel/s", + "Texture Rate": "27.84 GTexel/s", + "FP32 (float) performance": "1,114 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "50 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Blackcomb GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6970-x2.c3037", + "web_page_access_date": "2022/08/24/, 18:28:28", + "Product Name": "AMD Radeon HD 6970 X2", + "General Specs": { + "Graphics Processor": "Antilles x2", + "Cores": "1536 x2", + "TMUs": "96 x2", + "ROPs": "32 x2", + "Memory Size": "2 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Antilles", + "GPU Variant": "Antilles XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0807027)", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Northern Islands\n(HD 6900)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "880 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.16 GPixel/s", + "Texture Rate": "84.48 GTexel/s", + "FP32 (float) performance": "2.703 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "2x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "3x 8-pin" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Antilles GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6970m.c318", + "web_page_access_date": "2022/08/24/, 18:30:31", + "Product Name": "AMD Radeon HD 6970M", + "General Specs": { + "Graphics Processor": "Blackcomb", + "Cores": "960", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Blackcomb", + "GPU Variant": "Blackcomb XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0811000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "680 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.76 GPixel/s", + "Texture Rate": "32.64 GTexel/s", + "FP32 (float) performance": "1,306 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C296" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Blackcomb GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6970m-mac-edition.c2250", + "web_page_access_date": "2022/08/24/, 18:32:33", + "Product Name": "AMD Radeon HD 6970M Mac Edition", + "General Specs": { + "Graphics Processor": "Blackcomb", + "Cores": "960", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Blackcomb", + "GPU Variant": "Blackcomb XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0811000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 25th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "680 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "21.76 GPixel/s", + "Texture Rate": "32.64 GTexel/s", + "FP32 (float) performance": "1,306 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C296" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Blackcomb GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6970m-rebrand.c2447", + "web_page_access_date": "2022/08/24/, 18:34:36", + "Product Name": "AMD Radeon HD 6970M Rebrand", + "General Specs": { + "Graphics Processor": "Broadway", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Broadway", + "GPU Variant": "Broadway XT", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP32 (float) performance": "1,280 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Broadway GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6990.c275", + "web_page_access_date": "2022/08/24/, 18:36:38", + "Product Name": "AMD Radeon HD 6990", + "General Specs": { + "Graphics Processor": "Antilles x2", + "Cores": "1536 x2", + "TMUs": "96 x2", + "ROPs": "32 x2", + "Memory Size": "2 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "256 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Antilles", + "GPU Variant": "Antilles XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0807027)", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,640 million", + "Die Size": "389 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 8th, 2011", + "Generation": "Northern Islands\n(HD 6900)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Launch Price": "699 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "47 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "830 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.56 GPixel/s", + "Texture Rate": "79.68 GTexel/s", + "FP32 (float) performance": "2.550 TFLOPS", + "FP64 (double) performance": "637.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "310 mm\n\t\t\t\t\t12.2 inches", + "Width": "115 mm\n\t\t\t\t\t4.5 inches", + "Height": "40 mm\n\t\t\t\t\t1.6 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI4x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C206-47" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Antilles GPU Notes": {}, + "Retail boards based on this design (11)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6990m.c317", + "web_page_access_date": "2022/08/24/, 18:38:40", + "Product Name": "AMD Radeon HD 6990M", + "General Specs": { + "Graphics Processor": "Blackcomb", + "Cores": "1120", + "TMUs": "56", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Blackcomb", + "GPU Variant": "Blackcomb XTX\n\t\t\t\t\t\t\t\t\t\t\n(216-0811030)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 12th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "715 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "115.2 GB/s" + }, + "Render Config": { + "Shading Units": "1120", + "TMUs": "56", + "ROPs": "32", + "Compute Units": "14", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.88 GPixel/s", + "Texture Rate": "40.04 GTexel/s", + "FP32 (float) performance": "1.602 TFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C296" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Blackcomb GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6990m-rebrand.c2267", + "web_page_access_date": "2022/08/24/, 18:40:43", + "Product Name": "AMD Radeon HD 6990M Rebrand", + "General Specs": { + "Graphics Processor": "Broadway", + "Cores": "800", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Broadway", + "GPU Variant": "Broadway XTX", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 12th, 2011", + "Generation": "Vancouver\n(HD 6900M)", + "Predecessor": "Manhattan", + "Successor": "London", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1100 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "70.40 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP32 (float) performance": "1,280 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Broadway GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7690m.c2295", + "web_page_access_date": "2022/08/24/, 18:42:45", + "Product Name": "AMD Radeon HD 7690M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0833000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Dec 25th, 2011", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.60 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "20 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C017" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7970.c296", + "web_page_access_date": "2022/08/24/, 18:44:47", + "Product Name": "AMD Radeon HD 7970", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0821060)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 22nd, 2011", + "Availability": "Jan 9th, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "191 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "118.4 GTexel/s", + "FP32 (float) performance": "3.789 TFLOPS", + "FP64 (double) performance": "947.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386-37" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (47)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-a300.c1889", + "web_page_access_date": "2022/08/24/, 18:46:50", + "Product Name": "AMD FirePro A300", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "GPU Variant": "A300", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "760 MHz", + "Boost Clock": "905 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "7.240 GPixel/s", + "Texture Rate": "21.72 GTexel/s", + "FP32 (float) performance": "695.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-a320.c1890", + "web_page_access_date": "2022/08/24/, 18:48:52", + "Product Name": "AMD FirePro A320", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "GPU Variant": "A320", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "800 MHz", + "Boost Clock": "955 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "7.640 GPixel/s", + "Texture Rate": "22.92 GTexel/s", + "FP32 (float) performance": "733.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m2000.c1676", + "web_page_access_date": "2022/08/24/, 18:50:54", + "Product Name": "AMD FirePro M2000", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2012", + "Generation": "FirePro Mobile\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m4000.c1677", + "web_page_access_date": "2022/08/24/, 18:52:57", + "Product Name": "AMD FirePro M4000", + "General Specs": { + "Graphics Processor": "Chelsea", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Chelsea", + "GPU Variant": "Chelsea XT GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 27th, 2012", + "Generation": "FirePro Mobile\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C422" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Chelsea GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m6000.c1678", + "web_page_access_date": "2022/08/24/, 18:54:59", + "Product Name": "AMD FirePro M6000", + "General Specs": { + "Graphics Processor": "Heathrow", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Heathrow", + "GPU Variant": "Heathrow XT GL\n\t\t\t\t\t\t\t\t\t\t\n(216-0835033)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2012", + "Generation": "FirePro Mobile\n(Mx000)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP32 (float) performance": "1,024 GFLOPS", + "FP64 (double) performance": "64.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "43 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C425" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Heathrow GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s10000.c802", + "web_page_access_date": "2022/08/24/, 18:57:01", + "Product Name": "AMD FirePro S10000", + "General Specs": { + "Graphics Processor": "Tahiti x2", + "Cores": "1792 x2", + "TMUs": "112 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Zaphod", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "106.4 GTexel/s", + "FP32 (float) performance": "3.405 TFLOPS", + "FP64 (double) performance": "851.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI4x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C387-02" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s10000-passive.c2507", + "web_page_access_date": "2022/08/24/, 18:59:04", + "Product Name": "AMD FirePro S10000 Passive", + "General Specs": { + "Graphics Processor": "Tahiti x2", + "Cores": "1792 x2", + "TMUs": "112 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "106.4 GTexel/s", + "FP32 (float) performance": "3.405 TFLOPS", + "FP64 (double) performance": "851.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s7000.c801", + "web_page_access_date": "2022/08/24/, 19:01:06", + "Product Name": "AMD FirePro S7000", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0828073)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 27th, 2012", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Launch Price": "1,249 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "950 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "76.00 GTexel/s", + "FP32 (float) performance": "2.432 TFLOPS", + "FP64 (double) performance": "152.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "292 mm\n\t\t\t\t\t11.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C414-01" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9000.c1879", + "web_page_access_date": "2022/08/24/, 19:03:09", + "Product Name": "AMD FirePro S9000", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 24th, 2012", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Launch Price": "2,499 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "100.8 GTexel/s", + "FP32 (float) performance": "3.226 TFLOPS", + "FP64 (double) performance": "806.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x DisplayPort 1.2", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9010.c3237", + "web_page_access_date": "2022/08/24/, 19:05:11", + "Product Name": "AMD FirePro S9010", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0821056)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 24th, 2012", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "89.60 GTexel/s", + "FP32 (float) performance": "2.867 TFLOPS", + "FP64 (double) performance": "716.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-v3900.c579", + "web_page_access_date": "2022/08/24/, 19:07:13", + "Product Name": "AMD FirePro V3900", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks GL", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 7th, 2012", + "Generation": "FirePro\n(Vx900)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x DisplayPort 1.1", + "Power Connectors": "None", + "Board Number": "C331" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Turks GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4000.c1880", + "web_page_access_date": "2022/08/24/, 19:09:15", + "Product Name": "AMD FirePro W4000", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn LE GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "825 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "39.60 GTexel/s", + "FP32 (float) performance": "1,267 GFLOPS", + "FP64 (double) performance": "79.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C417" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w5000.c588", + "web_page_access_date": "2022/08/24/, 19:11:18", + "Product Name": "AMD FirePro W5000", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn LE GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "825 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "39.60 GTexel/s", + "FP32 (float) performance": "1,267 GFLOPS", + "FP64 (double) performance": "79.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI2x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C417" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w600.c562", + "web_page_access_date": "2022/08/24/, 19:13:20", + "Product Name": "AMD FirePro W600", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 13th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.00 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS", + "FP64 (double) performance": "48.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "20 mm\n\t\t\t\t\t0.8 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "6x mini-DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C449" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w7000.c587", + "web_page_access_date": "2022/08/24/, 19:15:22", + "Product Name": "AMD FirePro W7000", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0828073)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 13th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "899 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "950 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "76.00 GTexel/s", + "FP32 (float) performance": "2.432 TFLOPS", + "FP64 (double) performance": "152.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "4x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C418-02 C418-08 C418-81" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w8000.c586", + "web_page_access_date": "2022/08/24/, 19:17:25", + "Product Name": "AMD FirePro W8000", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 14th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "1,599 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "2 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "100.8 GTexel/s", + "FP32 (float) performance": "3.226 TFLOPS", + "FP64 (double) performance": "806.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.21x SDI", + "Power Connectors": "2x 6-pin", + "Board Number": "C383" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w9000.c585", + "web_page_access_date": "2022/08/24/, 19:19:27", + "Product Name": "AMD FirePro W9000", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XT GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 14th, 2012", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "3,999 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "975 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "124.8 GTexel/s", + "FP32 (float) performance": "3.994 TFLOPS", + "FP64 (double) performance": "998.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "274 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.21x SDI", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C388" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6250-igp.c2417", + "web_page_access_date": "2022/08/24/, 19:21:29", + "Product Name": "AMD Radeon HD 6250 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 9th, 2012", + "Generation": "Palm\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "276 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.104 GPixel/s", + "Texture Rate": "2.208 GTexel/s", + "FP32 (float) performance": "44.16 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6250-igp.c832", + "web_page_access_date": "2022/08/24/, 19:23:32", + "Product Name": "AMD Radeon HD 6250 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 4th, 2012", + "Generation": "Wrestler\n(HD 6000 Mobile)", + "Predecessor": "Radeon IGP", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "277 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.108 GPixel/s", + "Texture Rate": "2.216 GTexel/s", + "FP32 (float) performance": "44.32 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "9 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6850-1440sp-edition.c2219", + "web_page_access_date": "2022/08/24/, 19:25:34", + "Product Name": "AMD Radeon HD 6850 1440SP Edition", + "General Specs": { + "Graphics Processor": "Cypress", + "Cores": "1440", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cypress", + "GPU Variant": "Cypress PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0735043)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,154 million", + "Die Size": "334 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 21st, 2012", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "105 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "1440", + "TMUs": "72", + "ROPs": "32", + "Compute Units": "18", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.20 GPixel/s", + "Texture Rate": "52.20 GTexel/s", + "FP32 (float) performance": "2.088 TFLOPS", + "FP64 (double) performance": "417.6 GFLOPS (1:5)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "151 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort 1.1", + "Power Connectors": "2x 6-pin", + "Board Number": "E174" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cypress GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7290-igp.c1999", + "web_page_access_date": "2022/08/24/, 19:27:37", + "Product Name": "AMD Radeon HD 7290 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Wrestler\n(HD 7000 Mobile)", + "Predecessor": "Palm", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "276 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.104 GPixel/s", + "Texture Rate": "2.208 GTexel/s", + "FP32 (float) performance": "44.16 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7310-igp.c884", + "web_page_access_date": "2022/08/24/, 19:29:39", + "Product Name": "AMD Radeon HD 7310 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Wrestler\n(HD 7000 Mobile)", + "Predecessor": "Palm", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7330m.c1194", + "web_page_access_date": "2022/08/24/, 19:31:41", + "Product Name": "AMD Radeon HD 7330M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7300M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Robson GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7340-igp.c885", + "web_page_access_date": "2022/08/24/, 19:33:44", + "Product Name": "AMD Radeon HD 7340 IGP", + "General Specs": { + "Graphics Processor": "Loveland", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Loveland", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "450 million", + "Die Size": "75 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Wrestler\n(HD 7000 Mobile)", + "Predecessor": "Palm", + "Successor": "Trinity", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "523 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.092 GPixel/s", + "Texture Rate": "4.184 GTexel/s", + "FP32 (float) performance": "83.68 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Loveland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7350-oem.c632", + "web_page_access_date": "2022/08/24/, 19:35:46", + "Product Name": "AMD Radeon HD 7350 OEM", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7300)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C027" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7350-oem-pci.c2365", + "web_page_access_date": "2022/08/24/, 19:37:49", + "Product Name": "AMD Radeon HD 7350 OEM PCI", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7300)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCI" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.000 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7350m.c1196", + "web_page_access_date": "2022/08/24/, 19:39:51", + "Product Name": "AMD Radeon HD 7350M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7300M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "4.000 GTexel/s", + "FP32 (float) performance": "80.00 GFLOPS" + }, + "Board Design": { + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Robson GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7370m.c1192", + "web_page_access_date": "2022/08/24/, 19:41:53", + "Product Name": "AMD Radeon HD 7370M", + "General Specs": { + "Graphics Processor": "Robson", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Robson", + "GPU Variant": "Robson CE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7300M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "120.0 GFLOPS" + }, + "Board Design": { + "TDP": "11 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Robson GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7400g-igp.c1399", + "web_page_access_date": "2022/08/24/, 19:43:56", + "Product Name": "AMD Radeon HD 7400G IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2nd, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "327 MHz", + "Boost Clock": "424 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "1.696 GPixel/s", + "Texture Rate": "5.088 GTexel/s", + "FP32 (float) performance": "162.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "17 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7420g-igp.c683", + "web_page_access_date": "2022/08/24/, 19:45:58", + "Product Name": "AMD Radeon HD 7420G IGP", + "General Specs": { + "Graphics Processor": "Scrapper Lite", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "480 MHz", + "Boost Clock": "655 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.620 GPixel/s", + "Texture Rate": "5.240 GTexel/s", + "FP32 (float) performance": "167.7 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7430m.c1205", + "web_page_access_date": "2022/08/24/, 19:48:00", + "Product Name": "AMD Radeon HD 7430M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7400M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS" + }, + "Board Design": { + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7450-oem.c300", + "web_page_access_date": "2022/08/24/, 19:50:03", + "Product Name": "AMD Radeon HD 7450 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caimour", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7400)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "533 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1066 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.528 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "18 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {}, + "Retail boards based on this design (6)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7450a.c1688", + "web_page_access_date": "2022/08/24/, 19:52:05", + "Product Name": "AMD Radeon HD 7450A", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2012", + "Generation": "All-In-One\n(HD 7000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7450m.c369", + "web_page_access_date": "2022/08/24/, 19:54:07", + "Product Name": "AMD Radeon HD 7450M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7400M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.800 GPixel/s", + "Texture Rate": "5.600 GTexel/s", + "FP32 (float) performance": "224.0 GFLOPS" + }, + "Board Design": { + "TDP": "7 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Seymour GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7470-oem.c299", + "web_page_access_date": "2022/08/24/, 19:56:10", + "Product Name": "AMD Radeon HD 7470 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Khalidster", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7400)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "750 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "240.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "27 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.1", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7470a.c2394", + "web_page_access_date": "2022/08/24/, 19:58:12", + "Product Name": "AMD Radeon HD 7470A", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2012", + "Generation": "All-In-One\n(HD 7000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7470a.c1692", + "web_page_access_date": "2022/08/24/, 20:00:14", + "Product Name": "AMD Radeon HD 7470A", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2012", + "Generation": "All-In-One\n(HD 7000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.200 GPixel/s", + "Texture Rate": "15.50 GTexel/s", + "FP32 (float) performance": "620.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7470m.c370", + "web_page_access_date": "2022/08/24/, 20:02:17", + "Product Name": "AMD Radeon HD 7470M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810084)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7400M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "256.0 GFLOPS" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Seymour GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7480d-igp.c822", + "web_page_access_date": "2022/08/24/, 20:04:19", + "Product Name": "AMD Radeon HD 7480D IGP", + "General Specs": { + "Graphics Processor": "Scrapper Lite", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2nd, 2012", + "Generation": "Trinity\n(HD 7000)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Launch Price": "53 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.880 GPixel/s", + "Texture Rate": "5.760 GTexel/s", + "FP32 (float) performance": "184.3 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7490m.c371", + "web_page_access_date": "2022/08/24/, 20:06:21", + "Product Name": "AMD Radeon HD 7490M", + "General Specs": { + "Graphics Processor": "Seymour", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Seymour", + "GPU Variant": "Seymour XTX\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7400M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "950 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.8 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "30.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "256.0 GFLOPS" + }, + "Board Design": { + "TDP": "9 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Seymour GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7500g-igp.c684", + "web_page_access_date": "2022/08/24/, 20:08:23", + "Product Name": "AMD Radeon HD 7500G IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "327 MHz", + "Boost Clock": "424 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.392 GPixel/s", + "Texture Rate": "6.784 GTexel/s", + "FP32 (float) performance": "217.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "17 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7510m.c372", + "web_page_access_date": "2022/08/24/, 20:10:25", + "Product Name": "AMD Radeon HD 7510M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "9.000 GTexel/s", + "FP32 (float) performance": "360.0 GFLOPS" + }, + "Board Design": { + "TDP": "11 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7520g-igp.c685", + "web_page_access_date": "2022/08/24/, 20:12:28", + "Product Name": "AMD Radeon HD 7520G IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 6th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "496 MHz", + "Boost Clock": "686 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "2.744 GPixel/s", + "Texture Rate": "8.232 GTexel/s", + "FP32 (float) performance": "263.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7530m.c373", + "web_page_access_date": "2022/08/24/, 20:14:30", + "Product Name": "AMD Radeon HD 7530M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "400", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "360.0 GFLOPS" + }, + "Board Design": { + "TDP": "11 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7540d-igp.c823", + "web_page_access_date": "2022/08/24/, 20:16:32", + "Product Name": "AMD Radeon HD 7540D IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2nd, 2012", + "Generation": "Trinity\n(HD 7000)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Launch Price": "67 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "760 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "3.040 GPixel/s", + "Texture Rate": "9.120 GTexel/s", + "FP32 (float) performance": "291.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7550m.c1209", + "web_page_access_date": "2022/08/24/, 20:18:35", + "Product Name": "AMD Radeon HD 7550M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "450 MHz", + "Boost Clock": "550 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "11.00 GTexel/s", + "FP32 (float) performance": "440.0 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7550m.c2290", + "web_page_access_date": "2022/08/24/, 20:20:37", + "Product Name": "AMD Radeon HD 7550M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "TDP": "14 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7560d-igp.c824", + "web_page_access_date": "2022/08/24/, 20:22:39", + "Product Name": "AMD Radeon HD 7560D IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2nd, 2012", + "Generation": "Trinity\n(HD 7000)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Launch Price": "101 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "760 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "6.080 GPixel/s", + "Texture Rate": "12.16 GTexel/s", + "FP32 (float) performance": "389.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7560g-igp.c2408", + "web_page_access_date": "2022/08/24/, 20:24:42", + "Product Name": "AMD Radeon HD 7560G IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "496 MHz", + "Boost Clock": "760 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "6.080 GPixel/s", + "Texture Rate": "12.16 GTexel/s", + "FP32 (float) performance": "389.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7570.c393", + "web_page_access_date": "2022/08/24/, 20:26:44", + "Product Name": "AMD Radeon HD 7570", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO-L", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7500)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C245, C334" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {}, + "Retail boards based on this design (5)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7570m.c399", + "web_page_access_date": "2022/08/24/, 20:28:47", + "Product Name": "AMD Radeon HD 7570M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "8.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "480.0 GFLOPS" + }, + "Board Design": { + "TDP": "13 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7590m.c376", + "web_page_access_date": "2022/08/24/, 20:30:49", + "Product Name": "AMD Radeon HD 7590M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0833000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7500M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "TDP": "18 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7600g-igp.c1400", + "web_page_access_date": "2022/08/24/, 20:32:51", + "Product Name": "AMD Radeon HD 7600G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "320 MHz", + "Boost Clock": "424 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "3.392 GPixel/s", + "Texture Rate": "10.18 GTexel/s", + "FP32 (float) performance": "325.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "19 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7610m.c377", + "web_page_access_date": "2022/08/24/, 20:34:54", + "Product Name": "AMD Radeon HD 7610M", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "9.000 GTexel/s", + "FP32 (float) performance": "360.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7620g-igp.c686", + "web_page_access_date": "2022/08/24/, 20:36:56", + "Product Name": "AMD Radeon HD 7620G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "360 MHz", + "Boost Clock": "497 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "3.976 GPixel/s", + "Texture Rate": "11.93 GTexel/s", + "FP32 (float) performance": "381.7 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7630m.c378", + "web_page_access_date": "2022/08/24/, 20:38:58", + "Product Name": "AMD Radeon HD 7630M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames LP", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "432.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Thames GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7640g-igp.c701", + "web_page_access_date": "2022/08/24/, 20:41:00", + "Product Name": "AMD Radeon HD 7640G IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "496 MHz", + "Boost Clock": "655 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "5.240 GPixel/s", + "Texture Rate": "10.48 GTexel/s", + "FP32 (float) performance": "335.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7650a.c1694", + "web_page_access_date": "2022/08/24/, 20:43:02", + "Product Name": "AMD Radeon HD 7650A", + "General Specs": { + "Graphics Processor": "Onega", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Onega", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2012", + "Generation": "All-In-One\n(HD 7000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Onega GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7650m.c1210", + "web_page_access_date": "2022/08/24/, 20:45:05", + "Product Name": "AMD Radeon HD 7650M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP32 (float) performance": "432.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Thames GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7650m-rebrand.c2291", + "web_page_access_date": "2022/08/24/, 20:47:07", + "Product Name": "AMD Radeon HD 7650M Rebrand", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0810005)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 28th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "485 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.880 GPixel/s", + "Texture Rate": "11.64 GTexel/s", + "FP32 (float) performance": "465.6 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7660d-igp.c825", + "web_page_access_date": "2022/08/24/, 20:49:09", + "Product Name": "AMD Radeon HD 7660D IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 2nd, 2012", + "Generation": "Trinity\n(HD 7000)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Launch Price": "122 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "760 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "6.080 GPixel/s", + "Texture Rate": "18.24 GTexel/s", + "FP32 (float) performance": "583.7 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7660g-igp.c688", + "web_page_access_date": "2022/08/24/, 20:51:11", + "Product Name": "AMD Radeon HD 7660G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 15th, 2012", + "Generation": "Trinity\n(HD 7000 Mobile)", + "Predecessor": "Sumo", + "Successor": "Richland", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "686 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.488 GPixel/s", + "Texture Rate": "16.46 GTexel/s", + "FP32 (float) performance": "526.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7670-oem.c392", + "web_page_access_date": "2022/08/24/, 20:53:13", + "Product Name": "AMD Radeon HD 7670 OEM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 5th, 2012", + "Generation": "Southern Islands\n(HD 7600)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "512 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "145 mm\n\t\t\t\t\t5.7 inches", + "TDP": "66 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x DisplayPort 1.11x VGA", + "Power Connectors": "None", + "Board Number": "C243, C331, C337" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7670a.c1689", + "web_page_access_date": "2022/08/24/, 20:55:16", + "Product Name": "AMD Radeon HD 7670A", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0803000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 5th, 2012", + "Generation": "All-In-One\n(HD 7000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7670m.c380", + "web_page_access_date": "2022/08/24/, 20:57:18", + "Product Name": "AMD Radeon HD 7670M", + "General Specs": { + "Graphics Processor": "Thames", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Thames", + "GPU Variant": "Thames XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0833000)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 17th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Thames GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7670m-rebrand.c2321", + "web_page_access_date": "2022/08/24/, 20:59:20", + "Product Name": "AMD Radeon HD 7670M Rebrand", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810001)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 1st, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "16", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.600 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7690m-rebrand.c1199", + "web_page_access_date": "2022/08/24/, 21:01:22", + "Product Name": "AMD Radeon HD 7690M Rebrand", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0810001)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "576.0 GFLOPS" + }, + "Board Design": { + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7690m-xt-rebrand.c2296", + "web_page_access_date": "2022/08/24/, 21:03:25", + "Product Name": "AMD Radeon HD 7690M XT Rebrand", + "General Specs": { + "Graphics Processor": "Whistler", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Whistler", + "GPU Variant": "Whistler XTX", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "104 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 4th, 2012", + "Generation": "London\n(HD 7600M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "51.20 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.800 GPixel/s", + "Texture Rate": "17.40 GTexel/s", + "FP32 (float) performance": "696.0 GFLOPS" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Whistler GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7730m.c1200", + "web_page_access_date": "2022/08/24/, 21:05:27", + "Product Name": "AMD Radeon HD 7730M", + "General Specs": { + "Graphics Processor": "Chelsea", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Chelsea", + "GPU Variant": "Chelsea LE\n\t\t\t\t\t\t\t\t\t\t\n(216-0834065)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7700M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "575 MHz", + "Boost Clock": "675 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Chelsea GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7750.c309", + "web_page_access_date": "2022/08/24/, 21:07:29", + "Product Name": "AMD Radeon HD 7750", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 15th, 2012", + "Generation": "Southern Islands\n(HD 7700)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "61 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "25.60 GTexel/s", + "FP32 (float) performance": "819.2 GFLOPS", + "FP64 (double) performance": "51.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C441, C445" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (63)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7750m.c384", + "web_page_access_date": "2022/08/24/, 21:09:31", + "Product Name": "AMD Radeon HD 7750M", + "General Specs": { + "Graphics Processor": "Chelsea", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Chelsea", + "GPU Variant": "Chelsea PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7700M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "575 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "9.200 GPixel/s", + "Texture Rate": "18.40 GTexel/s", + "FP32 (float) performance": "588.8 GFLOPS", + "FP64 (double) performance": "36.80 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "28 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Chelsea GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7770-ghz-edition.c308", + "web_page_access_date": "2022/08/24/, 21:11:33", + "Product Name": "AMD Radeon HD 7770 GHz Edition", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 15th, 2012", + "Generation": "Southern Islands\n(HD 7700)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "159 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "97 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "40.00 GTexel/s", + "FP32 (float) performance": "1,280 GFLOPS", + "FP64 (double) performance": "80.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "80 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C441, C468" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (50)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7770m.c1204", + "web_page_access_date": "2022/08/24/, 21:13:35", + "Product Name": "AMD Radeon HD 7770M", + "General Specs": { + "Graphics Processor": "Chelsea", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Chelsea", + "GPU Variant": "Chelsea XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7700M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "32 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Chelsea GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7850.c1055", + "web_page_access_date": "2022/08/24/, 21:15:37", + "Product Name": "AMD Radeon HD 7850", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0828062)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 5th, 2012", + "Generation": "Southern Islands\n(HD 7800)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "71 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "860 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.52 GPixel/s", + "Texture Rate": "55.04 GTexel/s", + "FP32 (float) performance": "1.761 TFLOPS", + "FP64 (double) performance": "110.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "130 W", + "Suggested PSU": "300 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C401-47" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (82)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7850m.c386", + "web_page_access_date": "2022/08/24/, 21:17:39", + "Product Name": "AMD Radeon HD 7850M", + "General Specs": { + "Graphics Processor": "Heathrow", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Heathrow", + "GPU Variant": "Heathrow PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7800M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "675 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "27.00 GTexel/s", + "FP32 (float) performance": "864.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "40 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Heathrow GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7870-ghz-edition.c339", + "web_page_access_date": "2022/08/24/, 21:19:42", + "Product Name": "AMD Radeon HD 7870 GHz Edition", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0828047)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 5th, 2012", + "Generation": "Southern Islands\n(HD 7800)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "349 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "95 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "80.00 GTexel/s", + "FP32 (float) performance": "2.560 TFLOPS", + "FP64 (double) performance": "160.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C401-47" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (47)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7870-xt.c1860", + "web_page_access_date": "2022/08/24/, 21:21:44", + "Product Name": "AMD Radeon HD 7870 XT", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti LE\n\t\t\t\t\t\t\t\t\t\t\n(215-0821122)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 19th, 2012", + "Generation": "Southern Islands\n(HD 7800)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "270 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "95 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "93.60 GTexel/s", + "FP32 (float) performance": "2.995 TFLOPS", + "FP64 (double) performance": "748.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C474" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7870m.c387", + "web_page_access_date": "2022/08/24/, 21:23:46", + "Product Name": "AMD Radeon HD 7870M", + "General Specs": { + "Graphics Processor": "Heathrow", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Heathrow", + "GPU Variant": "Heathrow XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0835033)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7800M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "32.00 GTexel/s", + "FP32 (float) performance": "1,024 GFLOPS", + "FP64 (double) performance": "64.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Heathrow GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950.c307", + "web_page_access_date": "2022/08/24/, 21:25:48", + "Product Name": "AMD Radeon HD 7950", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0821056)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "118 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "89.60 GTexel/s", + "FP32 (float) performance": "2.867 TFLOPS", + "FP64 (double) performance": "716.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "278 mm\n\t\t\t\t\t10.9 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C386-37" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (35)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950-boost.c1181", + "web_page_access_date": "2022/08/24/, 21:27:50", + "Product Name": "AMD Radeon HD 7950 Boost", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO2\n\t\t\t\t\t\t\t\t\t\t\n(215-0821282)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 22nd, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "118 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "103.6 GTexel/s", + "FP32 (float) performance": "3.315 TFLOPS", + "FP64 (double) performance": "828.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (17)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950-monica-bios-1.c3076", + "web_page_access_date": "2022/08/24/, 21:29:52", + "Product Name": "AMD Radeon HD 7950 Monica BIOS 1", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0821056)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "118 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "88.80 GTexel/s", + "FP32 (float) performance": "2.842 TFLOPS", + "FP64 (double) performance": "710.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "185 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950-monica-bios-2.c3077", + "web_page_access_date": "2022/08/24/, 21:31:55", + "Product Name": "AMD Radeon HD 7950 Monica BIOS 2", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0821056)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 31st, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "118 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP32 (float) performance": "1,229 GFLOPS", + "FP64 (double) performance": "307.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950m.c1293", + "web_page_access_date": "2022/08/24/, 21:33:57", + "Product Name": "AMD Radeon HD 7950M", + "General Specs": { + "Graphics Processor": "Wimbledon", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Wimbledon", + "GPU Variant": "Wimbledon PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7900M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.40 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP32 (float) performance": "1.792 TFLOPS" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "75 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Wimbledon GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7970-ghz-edition.c365", + "web_page_access_date": "2022/08/24/, 21:35:59", + "Product Name": "AMD Radeon HD 7970 GHz Edition", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XT2\n\t\t\t\t\t\t\t\t\t\t\n(215-0821065)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 22nd, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "191 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.60 GPixel/s", + "Texture Rate": "134.4 GTexel/s", + "FP32 (float) performance": "4.301 TFLOPS", + "FP64 (double) performance": "1,075 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386-37" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (16)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7970-x2.c730", + "web_page_access_date": "2022/08/24/, 21:38:01", + "Product Name": "AMD Radeon HD 7970 X2", + "General Specs": { + "Graphics Processor": "New Zealand x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "New Zealand", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 31st, 2012", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "899 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "37 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "118.4 GTexel/s", + "FP32 (float) performance": "3.789 TFLOPS", + "FP64 (double) performance": "947.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "Length": "308 mm\n\t\t\t\t\t12.1 inches", + "Width": "137 mm\n\t\t\t\t\t5.4 inches", + "Height": "62 mm\n\t\t\t\t\t2.4 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "2x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "3x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "New Zealand GPU Notes": {}, + "Retail boards based on this design (9)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7970m.c388", + "web_page_access_date": "2022/08/24/, 21:40:03", + "Product Name": "AMD Radeon HD 7970M", + "General Specs": { + "Graphics Processor": "Wimbledon", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Wimbledon", + "GPU Variant": "Wimbledon XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0836036)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 24th, 2012", + "Generation": "London\n(HD 7900M)", + "Predecessor": "Vancouver", + "Successor": "Solar System", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.20 GPixel/s", + "Texture Rate": "68.00 GTexel/s", + "FP32 (float) performance": "2.176 TFLOPS", + "FP64 (double) performance": "136.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C429" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Wimbledon GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/wii-u-gpu.c1903", + "web_page_access_date": "2022/08/24/, 21:42:05", + "Product Name": "AMD Wii U GPU", + "General Specs": { + "Graphics Processor": "Latte", + "Cores": "160", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Latte", + "Architecture": "TeraScale 2", + "Foundry": "Renesas", + "Process Size": "40 nm", + "Transistors": "880 million", + "Die Size": "146 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 18th, 2012", + "Generation": "Console GPU\n(Nintendo)", + "Production": "End-of-life", + "Launch Price": "349 USD" + }, + "Clock Speeds": { + "GPU Clock": "550 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "12.80 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "8.800 GTexel/s", + "FP32 (float) performance": "176.0 GFLOPS" + }, + "Board Design": { + "Length": "269 mm\n\t\t\t\t\t10.6 inches", + "Width": "172 mm\n\t\t\t\t\t6.8 inches", + "Height": "46 mm\n\t\t\t\t\t1.8 inches", + "Weight": "1.6 kg (3.5 lbs)", + "TDP": "33 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Latte GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m4100.c2520", + "web_page_access_date": "2022/08/24/, 21:44:08", + "Product Name": "AMD FirePro M4100", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 16th, 2013", + "Generation": "FirePro Mobile\n(Mx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "670 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.360 GPixel/s", + "Texture Rate": "16.08 GTexel/s", + "FP32 (float) performance": "514.6 GFLOPS", + "FP64 (double) performance": "32.16 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m4150.c3033", + "web_page_access_date": "2022/08/24/, 21:46:10", + "Product Name": "AMD FirePro M4150", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 16th, 2013", + "Generation": "FirePro Mobile\n(Mx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "715 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.720 GPixel/s", + "Texture Rate": "17.16 GTexel/s", + "FP32 (float) performance": "549.1 GFLOPS", + "FP64 (double) performance": "34.32 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m5100.c2517", + "web_page_access_date": "2022/08/24/, 21:48:12", + "Product Name": "AMD FirePro M5100", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 16th, 2013", + "Generation": "FirePro Mobile\n(Mx100)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "775 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.40 GPixel/s", + "Texture Rate": "31.00 GTexel/s", + "FP32 (float) performance": "992.0 GFLOPS", + "FP64 (double) performance": "62.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-m6100.c2516", + "web_page_access_date": "2022/08/24/, 21:50:14", + "Product Name": "AMD FirePro M6100", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 16th, 2013", + "Generation": "FirePro Mobile\n(Mx100)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1075 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.20 GPixel/s", + "Texture Rate": "51.60 GTexel/s", + "FP32 (float) performance": "1.651 TFLOPS", + "FP64 (double) performance": "103.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C600" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-r5000.c2037", + "web_page_access_date": "2022/08/24/, 21:52:16", + "Product Name": "AMD FirePro R5000", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn LE GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 25th, 2013", + "Generation": "FirePro Remote", + "Production": "End-of-life", + "Launch Price": "1,099 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "825 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "39.60 GTexel/s", + "FP32 (float) performance": "1,267 GFLOPS", + "FP64 (double) performance": "79.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w5000-dvi.c2036", + "web_page_access_date": "2022/08/24/, 21:54:19", + "Product Name": "AMD FirePro W5000 DVI", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "768", + "TMUs": "48", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn LE GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 25th, 2013", + "Generation": "FirePro\n(Wx000)", + "Production": "End-of-life", + "Launch Price": "599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "825 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "102.4 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "32", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "39.60 GTexel/s", + "FP32 (float) performance": "1,267 GFLOPS", + "FP64 (double) performance": "79.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "190 mm\n\t\t\t\t\t7.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI", + "Power Connectors": "None", + "Board Number": "C404" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/playstation-4-gpu.c2085", + "web_page_access_date": "2022/08/24/, 21:56:21", + "Product Name": "AMD Playstation 4 GPU", + "General Specs": { + "Graphics Processor": "Liverpool", + "Cores": "1152", + "TMUs": "72", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Liverpool", + "GPU Variant": "CXD90026BG", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "unknown", + "Die Size": "348 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 24th, 2013", + "Generation": "Console GPU\n(Sony)", + "Production": "End-of-life", + "Launch Price": "399 USD" + }, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1152", + "TMUs": "72", + "ROPs": "32", + "Compute Units": "18" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "1.843 TFLOPS (1:1)", + "FP32 (float) performance": "1.843 TFLOPS" + }, + "Board Design": { + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "275 mm\n\t\t\t\t\t10.8 inches", + "Height": "53 mm\n\t\t\t\t\t2.1 inches", + "Weight": "2.8 kg (6.2 lbs)", + "TDP": "75 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.1*", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "5.1" + }, + "Liverpool GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6610.c2264", + "web_page_access_date": "2022/08/24/, 21:58:24", + "Product Name": "AMD Radeon HD 6610", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0757004)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 20th, 2013", + "Generation": "Northern Islands\n(HD 6600)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6770-green-edition.c2354", + "web_page_access_date": "2022/08/24/, 22:00:26", + "Product Name": "AMD Radeon HD 6770 Green Edition", + "General Specs": { + "Graphics Processor": "Juniper", + "Cores": "720", + "TMUs": "36", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Juniper", + "GPU Variant": "Juniper LE\n\t\t\t\t\t\t\t\t\t\t\n(215-0754009)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,040 million", + "Die Size": "166 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 19th, 2013", + "Generation": "Northern Islands\n(HD 6700)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "21.34 GB/s" + }, + "Render Config": { + "Shading Units": "720", + "TMUs": "36", + "ROPs": "16", + "Compute Units": "9", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "1,008 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "86 W", + "Suggested PSU": "250 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Juniper GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-6870-1600sp-edition.c2218", + "web_page_access_date": "2022/08/26/, 14:50:53", + "Product Name": "AMD Radeon HD 6870 1600SP Edition", + "General Specs": { + "Graphics Processor": "Cypress", + "Cores": "1600", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Cypress", + "GPU Variant": "Cypress XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0735033)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "2,154 million", + "Die Size": "334 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 14th, 2013", + "Generation": "Northern Islands\n(HD 6800)", + "Predecessor": "Evergreen", + "Successor": "Southern Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "170 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "1600", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.20 GPixel/s", + "Texture Rate": "68.00 GTexel/s", + "FP32 (float) performance": "2.720 TFLOPS", + "FP64 (double) performance": "544.0 GFLOPS (1:5)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "282 mm\n\t\t\t\t\t11.1 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.3a2x mini-DisplayPort 1.1", + "Power Connectors": "2x 6-pin", + "Board Number": "C008, E140" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cypress GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7510-oem.c2138", + "web_page_access_date": "2022/08/26/, 14:52:55", + "Product Name": "AMD Radeon HD 7510 OEM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "320", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks LE", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 1st, 2013", + "Generation": "Southern Islands\n(HD 7500)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "21.34 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "4", + "Compute Units": "4", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "10.40 GTexel/s", + "FP32 (float) performance": "416.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C333" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7570-oem.c2393", + "web_page_access_date": "2022/08/26/, 14:54:57", + "Product Name": "AMD Radeon HD 7570 OEM", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0757004)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 20th, 2013", + "Generation": "Southern Islands\n(HD 7500)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7720-oem.c2208", + "web_page_access_date": "2022/08/26/, 14:57:00", + "Product Name": "AMD Radeon HD 7720 OEM", + "General Specs": { + "Graphics Processor": "Barts", + "Cores": "800", + "TMUs": "40", + "ROPs": "32", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Barts", + "GPU Variant": "Barts LE\n\t\t\t\t\t\t\t\t\t\t\n(215-0798002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "1,700 million", + "Die Size": "255 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 15th, 2013", + "Generation": "Southern Islands\n(HD 7700)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "840 MHz", + "Memory Clock": "1050 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "134.4 GB/s" + }, + "Render Config": { + "Shading Units": "800", + "TMUs": "40", + "ROPs": "32", + "Compute Units": "10", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.88 GPixel/s", + "Texture Rate": "33.60 GTexel/s", + "FP32 (float) performance": "1,344 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "198 mm\n\t\t\t\t\t7.8 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.3a1x DisplayPort 1.1" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Barts GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7730.c2127", + "web_page_access_date": "2022/08/26/, 14:59:02", + "Product Name": "AMD Radeon HD 7730", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "May 1st, 2013", + "Generation": "Southern Islands\n(HD 7700)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "59 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "11 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "614.4 GFLOPS", + "FP64 (double) performance": "38.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "47 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C445" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7790.c2100", + "web_page_access_date": "2022/08/26/, 15:01:05", + "Product Name": "AMD Radeon HD 7790", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0839039)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 22nd, 2013", + "Generation": "Southern Islands\n(HD 7700)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "93 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "56.00 GTexel/s", + "FP32 (float) performance": "1.792 TFLOPS", + "FP64 (double) performance": "112.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Bonaire GPU Notes": {}, + "Retail boards based on this design (31)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7950-mac-edition.c2142", + "web_page_access_date": "2022/08/26/, 15:03:07", + "Product Name": "AMD Radeon HD 7950 Mac Edition", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0821056)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 7th, 2013", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "449 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "118 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "25.60 GPixel/s", + "Texture Rate": "89.60 GTexel/s", + "FP32 (float) performance": "2.867 TFLOPS", + "FP64 (double) performance": "716.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C381" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-7990.c2126", + "web_page_access_date": "2022/08/26/, 15:05:10", + "Product Name": "AMD Radeon HD 7990", + "General Specs": { + "Graphics Processor": "Malta x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Malta", + "GPU Variant": "Malta XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0849026)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "365 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2013", + "Generation": "Southern Islands\n(HD 7900)", + "Predecessor": "Northern Islands", + "Successor": "Sea Islands", + "Production": "End-of-life", + "Launch Price": "999 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "37 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "950 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "1,024 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "304 mm\n\t\t\t\t\t12 inches", + "Width": "106 mm\n\t\t\t\t\t4.2 inches", + "Height": "38 mm\n\t\t\t\t\t1.5 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI4x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C476-37" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Malta GPU Notes": {}, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8180-igp.c2200", + "web_page_access_date": "2022/08/26/, 15:07:12", + "Product Name": "AMD Radeon HD 8180 IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "GPU Variant": "Kalindi LP", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 2013", + "Generation": "Temash\n(HD 8000 Mobile)", + "Predecessor": "Palm", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "225 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "900.0 MPixel/s", + "Texture Rate": "1.800 GTexel/s", + "FP32 (float) performance": "57.60 GFLOPS", + "FP64 (double) performance": "3.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "4 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8210e.c2201", + "web_page_access_date": "2022/08/26/, 15:09:15", + "Product Name": "AMD Radeon HD 8210E", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 23rd, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.200 GPixel/s", + "Texture Rate": "2.400 GTexel/s", + "FP32 (float) performance": "76.80 GFLOPS", + "FP64 (double) performance": "4.800 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "9 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8240-mobile-igp.c2202", + "web_page_access_date": "2022/08/26/, 15:11:17", + "Product Name": "AMD Radeon HD 8240 Mobile IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "GPU Variant": "Kalindi LP", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 1st, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.600 GPixel/s", + "Texture Rate": "3.200 GTexel/s", + "FP32 (float) performance": "102.4 GFLOPS", + "FP64 (double) performance": "6.400 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8250-igp.c2403", + "web_page_access_date": "2022/08/26/, 15:13:19", + "Product Name": "AMD Radeon HD 8250 IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "GPU Variant": "Kalindi LP", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Temash\n(HD 8000 Mobile)", + "Predecessor": "Palm", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.600 GPixel/s", + "Texture Rate": "3.200 GTexel/s", + "FP32 (float) performance": "102.4 GFLOPS", + "FP64 (double) performance": "6.400 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "8 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8280-igp.c2204", + "web_page_access_date": "2022/08/26/, 15:15:22", + "Product Name": "AMD Radeon HD 8280 IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 18th, 2013", + "Generation": "Kabini\n(HD 8000)", + "Predecessor": "Richland", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "3.600 GTexel/s", + "FP32 (float) performance": "115.2 GFLOPS", + "FP64 (double) performance": "7.200 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8280-mobile-igp.c3609", + "web_page_access_date": "2022/08/26/, 15:17:24", + "Product Name": "AMD Radeon HD 8280 Mobile IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 18th, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "3.600 GTexel/s", + "FP32 (float) performance": "115.2 GFLOPS", + "FP64 (double) performance": "7.200 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8280e.c2197", + "web_page_access_date": "2022/08/26/, 15:19:27", + "Product Name": "AMD Radeon HD 8280E", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 23rd, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "450 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "3.600 GTexel/s", + "FP32 (float) performance": "115.2 GFLOPS", + "FP64 (double) performance": "7.200 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8310g-igp.c2193", + "web_page_access_date": "2022/08/26/, 15:21:29", + "Product Name": "AMD Radeon HD 8310G IGP", + "General Specs": { + "Graphics Processor": "Scrapper Lite", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "424 MHz", + "Boost Clock": "554 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.216 GPixel/s", + "Texture Rate": "4.432 GTexel/s", + "FP32 (float) performance": "141.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8330-mobile-igp.c2205", + "web_page_access_date": "2022/08/26/, 15:23:31", + "Product Name": "AMD Radeon HD 8330 Mobile IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Aug 13th, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "497 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.988 GPixel/s", + "Texture Rate": "3.976 GTexel/s", + "FP32 (float) performance": "127.2 GFLOPS", + "FP64 (double) performance": "7.952 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8330e.c2198", + "web_page_access_date": "2022/08/26/, 15:25:33", + "Product Name": "AMD Radeon HD 8330E", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 23rd, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "497 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.988 GPixel/s", + "Texture Rate": "3.976 GTexel/s", + "FP32 (float) performance": "127.2 GFLOPS", + "FP64 (double) performance": "7.952 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8350g-igp.c2188", + "web_page_access_date": "2022/08/26/, 15:27:36", + "Product Name": "AMD Radeon HD 8350G IGP", + "General Specs": { + "Graphics Processor": "Scrapper Lite", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Mar 12th, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "514 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.880 GPixel/s", + "Texture Rate": "5.760 GTexel/s", + "FP32 (float) performance": "184.3 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8370d-igp.c2000", + "web_page_access_date": "2022/08/26/, 15:29:38", + "Product Name": "AMD Radeon HD 8370D IGP", + "General Specs": { + "Graphics Processor": "Scrapper Lite", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "760 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "3.040 GPixel/s", + "Texture Rate": "6.080 GTexel/s", + "FP32 (float) performance": "194.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8400-igp.c2206", + "web_page_access_date": "2022/08/26/, 15:31:41", + "Product Name": "AMD Radeon HD 8400 IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 23rd, 2013", + "Generation": "Kabini\n(HD 8000)", + "Predecessor": "Richland", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8400-mobile-igp.c3608", + "web_page_access_date": "2022/08/26/, 15:33:43", + "Product Name": "AMD Radeon HD 8400 Mobile IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Nov 23rd, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8400e.c2195", + "web_page_access_date": "2022/08/26/, 15:35:46", + "Product Name": "AMD Radeon HD 8400E", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 23rd, 2013", + "Generation": "Kabini\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Kaveri", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "9.600 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8410g-igp.c2192", + "web_page_access_date": "2022/08/26/, 15:37:48", + "Product Name": "AMD Radeon HD 8410G IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "450 MHz", + "Boost Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "230.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8450g-igp.c2187", + "web_page_access_date": "2022/08/26/, 15:39:50", + "Product Name": "AMD Radeon HD 8450G IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "533 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "2.880 GPixel/s", + "Texture Rate": "8.640 GTexel/s", + "FP32 (float) performance": "276.5 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8470d-igp.c2001", + "web_page_access_date": "2022/08/26/, 15:41:53", + "Product Name": "AMD Radeon HD 8470D IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "192", + "TMUs": "12", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 29th, 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "4", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP32 (float) performance": "307.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8490-oem.c2038", + "web_page_access_date": "2022/08/26/, 15:43:55", + "Product Name": "AMD Radeon HD 8490 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XTX", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Sea Islands\n(HD 8400)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "875 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.500 GPixel/s", + "Texture Rate": "7.000 GTexel/s", + "FP32 (float) performance": "280.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x DisplayPort 1.1", + "Power Connectors": "None", + "Board Number": "C369, C553" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8510-oem.c2360", + "web_page_access_date": "2022/08/26/, 15:45:58", + "Product Name": "AMD Radeon HD 8510 OEM", + "General Specs": { + "Graphics Processor": "Redwood", + "Cores": "400", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Redwood", + "GPU Variant": "Redwood PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0757004)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "627 million", + "Die Size": "104 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2013", + "Generation": "Sea Islands\n(HD 8500)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1000 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "400", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "13.00 GTexel/s", + "FP32 (float) performance": "520.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "165 mm\n\t\t\t\t\t6.5 inches", + "TDP": "39 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Redwood GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8510-oem.c2545", + "web_page_access_date": "2022/08/26/, 15:48:00", + "Product Name": "AMD Radeon HD 8510 OEM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0803002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Sea Islands\n(HD 8500)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8510g-igp.c2191", + "web_page_access_date": "2022/08/26/, 15:50:02", + "Product Name": "AMD Radeon HD 8510G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "554 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.432 GPixel/s", + "Texture Rate": "13.30 GTexel/s", + "FP32 (float) performance": "425.5 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8550-oem.c2515", + "web_page_access_date": "2022/08/26/, 15:52:05", + "Product Name": "AMD Radeon HD 8550 OEM", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0803002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 25th, 2013", + "Generation": "Sea Islands\n(HD 8500)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8550d-igp.c2411", + "web_page_access_date": "2022/08/26/, 15:54:07", + "Product Name": "AMD Radeon HD 8550D IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "720 MHz", + "Boost Clock": "844 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "6.752 GPixel/s", + "Texture Rate": "13.50 GTexel/s", + "FP32 (float) performance": "432.1 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8550g-igp.c2186", + "web_page_access_date": "2022/08/26/, 15:56:10", + "Product Name": "AMD Radeon HD 8550G IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "515 MHz", + "Boost Clock": "660 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "5.280 GPixel/s", + "Texture Rate": "10.56 GTexel/s", + "FP32 (float) performance": "337.9 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8570-oem-rebrand.c2435", + "web_page_access_date": "2022/08/26/, 15:58:12", + "Product Name": "AMD Radeon HD 8570 OEM Rebrand", + "General Specs": { + "Graphics Processor": "Turks", + "Cores": "480", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Turks", + "GPU Variant": "Turks PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0803002)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "716 million", + "Die Size": "118 mm²" + }, + "Graphics Card": { + "Release Date": "Jul 23rd, 2013", + "Generation": "Sea Islands\n(HD 8500)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "800 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1600 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR3", + "Memory Bus": "128 bit", + "Bandwidth": "25.60 GB/s" + }, + "Render Config": { + "Shading Units": "480", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.200 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "60 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Turks GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8570a.c2509", + "web_page_access_date": "2022/08/26/, 16:00:14", + "Product Name": "AMD Radeon HD 8570A", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "All-In-One\n(HD 8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS", + "FP64 (double) performance": "33.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8570d-igp.c2002", + "web_page_access_date": "2022/08/26/, 16:02:17", + "Product Name": "AMD Radeon HD 8570D IGP", + "General Specs": { + "Graphics Processor": "Devastator Lite", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator Lite", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jul 10th, 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "12.80 GTexel/s", + "FP32 (float) performance": "409.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8570m.c1948", + "web_page_access_date": "2022/08/26/, 16:04:19", + "Product Name": "AMD Radeon HD 8570M", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Solar System\n(HD 8500M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS", + "FP64 (double) performance": "33.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8590m.c1969", + "web_page_access_date": "2022/08/26/, 16:06:22", + "Product Name": "AMD Radeon HD 8590M", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Solar System\n(HD 8500M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "36.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS", + "FP64 (double) performance": "33.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8610g-igp.c2190", + "web_page_access_date": "2022/08/26/, 16:08:24", + "Product Name": "AMD Radeon HD 8610G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "533 MHz", + "Boost Clock": "626 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.008 GPixel/s", + "Texture Rate": "15.02 GTexel/s", + "FP32 (float) performance": "480.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8650d-igp.c2412", + "web_page_access_date": "2022/08/26/, 16:10:26", + "Product Name": "AMD Radeon HD 8650D IGP", + "General Specs": { + "Graphics Processor": "Scrapper", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Scrapper", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Dec 28th, 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "720 MHz", + "Boost Clock": "844 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "4", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.752 GPixel/s", + "Texture Rate": "20.26 GTexel/s", + "FP32 (float) performance": "648.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Scrapper GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8650g-igp.c2185", + "web_page_access_date": "2022/08/26/, 16:12:28", + "Product Name": "AMD Radeon HD 8650G IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 23rd, 2013", + "Generation": "Richland\n(HD 8000 Mobile)", + "Predecessor": "Trinity", + "Successor": "Mullins", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "533 MHz", + "Boost Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP32 (float) performance": "553.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670-oem.c1853", + "web_page_access_date": "2022/08/26/, 16:14:31", + "Product Name": "AMD Radeon HD 8670 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 8th, 2013", + "Generation": "Sea Islands\n(HD 8600)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C550" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670a.c2101", + "web_page_access_date": "2022/08/26/, 16:16:33", + "Product Name": "AMD Radeon HD 8670A", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 2nd, 2013", + "Generation": "All-In-One\n(HD 8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "28.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670a.c2443", + "web_page_access_date": "2022/08/26/, 16:18:35", + "Product Name": "AMD Radeon HD 8670A", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 2nd, 2013", + "Generation": "All-In-One\n(HD 8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "24.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Sun GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670d-igp.c2003", + "web_page_access_date": "2022/08/26/, 16:20:37", + "Product Name": "AMD Radeon HD 8670D IGP", + "General Specs": { + "Graphics Processor": "Devastator", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Devastator", + "Architecture": "TeraScale 3", + "Foundry": "TSMC", + "Process Size": "32 nm", + "Transistors": "1,303 million", + "Die Size": "246 mm²" + }, + "Integrated Graphics": { + "Release Date": "Mar 12th, 2013", + "Generation": "Richland\n(HD 8000)", + "Predecessor": "Trinity", + "Successor": "Kabini", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "844 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "6.752 GPixel/s", + "Texture Rate": "20.26 GTexel/s", + "FP32 (float) performance": "648.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Devastator GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670m.c1950", + "web_page_access_date": "2022/08/26/, 16:22:40", + "Product Name": "AMD Radeon HD 8670M", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Solar System\n(HD 8600M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.800 GPixel/s", + "Texture Rate": "19.50 GTexel/s", + "FP32 (float) performance": "624.0 GFLOPS", + "FP64 (double) performance": "39.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8670m.c2391", + "web_page_access_date": "2022/08/26/, 16:24:42", + "Product Name": "AMD Radeon HD 8670M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Solar System\n(HD 8600M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8690m.c1949", + "web_page_access_date": "2022/08/26/, 16:26:45", + "Product Name": "AMD Radeon HD 8690M", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Solar System\n(HD 8600M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "64 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS", + "FP64 (double) performance": "33.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8730-oem.c2401", + "web_page_access_date": "2022/08/26/, 16:28:47", + "Product Name": "AMD Radeon HD 8730 OEM", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 5th, 2013", + "Generation": "Sea Islands\n(HD 8700)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "614.4 GFLOPS", + "FP64 (double) performance": "38.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "47 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Cape Verde GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8730a.c2810", + "web_page_access_date": "2022/08/26/, 16:30:49", + "Product Name": "AMD Radeon HD 8730A", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "All-In-One\n(HD 8000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "16.80 GTexel/s", + "FP32 (float) performance": "537.6 GFLOPS", + "FP64 (double) performance": "33.60 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8730m.c1967", + "web_page_access_date": "2022/08/26/, 16:32:52", + "Product Name": "AMD Radeon HD 8730M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8700M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "16.80 GTexel/s", + "FP32 (float) performance": "537.6 GFLOPS", + "FP64 (double) performance": "33.60 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8740-oem.c2508", + "web_page_access_date": "2022/08/26/, 16:34:54", + "Product Name": "AMD Radeon HD 8740 OEM", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 5th, 2013", + "Generation": "Sea Islands\n(HD 8700)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "25.60 GTexel/s", + "FP32 (float) performance": "819.2 GFLOPS", + "FP64 (double) performance": "51.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C445" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Cape Verde GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8750a.c2651", + "web_page_access_date": "2022/08/26/, 16:36:57", + "Product Name": "AMD Radeon HD 8750A", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 2nd, 2013", + "Generation": "All-In-One\n(HD 8000)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "600 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "28.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8750m.c1968", + "web_page_access_date": "2022/08/26/, 16:38:59", + "Product Name": "AMD Radeon HD 8750M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0842000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Feb 26th, 2013", + "Generation": "Solar System\n(HD 8700M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "620 MHz", + "Boost Clock": "775 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.200 GPixel/s", + "Texture Rate": "18.60 GTexel/s", + "FP32 (float) performance": "595.2 GFLOPS", + "FP64 (double) performance": "37.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8770-oem.c1979", + "web_page_access_date": "2022/08/26/, 16:41:01", + "Product Name": "AMD Radeon HD 8770 OEM", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0839039)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 2nd, 2013", + "Generation": "Sea Islands\n(HD 8700)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1050 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.80 GPixel/s", + "Texture Rate": "58.80 GTexel/s", + "FP32 (float) performance": "1.882 TFLOPS", + "FP64 (double) performance": "117.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Bonaire GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8770m.c1893", + "web_page_access_date": "2022/08/26/, 16:43:04", + "Product Name": "AMD Radeon HD 8770M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8700M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "775 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS", + "FP64 (double) performance": "39.60 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8790m.c1798", + "web_page_access_date": "2022/08/26/, 16:45:06", + "Product Name": "AMD Radeon HD 8790M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars XTX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8700M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C615" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8830m.c1895", + "web_page_access_date": "2022/08/26/, 16:47:09", + "Product Name": "AMD Radeon HD 8830M", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8800M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "575 MHz", + "Boost Clock": "625 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.00 GPixel/s", + "Texture Rate": "25.00 GTexel/s", + "FP32 (float) performance": "800.0 GFLOPS", + "FP64 (double) performance": "50.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8850m.c1896", + "web_page_access_date": "2022/08/26/, 16:49:11", + "Product Name": "AMD Radeon HD 8850M", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8800M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "575 MHz", + "Boost Clock": "625 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.00 GPixel/s", + "Texture Rate": "25.00 GTexel/s", + "FP32 (float) performance": "800.0 GFLOPS", + "FP64 (double) performance": "50.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8860-oem.c2390", + "web_page_access_date": "2022/08/26/, 16:51:13", + "Product Name": "AMD Radeon HD 8860 OEM", + "General Specs": { + "Graphics Processor": "Curacao", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Curacao", + "GPU Variant": "Curacao PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0848000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 8th, 2013", + "Generation": "Sea Islands\n(HD 8800)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "74.00 GTexel/s", + "FP32 (float) performance": "2.368 TFLOPS", + "FP64 (double) performance": "148.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "TDP": "175 W", + "Suggested PSU": "450 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C632" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Curacao GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8870m.c1898", + "web_page_access_date": "2022/08/26/, 16:53:16", + "Product Name": "AMD Radeon HD 8870M", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 1st, 2013", + "Generation": "Solar System\n(HD 8800M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "775 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.40 GPixel/s", + "Texture Rate": "31.00 GTexel/s", + "FP32 (float) performance": "992.0 GFLOPS", + "FP64 (double) performance": "62.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8950m.c3219", + "web_page_access_date": "2022/08/26/, 16:55:18", + "Product Name": "AMD Radeon HD 8950M", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 14th, 2013", + "Generation": "Solar System\n(HD 8900M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1075 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.20 GPixel/s", + "Texture Rate": "51.60 GTexel/s", + "FP32 (float) performance": "1.651 TFLOPS", + "FP64 (double) performance": "103.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8970m.c1966", + "web_page_access_date": "2022/08/26/, 16:57:21", + "Product Name": "AMD Radeon HD 8970M", + "General Specs": { + "Graphics Processor": "Neptune", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Neptune", + "GPU Variant": "Neptune XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0847000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 14th, 2013", + "Generation": "Solar System\n(HD 8900M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "72.00 GTexel/s", + "FP32 (float) performance": "2.304 TFLOPS", + "FP64 (double) performance": "144.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Neptune GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8990-oem.c2389", + "web_page_access_date": "2022/08/26/, 16:59:23", + "Product Name": "AMD Radeon HD 8990 OEM", + "General Specs": { + "Graphics Processor": "Malta x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Malta", + "GPU Variant": "Malta XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0849026)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "365 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 24th, 2013", + "Generation": "Sea Islands\n(HD 8900)", + "Predecessor": "Southern Islands", + "Successor": "Volcanic Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "950 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "1,024 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "307 mm\n\t\t\t\t\t12.1 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI4x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Malta GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-220-oem.c2544", + "web_page_access_date": "2022/08/26/, 17:01:26", + "Product Name": "AMD Radeon R5 220 OEM", + "General Specs": { + "Graphics Processor": "Cedar", + "Cores": "80", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Cedar", + "GPU Variant": "Cedar PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "292 million", + "Die Size": "59 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "650 MHz", + "Memory Clock": "533 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1066 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "8.528 GB/s" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "5.200 GTexel/s", + "FP32 (float) performance": "104.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C026" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Cedar GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-230-oem.c2504", + "web_page_access_date": "2022/08/26/, 17:03:29", + "Product Name": "AMD Radeon R5 230 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C164, C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-235-oem.c2502", + "web_page_access_date": "2022/08/26/, 17:05:31", + "Product Name": "AMD Radeon R5 235 OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0804070)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "6.200 GTexel/s", + "FP32 (float) performance": "248.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "35 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None", + "Board Number": "C264" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-235x-oem.c2503", + "web_page_access_date": "2022/08/26/, 17:07:34", + "Product Name": "AMD Radeon R5 235X OEM", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0804070)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "875 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.500 GPixel/s", + "Texture Rate": "7.000 GTexel/s", + "FP32 (float) performance": "280.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "18 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-240-oem.c2531", + "web_page_access_date": "2022/08/26/, 17:09:37", + "Product Name": "AMD Radeon R5 240 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 1st, 2013", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "18.72 GTexel/s", + "FP32 (float) performance": "599.0 GFLOPS", + "FP64 (double) performance": "37.44 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C553" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m230-rebrand.c2801", + "web_page_access_date": "2022/08/26/, 17:11:39", + "Product Name": "AMD Radeon R5 M230 Rebrand", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 1st, 2013", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "750 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "16.50 GTexel/s", + "FP32 (float) performance": "528.0 GFLOPS", + "FP64 (double) performance": "33.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Sun GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-240.c3130", + "web_page_access_date": "2022/08/26/, 17:13:42", + "Product Name": "AMD Radeon R7 240", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "69 USD", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "5 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "14.00 GTexel/s", + "FP32 (float) performance": "448.0 GFLOPS", + "FP64 (double) performance": "28.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C552, C577" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-240.c2463", + "web_page_access_date": "2022/08/26/, 17:15:45", + "Product Name": "AMD Radeon R7 240", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0837015)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "69 USD", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "5 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "499.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C552, C577" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {}, + "Retail boards based on this design (34)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-240-oem.c2542", + "web_page_access_date": "2022/08/26/, 17:17:47", + "Product Name": "AMD Radeon R7 240 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 1st, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "499.2 GFLOPS", + "FP64 (double) performance": "31.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C552" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250.c2459", + "web_page_access_date": "2022/08/26/, 17:19:50", + "Product Name": "AMD Radeon R7 250", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "89 USD", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "24 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C576, C662" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {}, + "Retail boards based on this design (23)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250.c2956", + "web_page_access_date": "2022/08/26/, 17:21:52", + "Product Name": "AMD Radeon R7 250", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO2", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "925 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "29.60 GTexel/s", + "FP32 (float) performance": "947.2 GFLOPS", + "FP64 (double) performance": "59.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250.c2955", + "web_page_access_date": "2022/08/26/, 17:23:55", + "Product Name": "AMD Radeon R7 250", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "22.40 GTexel/s", + "FP32 (float) performance": "716.8 GFLOPS", + "FP64 (double) performance": "44.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250-oem.c2731", + "web_page_access_date": "2022/08/26/, 17:25:57", + "Product Name": "AMD Radeon R7 250 OEM", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "GPU Variant": "Oland XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0837000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "24 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "32.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None", + "Board Number": "C550, C552" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250e.c2559", + "web_page_access_date": "2022/08/26/, 17:28:00", + "Product Name": "AMD Radeon R7 250E", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 20th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.80 GPixel/s", + "Texture Rate": "25.60 GTexel/s", + "FP32 (float) performance": "819.2 GFLOPS", + "FP64 (double) performance": "51.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "55 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C444, C445" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-260.c2511", + "web_page_access_date": "2022/08/26/, 17:30:03", + "Product Name": "AMD Radeon R7 260", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire PRO", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 17th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "109 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "16.00 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "1.536 TFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "95 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Bonaire GPU Notes": {}, + "Retail boards based on this design (4)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-260x.c2465", + "web_page_access_date": "2022/08/26/, 17:32:05", + "Product Name": "AMD Radeon R7 260X", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire XTX\n\t\t\t\t\t\t\t\t\t\t\n(215-0839097)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "139 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "29 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1100 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "104.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "170 mm\n\t\t\t\t\t6.7 inches", + "TDP": "115 W", + "Suggested PSU": "300 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C582" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Bonaire GPU Notes": {}, + "Retail boards based on this design (37)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-255-oem.c2464", + "web_page_access_date": "2022/08/26/, 17:34:08", + "Product Name": "AMD Radeon R9 255 OEM", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "930 MHz", + "Memory Clock": "1150 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "73.60 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.88 GPixel/s", + "Texture Rate": "29.76 GTexel/s", + "FP32 (float) performance": "952.3 GFLOPS", + "FP64 (double) performance": "59.52 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "65 W", + "Suggested PSU": "250 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin", + "Board Number": "C750" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-260-oem.c2543", + "web_page_access_date": "2022/08/26/, 17:36:10", + "Product Name": "AMD Radeon R9 260 OEM", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "896", + "TMUs": "56", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0839039)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Dec 21st, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1100 MHz", + "Memory Clock": "1625 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "104.0 GB/s" + }, + "Render Config": { + "Shading Units": "896", + "TMUs": "56", + "ROPs": "16", + "Compute Units": "14", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.60 GPixel/s", + "Texture Rate": "61.60 GTexel/s", + "FP32 (float) performance": "1.971 TFLOPS", + "FP64 (double) performance": "123.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "183 mm\n\t\t\t\t\t7.2 inches", + "TDP": "85 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Bonaire GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-270.c2458", + "web_page_access_date": "2022/08/26/, 17:38:13", + "Product Name": "AMD Radeon R9 270", + "General Specs": { + "Graphics Processor": "Curacao", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Curacao", + "GPU Variant": "Curacao PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0848000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 13th, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "179 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "32 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "74.00 GTexel/s", + "FP32 (float) performance": "2.368 TFLOPS", + "FP64 (double) performance": "148.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C630, C631, C632" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Curacao GPU Notes": {}, + "Retail boards based on this design (25)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-270x.c2466", + "web_page_access_date": "2022/08/26/, 17:40:15", + "Product Name": "AMD Radeon R9 270X", + "General Specs": { + "Graphics Processor": "Curacao", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Curacao", + "GPU Variant": "Curacao XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0848004)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "199 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "90 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.60 GPixel/s", + "Texture Rate": "84.00 GTexel/s", + "FP32 (float) performance": "2.688 TFLOPS", + "FP64 (double) performance": "168.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "180 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C631, C632" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Curacao GPU Notes": {}, + "Retail boards based on this design (44)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-280x.c2398", + "web_page_access_date": "2022/08/26/, 17:42:18", + "Product Name": "AMD Radeon R9 280X", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XTL\n\t\t\t\t\t\t\t\t\t\t\n(215-0821065)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 8th, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "299 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "105 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "1,024 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "250 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (38)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-280x2.c3473", + "web_page_access_date": "2022/08/26/, 17:44:21", + "Product Name": "AMD Radeon R9 280X2", + "General Specs": { + "Graphics Processor": "Tahiti x2", + "Cores": "2048 x2", + "TMUs": "128 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XTL\n\t\t\t\t\t\t\t\t\t\t\n(215-0821065)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "950 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "288.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "1,024 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "315 mm\n\t\t\t\t\t12.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "6x mini-DisplayPort 1.2", + "Power Connectors": "3x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-290.c2397", + "web_page_access_date": "2022/08/26/, 17:46:23", + "Product Name": "AMD Radeon R9 290", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0852020)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 5th, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "399 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "69 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "947 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "60.61 GPixel/s", + "Texture Rate": "151.5 GTexel/s", + "FP32 (float) performance": "4.849 TFLOPS", + "FP64 (double) performance": "606.1 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C671-57" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {}, + "Retail boards based on this design (37)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-290x.c2460", + "web_page_access_date": "2022/08/26/, 17:48:25", + "Product Name": "AMD Radeon R9 290X", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2816", + "TMUs": "176", + "ROPs": "64", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0852000)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 24th, 2013", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "549 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "147 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "176.0 GTexel/s", + "FP32 (float) performance": "5.632 TFLOPS", + "FP64 (double) performance": "704.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "290 W", + "Suggested PSU": "600 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C671-57" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {}, + "Retail boards based on this design (57)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-sky-500.c2276", + "web_page_access_date": "2022/08/26/, 17:50:28", + "Product Name": "AMD Radeon Sky 500", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0828073)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2013", + "Generation": "Radeon Sky\n(x00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "950 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "76.00 GTexel/s", + "FP32 (float) performance": "2.432 TFLOPS", + "FP64 (double) performance": "152.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-sky-700.c2279", + "web_page_access_date": "2022/08/26/, 17:52:31", + "Product Name": "AMD Radeon Sky 700", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2013", + "Generation": "Radeon Sky\n(x00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "100.8 GTexel/s", + "FP32 (float) performance": "3.226 TFLOPS", + "FP64 (double) performance": "806.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x DisplayPort 1.2", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-sky-900.c2278", + "web_page_access_date": "2022/08/26/, 17:54:33", + "Product Name": "AMD Radeon Sky 900", + "General Specs": { + "Graphics Processor": "Tahiti x2", + "Cores": "1792 x2", + "TMUs": "112 x2", + "ROPs": "32 x2", + "Memory Size": "3 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Orthrus", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 27th, 2013", + "Generation": "Radeon Sky\n(x00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "106.4 GTexel/s", + "FP32 (float) performance": "3.405 TFLOPS", + "FP64 (double) performance": "851.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C476" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xbox-one-gpu.c2086", + "web_page_access_date": "2022/08/26/, 17:56:36", + "Product Name": "AMD Xbox One GPU", + "General Specs": { + "Graphics Processor": "Durango", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Durango", + "GPU Variant": "X871363-001", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "363 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 22nd, 2013", + "Generation": "Console GPU\n(Microsoft)", + "Production": "End-of-life", + "Launch Price": "499 USD" + }, + "Clock Speeds": { + "GPU Clock": "853 MHz", + "Memory Clock": "1066 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.1 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "DDR3", + "Memory Bus": "256 bit", + "Bandwidth": "68.22 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "13.65 GPixel/s", + "Texture Rate": "40.94 GTexel/s", + "FP32 (float) performance": "1,310 GFLOPS" + }, + "Board Design": { + "Length": "333 mm\n\t\t\t\t\t13.1 inches", + "Width": "274 mm\n\t\t\t\t\t10.8 inches", + "Height": "79 mm\n\t\t\t\t\t3.1 inches", + "Weight": "3.5 kg (7.8 lbs)", + "TDP": "95 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "1.1", + "Shader Model": "5.1" + }, + "Durango GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-d300.c2557", + "web_page_access_date": "2022/08/26/, 17:58:39", + "Product Name": "AMD FirePro D300", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn XT GL\n\t\t\t\t\t\t\t\t\t\t\n(215-0828073)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 18th, 2014", + "Generation": "FirePro\n(Dx00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "162.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.20 GPixel/s", + "Texture Rate": "68.00 GTexel/s", + "FP32 (float) performance": "2.176 TFLOPS", + "FP64 (double) performance": "136.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "242 mm\n\t\t\t\t\t9.5 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "4x DisplayPort 1.2" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-d500.c2556", + "web_page_access_date": "2022/08/26/, 18:00:41", + "Product Name": "AMD FirePro D500", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1536", + "TMUs": "96", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti LE GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 18th, 2014", + "Generation": "FirePro\n(Dx00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "725 MHz", + "Memory Clock": "1270 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.1 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "243.8 GB/s" + }, + "Render Config": { + "Shading Units": "1536", + "TMUs": "96", + "ROPs": "32", + "Compute Units": "24", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.20 GPixel/s", + "Texture Rate": "69.60 GTexel/s", + "FP32 (float) performance": "2.227 TFLOPS", + "FP64 (double) performance": "556.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "TDP": "274 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.21x SDI" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-d700.c2555", + "web_page_access_date": "2022/08/26/, 18:02:43", + "Product Name": "AMD FirePro D700", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti XT GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Jan 18th, 2014", + "Generation": "FirePro\n(Dx00)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1370 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "263.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.20 GPixel/s", + "Texture Rate": "108.8 GTexel/s", + "FP32 (float) performance": "3.482 TFLOPS", + "FP64 (double) performance": "870.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "TDP": "274 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.21x SDI" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s10000-passive-12gb.c2522", + "web_page_access_date": "2022/08/26/, 18:04:46", + "Product Name": "AMD FirePro S10000 Passive 12GB", + "General Specs": { + "Graphics Processor": "Tahiti x2", + "Cores": "1792 x2", + "TMUs": "112 x2", + "ROPs": "32 x2", + "Memory Size": "6 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "384 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Orthrus", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 1st, 2014", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Launch Price": "3,599 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "30.40 GPixel/s", + "Texture Rate": "106.4 GTexel/s", + "FP32 (float) performance": "3.405 TFLOPS", + "FP64 (double) performance": "851.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "305 mm\n\t\t\t\t\t12 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "375 W", + "Suggested PSU": "750 W", + "Outputs": "1x DVI1x mini-DisplayPort 1.2", + "Power Connectors": "2x 8-pin", + "Board Number": "C476" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s4000x.c2506", + "web_page_access_date": "2022/08/26/, 18:06:48", + "Product Name": "AMD FirePro S4000X", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 7th, 2014", + "Generation": "FirePro Mobile\n(Sx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "775 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.40 GPixel/s", + "Texture Rate": "31.00 GTexel/s", + "FP32 (float) performance": "992.0 GFLOPS", + "FP64 (double) performance": "62.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9050.c2607", + "web_page_access_date": "2022/08/26/, 18:08:51", + "Product Name": "AMD FirePro S9050", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2014", + "Generation": "FirePro\n(Sx000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "100.8 GTexel/s", + "FP32 (float) performance": "3.226 TFLOPS", + "FP64 (double) performance": "806.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "254 mm\n\t\t\t\t\t10 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "1x DisplayPort 1.2", + "Power Connectors": "1x 8-pin", + "Board Number": "C480-20" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tahiti GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9100.c2636", + "web_page_access_date": "2022/08/26/, 18:10:53", + "Product Name": "AMD FirePro S9100", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii GL40", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Oct 2nd, 2014", + "Generation": "FirePro\n(Sx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "824 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.74 GPixel/s", + "Texture Rate": "131.8 GTexel/s", + "FP32 (float) performance": "4.219 TFLOPS", + "FP64 (double) performance": "2.109 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-s9150.c2608", + "web_page_access_date": "2022/08/26/, 18:12:56", + "Product Name": "AMD FirePro S9150", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2816", + "TMUs": "176", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii GL44", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 7th, 2014", + "Generation": "FirePro\n(Sx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "158.4 GTexel/s", + "FP32 (float) performance": "5.069 TFLOPS", + "FP64 (double) performance": "2.534 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "235 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C681" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w2100.c2612", + "web_page_access_date": "2022/08/26/, 18:14:58", + "Product Name": "AMD FirePro W2100", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 12th, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "630 MHz", + "Boost Clock": "680 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.440 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP32 (float) performance": "435.2 GFLOPS", + "FP64 (double) performance": "27.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "26 W", + "Suggested PSU": "200 W", + "Outputs": "2x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C579-81" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Oland GPU Notes": {}, + "Retail boards based on this design (3)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4100.c2611", + "web_page_access_date": "2022/08/26/, 18:17:01", + "Product Name": "AMD FirePro W4100", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde PRO GL", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 13th, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "630 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Compute Units": "8", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.08 GPixel/s", + "Texture Rate": "20.16 GTexel/s", + "FP32 (float) performance": "645.1 GFLOPS", + "FP64 (double) performance": "40.32 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "171 mm\n\t\t\t\t\t6.7 inches", + "Width": "69 mm\n\t\t\t\t\t2.7 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C755" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w4170m.c2580", + "web_page_access_date": "2022/08/26/, 18:19:04", + "Product Name": "AMD FirePro W4170M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Apr 28th, 2014", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w5170m.c2705", + "web_page_access_date": "2022/08/26/, 18:25:20", + "Product Name": "AMD FirePro W5170M", + "General Specs": { + "Graphics Processor": "Tropo", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Tropo", + "GPU Variant": "Tropo XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 25th, 2014", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-A (3.0)", + "Reviews": "10 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS", + "FP64 (double) performance": "74.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Tropo GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w6170m.c2706", + "web_page_access_date": "2022/08/26/, 18:27:23", + "Product Name": "AMD FirePro W6170M", + "General Specs": { + "Graphics Processor": "Saturn", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Saturn", + "GPU Variant": "Saturn XT GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 25th, 2014", + "Generation": "FirePro Mobile\n(Wx100M)", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1075 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "88.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "17.20 GPixel/s", + "Texture Rate": "51.60 GTexel/s", + "FP32 (float) performance": "1.651 TFLOPS", + "FP64 (double) performance": "103.2 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "unknown", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Saturn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w7100.c2610", + "web_page_access_date": "2022/08/26/, 18:29:25", + "Product Name": "AMD FirePro W7100", + "General Specs": { + "Graphics Processor": "Tonga", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Tonga", + "GPU Variant": "Tonga PRO GL", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 12th, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "920 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.44 GPixel/s", + "Texture Rate": "103.0 GTexel/s", + "FP16 (half) performance": "3.297 TFLOPS (1:1)", + "FP32 (float) performance": "3.297 TFLOPS", + "FP64 (double) performance": "206.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "241 mm\n\t\t\t\t\t9.5 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "4x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C767" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tonga GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w8100.c2588", + "web_page_access_date": "2022/08/26/, 18:31:28", + "Product Name": "AMD FirePro W8100", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2560", + "TMUs": "160", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii GL40", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 23rd, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "824 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2560", + "TMUs": "160", + "ROPs": "64", + "Compute Units": "40", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "52.74 GPixel/s", + "Texture Rate": "131.8 GTexel/s", + "FP32 (float) performance": "4.219 TFLOPS", + "FP64 (double) performance": "2.109 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "279 mm\n\t\t\t\t\t11 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "220 W", + "Suggested PSU": "550 W", + "Outputs": "4x DisplayPort 1.21x SDI", + "Power Connectors": "2x 6-pin", + "Board Number": "C675" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w9100.c2562", + "web_page_access_date": "2022/08/26/, 18:33:31", + "Product Name": "AMD FirePro W9100", + "General Specs": { + "Graphics Processor": "Hawaii", + "Cores": "2816", + "TMUs": "176", + "ROPs": "64", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii GL44", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 26th, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "930 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "59.52 GPixel/s", + "Texture Rate": "163.7 GTexel/s", + "FP32 (float) performance": "5.238 TFLOPS", + "FP64 (double) performance": "2.619 TFLOPS (1:2)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "275 W", + "Suggested PSU": "600 W", + "Outputs": "6x mini-DisplayPort 1.21x S-Video", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C676-01" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-e8860.c2550", + "web_page_access_date": "2022/08/26/, 18:35:34", + "Product Name": "AMD Radeon E8860", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus MCM", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 25th, 2014", + "Generation": "Embedded\n(8000)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "575 MHz", + "Boost Clock": "625 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.00 GPixel/s", + "Texture Rate": "25.00 GTexel/s", + "FP32 (float) performance": "800.0 GFLOPS", + "FP64 (double) performance": "50.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "37 W", + "Outputs": "1x VGA", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C715-37" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8210-igp.c2404", + "web_page_access_date": "2022/08/26/, 18:37:36", + "Product Name": "AMD Radeon HD 8210 IGP", + "General Specs": { + "Graphics Processor": "Kalindi", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kalindi", + "GPU Variant": "Kalindi LP", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,178 million", + "Die Size": "110 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 31st, 2014", + "Generation": "Temash\n(HD 8000 Mobile)", + "Predecessor": "Palm", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "1.200 GPixel/s", + "Texture Rate": "2.400 GTexel/s", + "FP32 (float) performance": "76.80 GFLOPS", + "FP64 (double) performance": "4.800 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "8 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Kalindi GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8530m.c2388", + "web_page_access_date": "2022/08/26/, 18:39:39", + "Product Name": "AMD Radeon HD 8530M", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "320", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2014", + "Generation": "Solar System\n(HD 8500M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "16", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "11.20 GTexel/s", + "FP32 (float) performance": "448.0 GFLOPS", + "FP64 (double) performance": "28.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-hd-8550m.c1905", + "web_page_access_date": "2022/08/26/, 18:41:41", + "Product Name": "AMD Radeon HD 8550M", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jul 13th, 2014", + "Generation": "Solar System\n(HD 8500M)", + "Predecessor": "London", + "Successor": "Crystal System", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.800 GPixel/s", + "Texture Rate": "17.00 GTexel/s", + "FP32 (float) performance": "544.0 GFLOPS", + "FP64 (double) performance": "34.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r4-mobile-graphics.c2496", + "web_page_access_date": "2022/08/26/, 18:43:44", + "Product Name": "AMD Radeon R4 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 11th, 2014", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "204.8 GFLOPS", + "FP64 (double) performance": "12.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r4-mobile-graphics.c3607", + "web_page_access_date": "2022/08/26/, 18:45:47", + "Product Name": "AMD Radeon R4 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Spectre SL", + "Cores": "192", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre SL", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 17th, 2014", + "Generation": "Kaveri\n(Rx 200 Mobile)", + "Predecessor": "Kabini", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "533 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "8", + "Compute Units": "3" + }, + "Theoretical Performance": { + "Pixel Rate": "4.264 GPixel/s", + "Texture Rate": "6.396 GTexel/s", + "FP32 (float) performance": "204.7 GFLOPS", + "FP64 (double) performance": "12.79 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "17 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre SL GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-230.c2576", + "web_page_access_date": "2022/08/26/, 18:47:49", + "Product Name": "AMD Radeon R5 230", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos PRO", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 3rd, 2014", + "Generation": "Volcanic Islands\n(R5 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "625 MHz", + "Memory Clock": "667 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1334 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "10.67 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "2.500 GPixel/s", + "Texture Rate": "5.000 GTexel/s", + "FP32 (float) performance": "200.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "19 W", + "Suggested PSU": "200 W", + "Outputs": "1x DVI1x HDMI 1.3a1x VGA", + "Power Connectors": "None", + "Board Number": "C164" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a220.c2715", + "web_page_access_date": "2022/08/26/, 18:49:52", + "Product Name": "AMD Radeon R5 A220", + "General Specs": { + "Graphics Processor": "Caicos", + "Cores": "160", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Caicos", + "GPU Variant": "Caicos XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0804070)", + "Architecture": "TeraScale 2", + "Foundry": "TSMC", + "Process Size": "40 nm", + "Transistors": "370 million", + "Die Size": "67 mm²" + }, + "Mobile Graphics": { + "Release Date": "2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "775 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2", + "L1 Cache": "8 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "3.100 GPixel/s", + "Texture Rate": "6.200 GTexel/s", + "FP32 (float) performance": "248.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "35 W", + "Outputs": "1x DVI1x HDMI 1.3a", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "11.2 (11_0)", + "OpenGL": "4.4", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {}, + "Caicos GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a230.c2713", + "web_page_access_date": "2022/08/26/, 18:51:54", + "Product Name": "AMD Radeon R5 A230", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a240.c2589", + "web_page_access_date": "2022/08/26/, 18:53:57", + "Product Name": "AMD Radeon R5 A240", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1030 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a240.c2714", + "web_page_access_date": "2022/08/26/, 18:56:00", + "Product Name": "AMD Radeon R5 A240", + "General Specs": { + "Graphics Processor": "Oland", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Oland", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "730 MHz", + "Boost Clock": "780 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.240 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "499.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "168 mm\n\t\t\t\t\t6.6 inches", + "TDP": "50 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Oland GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-a255.c2719", + "web_page_access_date": "2022/08/26/, 18:58:02", + "Product Name": "AMD Radeon R5 A255", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "940 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.520 GPixel/s", + "Texture Rate": "22.56 GTexel/s", + "FP32 (float) performance": "721.9 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-graphics.c3007", + "web_page_access_date": "2022/08/26/, 19:00:05", + "Product Name": "AMD Radeon R5 Graphics", + "General Specs": { + "Graphics Processor": "Spectre SL", + "Cores": "256", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre SL", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 17th, 2014", + "Generation": "Kaveri\n(Rx 200)", + "Predecessor": "Mullins", + "Successor": "Bristol Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "758 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "4", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "3.032 GPixel/s", + "Texture Rate": "12.13 GTexel/s", + "FP32 (float) performance": "388.1 GFLOPS", + "FP64 (double) performance": "24.26 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre SL GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-graphics.c3637", + "web_page_access_date": "2022/08/26/, 19:02:07", + "Product Name": "AMD Radeon R5 Graphics", + "General Specs": { + "Graphics Processor": "Spectre SL", + "Cores": "256", + "TMUs": "16", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre SL", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 17th, 2014", + "Generation": "Kaveri\n(Rx 200)", + "Predecessor": "Mullins", + "Successor": "Bristol Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "497 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "4", + "Compute Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "1.988 GPixel/s", + "Texture Rate": "7.952 GTexel/s", + "FP32 (float) performance": "254.5 GFLOPS", + "FP64 (double) performance": "15.90 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre SL GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m230.c2571", + "web_page_access_date": "2022/08/26/, 19:04:10", + "Product Name": "AMD Radeon R5 M230", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet ULT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "825 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m230.c2415", + "web_page_access_date": "2022/08/26/, 19:06:13", + "Product Name": "AMD Radeon R5 M230", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "16.00 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {}, + "Retail boards based on this design (1)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m230-rebrand.c2586", + "web_page_access_date": "2022/08/26/, 19:08:16", + "Product Name": "AMD Radeon R5 M230 Rebrand", + "General Specs": { + "Graphics Processor": "Sun", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Sun", + "GPU Variant": "Sun LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 31st, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.800 GPixel/s", + "Texture Rate": "17.00 GTexel/s", + "FP32 (float) performance": "544.0 GFLOPS", + "FP64 (double) performance": "34.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Sun GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m240.c2416", + "web_page_access_date": "2022/08/26/, 19:10:18", + "Product Name": "AMD Radeon R5 M240", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Sep 18th, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1000 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m240-rebrand.c2552", + "web_page_access_date": "2022/08/26/, 19:12:21", + "Product Name": "AMD Radeon R5 M240 Rebrand", + "General Specs": { + "Graphics Processor": "Mars", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Mars", + "GPU Variant": "Mars LE", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 10th, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "16.80 GTexel/s", + "FP32 (float) performance": "537.6 GFLOPS", + "FP64 (double) performance": "33.60 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Mars GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m250.c2414", + "web_page_access_date": "2022/08/26/, 19:14:23", + "Product Name": "AMD Radeon R5 M250", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Mobile Graphics": { + "Release Date": "Unknown", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "700 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "5.600 GPixel/s", + "Texture Rate": "14.00 GTexel/s", + "FP32 (float) performance": "448.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-m255.c2573", + "web_page_access_date": "2022/08/26/, 19:16:26", + "Product Name": "AMD Radeon R5 M255", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 12th, 2014", + "Generation": "Crystal System\n(R5 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "940 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.520 GPixel/s", + "Texture Rate": "22.56 GTexel/s", + "FP16 (half) performance": "721.9 GFLOPS (1:1)", + "FP32 (float) performance": "721.9 GFLOPS", + "FP64 (double) performance": "45.12 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r5-mobile-graphics.c3006", + "web_page_access_date": "2022/08/26/, 19:18:29", + "Product Name": "AMD Radeon R5 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Beema", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Beema", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "930 million", + "Die Size": "107 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 14th, 2014", + "Generation": "Mullins\n(Rx 200 Mobile)", + "Predecessor": "Richland", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Compute Units": "2" + }, + "Theoretical Performance": { + "Pixel Rate": "3.200 GPixel/s", + "Texture Rate": "6.400 GTexel/s", + "FP32 (float) performance": "204.8 GFLOPS", + "FP64 (double) performance": "12.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Beema GPU Notes": {}, + "Retail boards based on this design (7)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-m255dx.c2654", + "web_page_access_date": "2022/08/26/, 19:20:31", + "Product Name": "AMD Radeon R6 M255DX", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 12th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "940 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.520 GPixel/s", + "Texture Rate": "22.56 GTexel/s", + "FP16 (half) performance": "721.9 GFLOPS (1:1)", + "FP32 (float) performance": "721.9 GFLOPS", + "FP64 (double) performance": "45.12 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-m255dx.c2640", + "web_page_access_date": "2022/08/26/, 19:22:34", + "Product Name": "AMD Radeon R6 M255DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r6-mobile-graphics.c2630", + "web_page_access_date": "2022/08/26/, 19:24:37", + "Product Name": "AMD Radeon R6 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Spectre Lite", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre Lite", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 17th, 2014", + "Generation": "Kaveri\n(Rx 200 Mobile)", + "Predecessor": "Kabini", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "533 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.264 GPixel/s", + "Texture Rate": "12.79 GTexel/s", + "FP32 (float) performance": "409.3 GFLOPS", + "FP64 (double) performance": "25.58 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "17 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250x.c2553", + "web_page_access_date": "2022/08/26/, 19:26:39", + "Product Name": "AMD Radeon R7 250X", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 13th, 2014", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "99 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "950 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "15.20 GPixel/s", + "Texture Rate": "38.00 GTexel/s", + "FP32 (float) performance": "1,216 GFLOPS", + "FP64 (double) performance": "76.00 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "80 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a2x mini-DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C441, C698" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Cape Verde GPU Notes": {}, + "Retail boards based on this design (15)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-250xe.c2615", + "web_page_access_date": "2022/08/26/, 19:28:42", + "Product Name": "AMD Radeon R7 250XE", + "General Specs": { + "Graphics Processor": "Cape Verde", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Cape Verde", + "GPU Variant": "Cape Verde XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 21st, 2014", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "860 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.76 GPixel/s", + "Texture Rate": "34.40 GTexel/s", + "FP32 (float) performance": "1,101 GFLOPS", + "FP64 (double) performance": "68.80 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "80 W", + "Suggested PSU": "250 W", + "Outputs": "1x DVI1x HDMI 1.4a1x VGA", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Cape Verde GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/firepro-w5100.c2585", + "web_page_access_date": "2022/08/27/, 21:39:56", + "Product Name": "AMD FirePro W5100", + "General Specs": { + "Graphics Processor": "Bonaire", + "Cores": "768", + "TMUs": "48", + "ROPs": "16", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Bonaire", + "GPU Variant": "Bonaire PRO GL", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,080 million", + "Die Size": "160 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 31st, 2014", + "Generation": "FirePro\n(Wx100)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "930 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t6 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "96.00 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "16", + "Compute Units": "12", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.88 GPixel/s", + "Texture Rate": "44.64 GTexel/s", + "FP32 (float) performance": "1,428 GFLOPS", + "FP64 (double) performance": "89.28 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "173 mm\n\t\t\t\t\t6.8 inches", + "Width": "111 mm\n\t\t\t\t\t4.4 inches", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x DisplayPort 1.2", + "Power Connectors": "None", + "Board Number": "C587-01" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Bonaire GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-265.c2558", + "web_page_access_date": "2022/08/27/, 21:41:58", + "Product Name": "AMD Radeon R7 265", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0828062)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Feb 13th, 2014", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "12 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "59.20 GTexel/s", + "FP32 (float) performance": "1.894 TFLOPS", + "FP64 (double) performance": "118.4 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin", + "Board Number": "C630" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-265x-oem.c2613", + "web_page_access_date": "2022/08/27/, 21:44:01", + "Product Name": "AMD Radeon R7 265X OEM", + "General Specs": { + "Graphics Processor": "Curacao", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Curacao", + "GPU Variant": "Curacao PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0848000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 12th, 2014", + "Generation": "Volcanic Islands\n(R7 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1400 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.6 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "179.2 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.60 GPixel/s", + "Texture Rate": "74.00 GTexel/s", + "FP32 (float) performance": "2.368 TFLOPS", + "FP64 (double) performance": "148.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "210 mm\n\t\t\t\t\t8.3 inches", + "TDP": "150 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Curacao GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-a260.c2718", + "web_page_access_date": "2022/08/27/, 21:46:04", + "Product Name": "AMD Radeon R7 A260", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t3.6 Gbps effective" + }, + "Memory": { + "Memory Size": "1024 MB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "57.60 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP32 (float) performance": "752.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-a265.c2650", + "web_page_access_date": "2022/08/27/, 21:48:07", + "Product Name": "AMD Radeon R7 A265", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2014", + "Generation": "All-In-One\n(Rx 200)", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS", + "FP64 (double) performance": "39.60 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-graphics.c2532", + "web_page_access_date": "2022/08/27/, 21:50:09", + "Product Name": "AMD Radeon R7 Graphics", + "General Specs": { + "Graphics Processor": "Spectre", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 11th, 2014", + "Generation": "Kaveri\n(Rx 200)", + "Predecessor": "Mullins", + "Successor": "Bristol Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Compute Units": "8" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "23.04 GTexel/s", + "FP32 (float) performance": "737.3 GFLOPS", + "FP64 (double) performance": "46.08 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "65 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-graphics.c2533", + "web_page_access_date": "2022/08/27/, 21:52:12", + "Product Name": "AMD Radeon R7 Graphics", + "General Specs": { + "Graphics Processor": "Spectre Lite", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre Lite", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 17th, 2014", + "Generation": "Kaveri\n(Rx 200)", + "Predecessor": "Mullins", + "Successor": "Bristol Ridge", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "720 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "5.760 GPixel/s", + "Texture Rate": "17.28 GTexel/s", + "FP32 (float) performance": "553.0 GFLOPS", + "FP64 (double) performance": "34.56 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "90 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m260.c2591", + "web_page_access_date": "2022/08/27/, 21:54:14", + "Product Name": "AMD Radeon R7 M260", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jun 11th, 2014", + "Generation": "Crystal System\n(R7 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "940 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP16 (half) performance": "752.6 GFLOPS (1:1)", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "47.04 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs", + "Board Number": "C720" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m260dx.c2639", + "web_page_access_date": "2022/08/27/, 21:56:17", + "Product Name": "AMD Radeon R7 M260DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m260dx.c2805", + "web_page_access_date": "2022/08/27/, 21:58:20", + "Product Name": "AMD Radeon R7 M260DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "955 MHz", + "Boost Clock": "1030 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "8.240 GPixel/s", + "Texture Rate": "20.60 GTexel/s", + "FP32 (float) performance": "659.2 GFLOPS", + "FP64 (double) performance": "41.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m260dx.c2655", + "web_page_access_date": "2022/08/27/, 22:00:22", + "Product Name": "AMD Radeon R7 M260DX", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 12th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "940 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.520 GPixel/s", + "Texture Rate": "22.56 GTexel/s", + "FP16 (half) performance": "721.9 GFLOPS (1:1)", + "FP32 (float) performance": "721.9 GFLOPS", + "FP64 (double) performance": "45.12 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m265.c2484", + "web_page_access_date": "2022/08/27/, 22:02:25", + "Product Name": "AMD Radeon R7 M265", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2014", + "Generation": "Crystal System\n(R7 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m265.c2572", + "web_page_access_date": "2022/08/27/, 22:04:27", + "Product Name": "AMD Radeon R7 M265", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Mobile Graphics": { + "Release Date": "May 20th, 2014", + "Generation": "Crystal System\n(R7 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "64 bit", + "Bandwidth": "14.40 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP16 (half) performance": "752.6 GFLOPS (1:1)", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "47.04 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m265dx.c2804", + "web_page_access_date": "2022/08/27/, 22:06:30", + "Product Name": "AMD Radeon R7 M265DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m265dx.c2653", + "web_page_access_date": "2022/08/27/, 22:08:32", + "Product Name": "AMD Radeon R7 M265DX", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 11th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Launch Price": "2,048 USD", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP16 (half) performance": "752.6 GFLOPS (1:1)", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "47.04 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m265dx.c2656", + "web_page_access_date": "2022/08/27/, 22:10:35", + "Product Name": "AMD Radeon R7 M265DX", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0864032)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 12th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "925 MHz", + "Boost Clock": "940 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.520 GPixel/s", + "Texture Rate": "22.56 GTexel/s", + "FP16 (half) performance": "721.9 GFLOPS (1:1)", + "FP32 (float) performance": "721.9 GFLOPS", + "FP64 (double) performance": "45.12 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Card Notes": {}, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m270.c2657", + "web_page_access_date": "2022/08/27/, 22:12:38", + "Product Name": "AMD Radeon R7 M270", + "General Specs": { + "Graphics Processor": "Opal", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Opal", + "GPU Variant": "Opal XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "950 million", + "Die Size": "77 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2014", + "Generation": "Crystal System\n(R7 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "825 MHz", + "Memory Clock": "900 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t1800 Mbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "DDR3", + "Memory Bus": "128 bit", + "Bandwidth": "28.80 GB/s" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "19.80 GTexel/s", + "FP32 (float) performance": "633.6 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Opal GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m270dx.c2652", + "web_page_access_date": "2022/08/27/, 22:14:40", + "Product Name": "AMD Radeon R7 M270DX", + "General Specs": { + "Graphics Processor": "Topaz", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Topaz", + "GPU Variant": "Topaz XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0864030)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,550 million", + "Die Size": "125 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jun 11th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "980 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "7.840 GPixel/s", + "Texture Rate": "23.52 GTexel/s", + "FP16 (half) performance": "752.6 GFLOPS (1:1)", + "FP32 (float) performance": "752.6 GFLOPS", + "FP64 (double) performance": "47.04 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Topaz GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-m270dx.c2806", + "web_page_access_date": "2022/08/27/, 22:16:43", + "Product Name": "AMD Radeon R7 M270DX", + "General Specs": { + "Graphics Processor": "Jet", + "Cores": "320", + "TMUs": "20", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jet", + "GPU Variant": "Jet PRO\n\t\t\t\t\t\t\t\t\t\t\n(216-0568010)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "690 million", + "Die Size": "56 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 7th, 2014", + "Generation": "Crystal System\n(Rx M200)", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "780 MHz", + "Boost Clock": "855 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "20", + "ROPs": "8", + "Compute Units": "5", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "128 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "6.840 GPixel/s", + "Texture Rate": "17.10 GTexel/s", + "FP32 (float) performance": "547.2 GFLOPS", + "FP64 (double) performance": "34.20 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Jet GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r7-mobile-graphics.c2721", + "web_page_access_date": "2022/08/27/, 22:18:46", + "Product Name": "AMD Radeon R7 Mobile Graphics", + "General Specs": { + "Graphics Processor": "Spectre Lite", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Spectre Lite", + "Architecture": "GCN 2.0", + "Foundry": "GlobalFoundries", + "Process Size": "28 nm", + "Transistors": "2,410 million", + "Die Size": "245 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 17th, 2014", + "Generation": "Kaveri\n(Rx 200 Mobile)", + "Predecessor": "Kabini", + "Successor": "Carrizo", + "Production": "End-of-life", + "Bus Interface": "IGP" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "554 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Compute Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "4.432 GPixel/s", + "Texture Rate": "13.30 GTexel/s", + "FP32 (float) performance": "425.5 GFLOPS", + "FP64 (double) performance": "26.59 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "90 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.0" + }, + "Spectre Lite GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-280.c2405", + "web_page_access_date": "2022/08/27/, 22:20:48", + "Product Name": "AMD Radeon R9 280", + "General Specs": { + "Graphics Processor": "Tahiti", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tahiti", + "GPU Variant": "Tahiti PRO3\n\t\t\t\t\t\t\t\t\t\t\n(215-0821330)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "4,313 million", + "Die Size": "352 mm²" + }, + "Graphics Card": { + "Release Date": "Mar 4th, 2014", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "279 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "35 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "827 MHz", + "Boost Clock": "933 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.86 GPixel/s", + "Texture Rate": "104.5 GTexel/s", + "FP32 (float) performance": "3.344 TFLOPS", + "FP64 (double) performance": "836.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "275 mm\n\t\t\t\t\t10.8 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x DVI2x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C386" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Card Notes": {}, + "Tahiti GPU Notes": {}, + "Retail boards based on this design (13)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-285.c2609", + "web_page_access_date": "2022/08/27/, 22:22:51", + "Product Name": "AMD Radeon R9 285", + "General Specs": { + "Graphics Processor": "Tonga", + "Cores": "1792", + "TMUs": "112", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Tonga", + "GPU Variant": "Tonga PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0851128)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Sep 2nd, 2014", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "249 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "59 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "918 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "176.0 GB/s" + }, + "Render Config": { + "Shading Units": "1792", + "TMUs": "112", + "ROPs": "32", + "Compute Units": "28", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "29.38 GPixel/s", + "Texture Rate": "102.8 GTexel/s", + "FP16 (half) performance": "3.290 TFLOPS (1:1)", + "FP32 (float) performance": "3.290 TFLOPS", + "FP64 (double) performance": "205.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "221 mm\n\t\t\t\t\t8.7 inches", + "Width": "109 mm\n\t\t\t\t\t4.3 inches", + "Height": "36 mm\n\t\t\t\t\t1.4 inches", + "TDP": "190 W", + "Suggested PSU": "450 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "2x 6-pin", + "Board Number": "C766" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tonga GPU Notes": {}, + "Retail boards based on this design (14)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-285x.c2913", + "web_page_access_date": "2022/08/27/, 22:24:53", + "Product Name": "AMD Radeon R9 285X", + "General Specs": { + "Graphics Processor": "Tonga", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Tonga", + "GPU Variant": "Tonga XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0851313)", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1002 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "3 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "264.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "768 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "32.06 GPixel/s", + "Texture Rate": "128.3 GTexel/s", + "FP32 (float) performance": "4.104 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "1x 6-pin + 1x 8-pin", + "Board Number": "C765" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Tonga GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-290x2.c2583", + "web_page_access_date": "2022/08/27/, 22:26:56", + "Product Name": "AMD Radeon R9 290X2", + "General Specs": { + "Graphics Processor": "Hawaii x2", + "Cores": "2816 x2", + "TMUs": "176 x2", + "ROPs": "64 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "512 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Hawaii", + "GPU Variant": "Hawaii XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0852000)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 24th, 2014", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "1,399 USD", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1000 MHz", + "Memory Clock": "1350 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "345.6 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "176.0 GTexel/s", + "FP32 (float) performance": "5.632 TFLOPS", + "FP64 (double) performance": "704.0 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Triple-slot", + "TDP": "580 W", + "Suggested PSU": "950 W", + "Outputs": "2x DVI1x HDMI 1.4a1x DisplayPort 1.2", + "Power Connectors": "4x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Hawaii GPU Notes": {}, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-295x2.c2523", + "web_page_access_date": "2022/08/27/, 22:28:59", + "Product Name": "AMD Radeon R9 295X2", + "General Specs": { + "Graphics Processor": "Vesuvius x2", + "Cores": "2816 x2", + "TMUs": "176 x2", + "ROPs": "64 x2", + "Memory Size": "4 GB x2", + "Memory Type": "GDDR5", + "Bus Width": "512 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Vesuvius", + "GPU Variant": "Vesuvius XT\n\t\t\t\t\t\t\t\t\t\t\n(215-0852022)", + "Architecture": "GCN 2.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "6,200 million", + "Die Size": "438 mm²" + }, + "Graphics Card": { + "Release Date": "Apr 29th, 2014", + "Generation": "Volcanic Islands\n(R9 200)", + "Predecessor": "Sea Islands", + "Successor": "Pirate Islands", + "Production": "End-of-life", + "Launch Price": "1,499 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "33 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "1018 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "2816", + "TMUs": "176", + "ROPs": "64", + "Compute Units": "44", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "1024 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "65.15 GPixel/s", + "Texture Rate": "179.2 GTexel/s", + "FP32 (float) performance": "5.733 TFLOPS", + "FP64 (double) performance": "716.7 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "307 mm\n\t\t\t\t\t12.1 inches", + "Width": "114 mm\n\t\t\t\t\t4.5 inches", + "Height": "42 mm\n\t\t\t\t\t1.7 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "1x DVI4x mini-DisplayPort 1.2", + "Power Connectors": "3x 8-pin", + "Board Number": "C673-A7" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Vesuvius GPU Notes": {}, + "Retail boards based on this design (12)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m265x.c2579", + "web_page_access_date": "2022/08/27/, 22:31:01", + "Product Name": "AMD Radeon R9 M265X", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus PRO", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 21st, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "575 MHz", + "Boost Clock": "625 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "10.00 GPixel/s", + "Texture Rate": "25.00 GTexel/s", + "FP32 (float) performance": "800.0 GFLOPS", + "FP64 (double) performance": "50.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m270x.c2213", + "web_page_access_date": "2022/08/27/, 22:33:04", + "Product Name": "AMD Radeon R9 M270X", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XT", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 21st, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "725 MHz", + "Boost Clock": "775 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "12.40 GPixel/s", + "Texture Rate": "31.00 GTexel/s", + "FP32 (float) performance": "992.0 GFLOPS" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m275.c2574", + "web_page_access_date": "2022/08/27/, 22:35:06", + "Product Name": "AMD Radeon R9 M275", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XTX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 28th, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "64.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS", + "FP64 (double) performance": "74.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m275x.c2658", + "web_page_access_date": "2022/08/27/, 22:37:09", + "Product Name": "AMD Radeon R9 M275X", + "General Specs": { + "Graphics Processor": "Venus", + "Cores": "640", + "TMUs": "40", + "ROPs": "16", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "Venus", + "GPU Variant": "Venus XTX", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "1,500 million", + "Die Size": "123 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 28th, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "925 MHz", + "Memory Clock": "1125 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "128 bit", + "Bandwidth": "72.00 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "16", + "Compute Units": "10", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "256 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "14.80 GPixel/s", + "Texture Rate": "37.00 GTexel/s", + "FP32 (float) performance": "1,184 GFLOPS", + "FP64 (double) performance": "74.00 GFLOPS (1:16)" + }, + "Board Design": { + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Venus GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m290x.c2546", + "web_page_access_date": "2022/08/27/, 22:39:11", + "Product Name": "AMD Radeon R9 M290X", + "General Specs": { + "Graphics Processor": "Neptune", + "Cores": "1280", + "TMUs": "80", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Neptune", + "GPU Variant": "Neptune XT\n\t\t\t\t\t\t\t\t\t\t\n(216-0847000)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Jan 9th, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "1280", + "TMUs": "80", + "ROPs": "32", + "Compute Units": "20", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "72.00 GTexel/s", + "FP32 (float) performance": "2.304 TFLOPS", + "FP64 (double) performance": "144.0 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "100 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Neptune GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m290x-mac-edition.c3770", + "web_page_access_date": "2022/08/27/, 22:41:14", + "Product Name": "AMD Radeon R9 M290X Mac Edition", + "General Specs": { + "Graphics Processor": "Pitcairn", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Pitcairn", + "GPU Variant": "Pitcairn PRO\n\t\t\t\t\t\t\t\t\t\t\n(215-0828062)", + "Architecture": "GCN 1.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "2,800 million", + "Die Size": "212 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 23rd, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "975 MHz", + "Memory Clock": "1365 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "174.7 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Compute Units": "16", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.20 GPixel/s", + "Texture Rate": "62.40 GTexel/s", + "FP32 (float) performance": "1.997 TFLOPS", + "FP64 (double) performance": "124.8 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "80 W", + "Outputs": "No outputs", + "Power Connectors": "None", + "Board Number": "C608" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.6", + "OpenCL": "1.2", + "Vulkan": "1.2", + "Shader Model": "5.1" + }, + "Pitcairn GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m295x.c2670", + "web_page_access_date": "2022/08/27/, 22:43:16", + "Product Name": "AMD Radeon R9 M295X", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 23rd, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "723 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "160.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "23.14 GPixel/s", + "Texture Rate": "92.54 GTexel/s", + "FP16 (half) performance": "2.961 TFLOPS (1:1)", + "FP32 (float) performance": "2.961 TFLOPS", + "FP64 (double) performance": "185.1 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "250 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/radeon-r9-m295x-mac-edition.c2587", + "web_page_access_date": "2022/08/27/, 22:45:19", + "Product Name": "AMD Radeon R9 M295X Mac Edition", + "General Specs": { + "Graphics Processor": "Amethyst", + "Cores": "2048", + "TMUs": "128", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Amethyst", + "GPU Variant": "Amethyst XT", + "Architecture": "GCN 3.0", + "Foundry": "TSMC", + "Process Size": "28 nm", + "Transistors": "5,000 million", + "Die Size": "366 mm²" + }, + "Mobile Graphics": { + "Release Date": "Nov 23rd, 2014", + "Generation": "Crystal System\n(R9 M200)", + "Predecessor": "Solar System", + "Successor": "Mobility Radeon", + "Production": "End-of-life", + "Bus Interface": "MXM-B (3.0)" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "850 MHz", + "Memory Clock": "1362 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.4 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "174.3 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "32", + "Compute Units": "32", + "L1 Cache": "16 KB (per CU)", + "L2 Cache": "512 KB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.20 GPixel/s", + "Texture Rate": "108.8 GTexel/s", + "FP16 (half) performance": "3.482 TFLOPS (1:1)", + "FP32 (float) performance": "3.482 TFLOPS", + "FP64 (double) performance": "217.6 GFLOPS (1:16)" + }, + "Board Design": { + "Slot Width": "MXM Module", + "TDP": "250 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_0)", + "OpenGL": "4.6", + "OpenCL": "2.0", + "Vulkan": "1.2", + "Shader Model": "6.3" + }, + "Amethyst GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/aubrey-isle.c1549", + "web_page_access_date": "2022/08/27/, 22:47:21", + "Product Name": "Intel Aubrey Isle", + "General Specs": { + "Graphics Processor": "Knights Ferry", + "Cores": "512", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Ferry", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "45 nm", + "Transistors": "2,300 million", + "Die Size": "684 mm²" + }, + "Graphics Card": { + "Release Date": "May 31st, 2010", + "Generation": "Knights Ferry", + "Production": "End-of-life", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "1200 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.8 Gbps effective" + }, + "Memory": { + "Memory Size": "2 GB", + "Memory Type": "GDDR5", + "Memory Bus": "256 bit", + "Bandwidth": "153.6 GB/s" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP32 (float) performance": "1,229 GFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "1x DVI1x HDMI1x DisplayPort", + "Power Connectors": "1x 6-pin + 1x 8-pin" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/gma.c3378", + "web_page_access_date": "2022/08/27/, 22:49:24", + "Product Name": "Intel GMA", + "General Specs": { + "Graphics Processor": "Cloverview", + "Pixel Shaders": "4", + "Vertex Shaders": "2", + "TMUs": "2", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Cloverview", + "Architecture": "PowerVR SGX545", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 4th, 2010", + "Generation": "GMA Graphics-T\n(GMA IGP)", + "Production": "End-of-life", + "Bus Interface": "PCIe 1.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "533 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Pixel Shaders": "4", + "Vertex Shaders": "2", + "TMUs": "2", + "ROPs": "1" + }, + "Theoretical Performance": { + "Pixel Rate": "533.0 MPixel/s", + "Vertex Rate": "266.5 MVertices/s", + "Texture Rate": "1.066 GTexel/s" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "9.0c", + "OpenGL": "ES 2.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "3.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/gma-600.c1225", + "web_page_access_date": "2022/08/27/, 22:51:26", + "Product Name": "Intel GMA 600", + "General Specs": { + "Graphics Processor": "Lincroft", + "Cores": "32", + "TMUs": "4", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Lincroft", + "Architecture": "PowerVR SGX535", + "Foundry": "Intel", + "Process Size": "45 nm", + "Transistors": "140 million", + "Die Size": "62 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 4th, 2010", + "Generation": "GMA Graphics-T\n(GMA 600 IGP)", + "Production": "End-of-life", + "Bus Interface": "PCIe 1.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "400 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "32", + "TMUs": "4", + "ROPs": "1", + "Execution Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "400.0 MPixel/s", + "Texture Rate": "1.600 GTexel/s", + "FP32 (float) performance": "25.60 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "10.1", + "OpenGL": "ES 2.0", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c1241", + "web_page_access_date": "2022/08/27/, 22:53:29", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Ironlake", + "Cores": "96", + "TMUs": "16", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ironlake", + "Architecture": "Generation 5.75", + "Foundry": "Intel", + "Process Size": "45 nm", + "Transistors": "177 million", + "Die Size": "114 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "HD Graphics-M\n(Westmere)", + "Production": "End-of-life", + "Bus Interface": "QPI", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "133 MHz", + "Boost Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "16", + "ROPs": "2", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "8.000 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "10.1", + "OpenGL": "2.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + }, + "Ironlake GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c2028", + "web_page_access_date": "2022/08/27/, 22:55:31", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Ironlake", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ironlake", + "Architecture": "Generation 5.75", + "Foundry": "Intel", + "Process Size": "45 nm", + "Transistors": "177 million", + "Die Size": "114 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 10th, 2010", + "Generation": "HD Graphics\n(Westmere)", + "Production": "End-of-life", + "Bus Interface": "QPI", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "533 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.066 GPixel/s", + "Texture Rate": "6.396 GTexel/s", + "FP32 (float) performance": "102.3 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "10.1", + "OpenGL": "2.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + }, + "Ironlake GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c1246", + "web_page_access_date": "2022/08/27/, 22:57:33", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT1", + "Cores": "48", + "TMUs": "6", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT1", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "504 million", + "Die Size": "131 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 1st, 2011", + "Generation": "HD Graphics-M\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "6", + "ROPs": "1", + "Execution Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "800.0 MPixel/s", + "Texture Rate": "4.800 GTexel/s", + "FP32 (float) performance": "76.80 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-2000.c1248", + "web_page_access_date": "2022/08/27/, 22:59:36", + "Product Name": "Intel HD Graphics 2000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT1", + "Cores": "48", + "TMUs": "6", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT1", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "504 million", + "Die Size": "131 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "6", + "ROPs": "1", + "Execution Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-3000.c3195", + "web_page_access_date": "2022/08/27/, 23:01:38", + "Product Name": "Intel HD Graphics 3000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT2+", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT2+", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "1,160 million", + "Die Size": "216 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics-M\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP32 (float) performance": "249.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-3000.c3196", + "web_page_access_date": "2022/08/27/, 23:03:41", + "Product Name": "Intel HD Graphics 3000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT2+", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT2+", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "1,160 million", + "Die Size": "216 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "16.20 GTexel/s", + "FP32 (float) performance": "259.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-3000.c1251", + "web_page_access_date": "2022/08/27/, 23:05:43", + "Product Name": "Intel HD Graphics 3000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT2", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT2", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "624 million", + "Die Size": "149 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics-M\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "12.00 GTexel/s", + "FP32 (float) performance": "192.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-3000.c1257", + "web_page_access_date": "2022/08/27/, 23:07:45", + "Product Name": "Intel HD Graphics 3000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT2", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT2", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "624 million", + "Die Size": "149 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.200 GPixel/s", + "Texture Rate": "13.20 GTexel/s", + "FP32 (float) performance": "211.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p3000.c2026", + "web_page_access_date": "2022/08/27/, 23:09:48", + "Product Name": "Intel HD Graphics P3000", + "General Specs": { + "Graphics Processor": "Sandy Bridge GT2", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Sandy Bridge GT2", + "Architecture": "Generation 6.0", + "Foundry": "Intel", + "Process Size": "32 nm", + "Transistors": "624 million", + "Die Size": "149 mm²" + }, + "Integrated Graphics": { + "Release Date": "Feb 1st, 2011", + "Generation": "HD Graphics-W\n(Sandy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "850 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "16.20 GTexel/s", + "FP32 (float) performance": "259.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (10_1)", + "OpenGL": "3.1", + "OpenCL": "N/A", + "Vulkan": "N/A", + "Shader Model": "4.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c3132", + "web_page_access_date": "2022/08/27/, 23:11:50", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Ivy Bridge GT1", + "Cores": "48", + "TMUs": "6", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ivy Bridge GT1", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "392 million", + "Die Size": "94 mm²" + }, + "Integrated Graphics": { + "Release Date": "Oct 1st, 2012", + "Generation": "HD Graphics-M\n(Ivy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "6", + "ROPs": "1", + "Execution Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS", + "FP64 (double) performance": "24.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c1250", + "web_page_access_date": "2022/08/27/, 23:13:53", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Ivy Bridge GT1", + "Cores": "48", + "TMUs": "6", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ivy Bridge GT1", + "GPU Variant": "Ivy Bridge-H-2", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "392 million", + "Die Size": "94 mm²" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2012", + "Generation": "HD Graphics\n(Ivy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "48", + "TMUs": "6", + "ROPs": "1", + "Execution Units": "6" + }, + "Theoretical Performance": { + "Pixel Rate": "1.050 GPixel/s", + "Texture Rate": "6.300 GTexel/s", + "FP32 (float) performance": "100.8 GFLOPS", + "FP64 (double) performance": "25.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4000.c1282", + "web_page_access_date": "2022/08/27/, 23:15:55", + "Product Name": "Intel HD Graphics 4000", + "General Specs": { + "Graphics Processor": "Ivy Bridge GT2", + "Cores": "128", + "TMUs": "16", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ivy Bridge GT2", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "1,200 million", + "Die Size": "133 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 14th, 2012", + "Generation": "HD Graphics\n(Ivy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "16", + "ROPs": "2", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "2.100 GPixel/s", + "Texture Rate": "16.80 GTexel/s", + "FP32 (float) performance": "268.8 GFLOPS", + "FP64 (double) performance": "67.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "unknown", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4000.c1266", + "web_page_access_date": "2022/08/27/, 23:17:58", + "Product Name": "Intel HD Graphics 4000", + "General Specs": { + "Graphics Processor": "Ivy Bridge GT2", + "Cores": "128", + "TMUs": "16", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ivy Bridge GT2", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "1,200 million", + "Die Size": "133 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 14th, 2012", + "Generation": "HD Graphics-M\n(Ivy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "16", + "ROPs": "2", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "2.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP32 (float) performance": "256.0 GFLOPS", + "FP64 (double) performance": "64.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p4000.c2027", + "web_page_access_date": "2022/08/27/, 23:20:00", + "Product Name": "Intel HD Graphics P4000", + "General Specs": { + "Graphics Processor": "Ivy Bridge GT2", + "Cores": "128", + "TMUs": "16", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ivy Bridge GT2", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "1,200 million", + "Die Size": "133 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 14th, 2012", + "Generation": "HD Graphics-W\n(Ivy Bridge)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "650 MHz", + "Boost Clock": "1250 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "16", + "ROPs": "1", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "1.250 GPixel/s", + "Texture Rate": "20.00 GTexel/s", + "FP32 (float) performance": "320.0 GFLOPS", + "FP64 (double) performance": "80.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-3120a.c1886", + "web_page_access_date": "2022/08/27/, 23:22:03", + "Product Name": "Intel Xeon Phi 3120A", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "912", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Bus Width": "384 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Knights Corner\n(x100)", + "Production": "End-of-life", + "Launch Price": "1,695 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "1100 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR5", + "Memory Bus": "384 bit", + "Bandwidth": "240.0 GB/s" + }, + "Render Config": { + "Shading Units": "912", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "57" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "35.20 GTexel/s", + "FP32 (float) performance": "2.006 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-5110p.c2480", + "web_page_access_date": "2022/08/27/, 23:24:05", + "Product Name": "Intel Xeon Phi 5110P", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "960", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Knights Corner\n(x100)", + "Production": "End-of-life", + "Launch Price": "2,649 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "1053 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "60" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "33.70 GTexel/s", + "FP32 (float) performance": "2.022 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "225 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-se10x.c1891", + "web_page_access_date": "2022/08/27/, 23:26:08", + "Product Name": "Intel Xeon Phi SE10X", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "976", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 12th, 2012", + "Generation": "Knights Corner", + "Production": "End-of-life", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "1100 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "976", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "61" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "35.20 GTexel/s", + "FP32 (float) performance": "2.147 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c2467", + "web_page_access_date": "2022/08/27/, 23:28:10", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Haswell GT1", + "Cores": "80", + "TMUs": "10", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT1", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 29th, 2013", + "Generation": "HD Graphics\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "10", + "ROPs": "1", + "Execution Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "10.00 GTexel/s", + "FP32 (float) performance": "160.0 GFLOPS", + "FP64 (double) performance": "40.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c2469", + "web_page_access_date": "2022/08/27/, 23:30:13", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Bay Trail GT1", + "Cores": "32", + "TMUs": "4", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Bay Trail GT1", + "Architecture": "Generation 7.0", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 2nd, 2013", + "Generation": "HD Graphics-T\n(Bay Trail)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "311 MHz", + "Boost Clock": "646 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "32", + "TMUs": "4", + "ROPs": "1", + "Execution Units": "4" + }, + "Theoretical Performance": { + "Pixel Rate": "646.0 MPixel/s", + "Texture Rate": "2.584 GTexel/s", + "FP32 (float) performance": "41.34 GFLOPS", + "FP64 (double) performance": "10.34 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "4 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "11.1 (11_0)", + "OpenGL": "4.0", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.0" + }, + "Bay Trail GT1 GPU Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c3134", + "web_page_access_date": "2022/08/27/, 23:32:15", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Haswell GT1", + "Cores": "80", + "TMUs": "10", + "ROPs": "1", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT1", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 29th, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "80", + "TMUs": "10", + "ROPs": "1", + "Execution Units": "10" + }, + "Theoretical Performance": { + "Pixel Rate": "850.0 MPixel/s", + "Texture Rate": "8.500 GTexel/s", + "FP32 (float) performance": "136.0 GFLOPS", + "FP64 (double) performance": "34.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4200.c3287", + "web_page_access_date": "2022/08/27/, 23:34:18", + "Product Name": "Intel HD Graphics 4200", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 2nd, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "1.700 GPixel/s", + "Texture Rate": "17.00 GTexel/s", + "FP32 (float) performance": "272.0 GFLOPS", + "FP64 (double) performance": "68.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "4 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4400.c2471", + "web_page_access_date": "2022/08/27/, 23:36:21", + "Product Name": "Intel HD Graphics 4400", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 3rd, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "1.900 GPixel/s", + "Texture Rate": "19.00 GTexel/s", + "FP32 (float) performance": "304.0 GFLOPS", + "FP64 (double) performance": "76.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4400.c2470", + "web_page_access_date": "2022/08/27/, 23:38:23", + "Product Name": "Intel HD Graphics 4400", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 3rd, 2013", + "Generation": "HD Graphics\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "2.300 GPixel/s", + "Texture Rate": "23.00 GTexel/s", + "FP32 (float) performance": "368.0 GFLOPS", + "FP64 (double) performance": "92.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4600.c1994", + "web_page_access_date": "2022/08/27/, 23:40:26", + "Product Name": "Intel HD Graphics 4600", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jun 3rd, 2013", + "Generation": "HD Graphics\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "2.200 GPixel/s", + "Texture Rate": "22.00 GTexel/s", + "FP32 (float) performance": "352.0 GFLOPS", + "FP64 (double) performance": "88.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-4600.c1953", + "web_page_access_date": "2022/08/27/, 23:42:29", + "Product Name": "Intel HD Graphics 4600", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 27th, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "400 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "2.200 GPixel/s", + "Texture Rate": "22.00 GTexel/s", + "FP32 (float) performance": "352.0 GFLOPS", + "FP64 (double) performance": "88.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "20 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-5000.c2468", + "web_page_access_date": "2022/08/27/, 23:44:31", + "Product Name": "Intel HD Graphics 5000", + "General Specs": { + "Graphics Processor": "Haswell GT3", + "Cores": "320", + "TMUs": "40", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT3", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "1,300 million", + "Die Size": "181 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 27th, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "40", + "ROPs": "4", + "Execution Units": "40" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "40.00 GTexel/s", + "FP32 (float) performance": "640.0 GFLOPS", + "FP64 (double) performance": "160.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p4600.c2369", + "web_page_access_date": "2022/08/27/, 23:46:34", + "Product Name": "Intel HD Graphics P4600", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2013", + "Generation": "HD Graphics-W\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "84 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p4700.c2563", + "web_page_access_date": "2022/08/27/, 23:48:37", + "Product Name": "Intel HD Graphics P4700", + "General Specs": { + "Graphics Processor": "Haswell GT2", + "Cores": "160", + "TMUs": "20", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT2", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jun 1st, 2013", + "Generation": "HD Graphics-W\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "160", + "TMUs": "20", + "ROPs": "2", + "Execution Units": "20" + }, + "Theoretical Performance": { + "Pixel Rate": "2.600 GPixel/s", + "Texture Rate": "26.00 GTexel/s", + "FP32 (float) performance": "416.0 GFLOPS", + "FP64 (double) performance": "104.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "86 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-graphics-5100.c2474", + "web_page_access_date": "2022/08/27/, 23:50:39", + "Product Name": "Intel Iris Graphics 5100", + "General Specs": { + "Graphics Processor": "Haswell GT3", + "Cores": "320", + "TMUs": "40", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT3", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "1,300 million", + "Die Size": "181 mm²" + }, + "Integrated Graphics": { + "Release Date": "May 27th, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "40", + "ROPs": "4", + "Execution Units": "40" + }, + "Theoretical Performance": { + "Pixel Rate": "4.400 GPixel/s", + "Texture Rate": "44.00 GTexel/s", + "FP32 (float) performance": "704.0 GFLOPS", + "FP64 (double) performance": "176.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-5200.c2472", + "web_page_access_date": "2022/08/27/, 23:52:49", + "Product Name": "Intel Iris Pro Graphics 5200", + "General Specs": { + "Graphics Processor": "Haswell GT3e", + "Cores": "320", + "TMUs": "40", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT3e", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jun 3rd, 2013", + "Generation": "HD Graphics\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "40", + "ROPs": "4", + "Execution Units": "40" + }, + "Theoretical Performance": { + "Pixel Rate": "4.600 GPixel/s", + "Texture Rate": "46.00 GTexel/s", + "FP32 (float) performance": "736.0 GFLOPS", + "FP64 (double) performance": "184.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-5200.c2007", + "web_page_access_date": "2022/08/27/, 23:55:44", + "Product Name": "Intel Iris Pro Graphics 5200", + "General Specs": { + "Graphics Processor": "Haswell GT3e", + "Cores": "320", + "TMUs": "40", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Haswell GT3e", + "Architecture": "Generation 7.5", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 27th, 2013", + "Generation": "HD Graphics-M\n(Haswell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "320", + "TMUs": "40", + "ROPs": "4", + "Execution Units": "40" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS", + "FP64 (double) performance": "192.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "30 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "1.2", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-5120d.c2482", + "web_page_access_date": "2022/08/27/, 23:57:46", + "Product Name": "Intel Xeon Phi 5120D", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "960", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 17th, 2013", + "Generation": "Knights Corner\n(x100)", + "Production": "End-of-life", + "Launch Price": "2,759 USD", + "Bus Interface": "PCIe 2.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "1053 MHz", + "Memory Clock": "1250 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "320.0 GB/s" + }, + "Render Config": { + "Shading Units": "960", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "60" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "33.70 GTexel/s", + "FP32 (float) performance": "2.022 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "245 W", + "Suggested PSU": "550 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-7120p.c1885", + "web_page_access_date": "2022/08/27/, 23:59:49", + "Product Name": "Intel Xeon Phi 7120P", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "976", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 17th, 2013", + "Generation": "Knights Corner\n(x100)", + "Production": "End-of-life", + "Launch Price": "4,129 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "1238 MHz", + "Boost Clock": "1333 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "976", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "61" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "42.66 GTexel/s", + "FP32 (float) performance": "2.602 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xeon-phi-7120x.c2481", + "web_page_access_date": "2022/08/28/, 00:01:51", + "Product Name": "Intel Xeon Phi 7120X", + "General Specs": { + "Graphics Processor": "Knights Corner", + "Cores": "976", + "TMUs": "32", + "ROPs": "N/A", + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Bus Width": "512 bit" + }, + "Graphics Processor": { + "GPU Name": "Knights Corner", + "Architecture": "Knights", + "Foundry": "Intel", + "Process Size": "22 nm", + "Transistors": "5,000 million", + "Die Size": "720 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 17th, 2013", + "Generation": "Knights Corner\n(x100)", + "Production": "End-of-life", + "Launch Price": "4,129 USD", + "Bus Interface": "PCIe 3.0 x16", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "1238 MHz", + "Boost Clock": "1333 MHz", + "Memory Clock": "1375 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t5.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR5", + "Memory Bus": "512 bit", + "Bandwidth": "352.0 GB/s" + }, + "Render Config": { + "Shading Units": "976", + "TMUs": "32", + "ROPs": "0", + "Execution Units": "61" + }, + "Theoretical Performance": { + "Pixel Rate": "0 MPixel/s", + "Texture Rate": "42.66 GTexel/s", + "FP32 (float) performance": "2.602 TFLOPS" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "248 mm\n\t\t\t\t\t9.8 inches", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "N/A", + "OpenGL": "N/A", + "OpenCL": "1.2", + "Vulkan": "N/A", + "Shader Model": "5.0" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-5300.c2624", + "web_page_access_date": "2022/08/28/, 00:03:54", + "Product Name": "Intel HD Graphics 5300", + "General Specs": { + "Graphics Processor": "Broadwell GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT2", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP32 (float) performance": "307.2 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-5500.c2625", + "web_page_access_date": "2022/08/28/, 00:05:56", + "Product Name": "Intel HD Graphics 5500", + "General Specs": { + "Graphics Processor": "Broadwell GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT2", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.550 GPixel/s", + "Texture Rate": "20.40 GTexel/s", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "81.60 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-5600.c3139", + "web_page_access_date": "2022/08/28/, 00:07:59", + "Product Name": "Intel HD Graphics 5600", + "General Specs": { + "Graphics Processor": "Broadwell GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT2", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP32 (float) performance": "403.2 GFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-6000.c2626", + "web_page_access_date": "2022/08/28/, 00:10:01", + "Product Name": "Intel HD Graphics 6000", + "General Specs": { + "Graphics Processor": "Broadwell GT3", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT3", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "133 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "5.700 GPixel/s", + "Texture Rate": "45.60 GTexel/s", + "FP32 (float) performance": "729.6 GFLOPS", + "FP64 (double) performance": "182.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p5700.c2791", + "web_page_access_date": "2022/08/28/, 00:12:04", + "Product Name": "Intel HD Graphics P5700", + "General Specs": { + "Graphics Processor": "Broadwell GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT2", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-W\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "700 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-graphics-6100.c2627", + "web_page_access_date": "2022/08/28/, 00:14:07", + "Product Name": "Intel Iris Graphics 6100", + "General Specs": { + "Graphics Processor": "Broadwell GT3", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT3", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "133 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.000 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS", + "FP64 (double) performance": "192.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-6200.c2628", + "web_page_access_date": "2022/08/28/, 00:16:10", + "Product Name": "Intel Iris Pro Graphics 6200", + "General Specs": { + "Graphics Processor": "Broadwell GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT3e", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "52.80 GTexel/s", + "FP32 (float) performance": "844.8 GFLOPS", + "FP64 (double) performance": "211.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-6200.c2790", + "web_page_access_date": "2022/08/28/, 00:18:12", + "Product Name": "Intel Iris Pro Graphics 6200", + "General Specs": { + "Graphics Processor": "Broadwell GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT3e", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "52.80 GTexel/s", + "FP32 (float) performance": "844.8 GFLOPS", + "FP64 (double) performance": "211.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-p6300.c2792", + "web_page_access_date": "2022/08/28/, 00:20:14", + "Product Name": "Intel Iris Pro Graphics P6300", + "General Specs": { + "Graphics Processor": "Broadwell GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT3e", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 5th, 2014", + "Generation": "HD Graphics-W\n(Broadwell)", + "Production": "End-of-life", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "38.40 GTexel/s", + "FP32 (float) performance": "614.4 GFLOPS", + "FP64 (double) performance": "153.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c3149", + "web_page_access_date": "2022/08/28/, 00:22:17", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Broadwell GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Broadwell GT1", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "82 mm²" + }, + "Integrated Graphics": { + "Release Date": "Jan 5th, 2015", + "Generation": "HD Graphics-M\n(Broadwell)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "100 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.600 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "38.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.4", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics.c3115", + "web_page_access_date": "2022/08/28/, 00:24:20", + "Product Name": "Intel HD Graphics", + "General Specs": { + "Graphics Processor": "Braswell GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Braswell GT1", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2015", + "Generation": "HD Graphics-T\n(Airmont)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "GPU Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP32 (float) performance": "96.00 GFLOPS", + "FP64 (double) performance": "24.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-400.c2900", + "web_page_access_date": "2022/08/28/, 00:26:22", + "Product Name": "Intel HD Graphics 400", + "General Specs": { + "Graphics Processor": "Braswell GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Braswell GT1", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2015", + "Generation": "HD Graphics-T\n(Airmont)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "320 MHz", + "Boost Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.200 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP32 (float) performance": "115.2 GFLOPS", + "FP64 (double) performance": "28.80 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-405.c2901", + "web_page_access_date": "2022/08/28/, 00:28:24", + "Product Name": "Intel HD Graphics 405", + "General Specs": { + "Graphics Processor": "Braswell GT1", + "Cores": "128", + "TMUs": "16", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Braswell GT1", + "Architecture": "Generation 8.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 1st, 2015", + "Generation": "HD Graphics-T\n(Airmont)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "600 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "16", + "ROPs": "2", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "1.200 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP32 (float) performance": "153.6 GFLOPS", + "FP64 (double) performance": "38.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (11_1)", + "OpenGL": "4.3", + "OpenCL": "3.0", + "Vulkan": "1.0", + "Shader Model": "5.1" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-500.c2902", + "web_page_access_date": "2022/08/28/, 00:30:27", + "Product Name": "Intel HD Graphics 500", + "General Specs": { + "Graphics Processor": "Apollo Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Apollo Lake GT1", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-T\n(Goldmont)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "650 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.300 GPixel/s", + "Texture Rate": "7.800 GTexel/s", + "FP32 (float) performance": "124.8 GFLOPS", + "FP64 (double) performance": "15.60 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-510.c2784", + "web_page_access_date": "2022/08/28/, 00:32:29", + "Product Name": "Intel HD Graphics 510", + "General Specs": { + "Graphics Processor": "Skylake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT1", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "3", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP16 (half) performance": "345.6 GFLOPS (2:1)", + "FP32 (float) performance": "172.8 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-510.c2795", + "web_page_access_date": "2022/08/28/, 00:34:31", + "Product Name": "Intel HD Graphics 510", + "General Specs": { + "Graphics Processor": "Skylake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT1", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.900 GPixel/s", + "Texture Rate": "11.40 GTexel/s", + "FP16 (half) performance": "364.8 GFLOPS (2:1)", + "FP32 (float) performance": "182.4 GFLOPS", + "FP64 (double) performance": "45.60 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-515.c3400", + "web_page_access_date": "2022/08/28/, 00:36:34", + "Product Name": "Intel HD Graphics 515", + "General Specs": { + "Graphics Processor": "Skylake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT2", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "123 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.400 GPixel/s", + "Texture Rate": "19.20 GTexel/s", + "FP16 (half) performance": "614.4 GFLOPS (2:1)", + "FP32 (float) performance": "307.2 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-520.c2783", + "web_page_access_date": "2022/08/28/, 00:38:36", + "Product Name": "Intel HD Graphics 520", + "General Specs": { + "Graphics Processor": "Skylake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT2", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "123 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP16 (half) performance": "691.2 GFLOPS (2:1)", + "FP32 (float) performance": "345.6 GFLOPS", + "FP64 (double) performance": "86.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-530.c2785", + "web_page_access_date": "2022/08/28/, 00:40:39", + "Product Name": "Intel HD Graphics 530", + "General Specs": { + "Graphics Processor": "Skylake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT2", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "123 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.850 GPixel/s", + "Texture Rate": "22.80 GTexel/s", + "FP16 (half) performance": "729.6 GFLOPS (2:1)", + "FP32 (float) performance": "364.8 GFLOPS", + "FP64 (double) performance": "91.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-530.c2789", + "web_page_access_date": "2022/08/28/, 00:42:41", + "Product Name": "Intel HD Graphics 530", + "General Specs": { + "Graphics Processor": "Skylake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT2", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "123 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.850 GPixel/s", + "Texture Rate": "22.80 GTexel/s", + "FP16 (half) performance": "729.6 GFLOPS (2:1)", + "FP32 (float) performance": "364.8 GFLOPS", + "FP64 (double) performance": "91.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p530.c2793", + "web_page_access_date": "2022/08/28/, 00:44:44", + "Product Name": "Intel HD Graphics P530", + "General Specs": { + "Graphics Processor": "Skylake GT2", + "Cores": "192", + "TMUs": "16", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT2", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "123 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-W\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "16", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-graphics-540.c2786", + "web_page_access_date": "2022/08/28/, 00:46:46", + "Product Name": "Intel Iris Graphics 540", + "General Specs": { + "Graphics Processor": "Skylake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT3e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.000 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP32 (float) performance": "768.0 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-graphics-550.c2787", + "web_page_access_date": "2022/08/28/, 00:48:49", + "Product Name": "Intel Iris Graphics 550", + "General Specs": { + "Graphics Processor": "Skylake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT3e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.000 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP16 (half) performance": "1.536 TFLOPS (2:1)", + "FP32 (float) performance": "768.0 GFLOPS", + "FP64 (double) performance": "192.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-580.c2788", + "web_page_access_date": "2022/08/28/, 00:50:51", + "Product Name": "Intel Iris Pro Graphics 580", + "General Specs": { + "Graphics Processor": "Skylake GT4e", + "Cores": "576", + "TMUs": "72", + "ROPs": "9", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT4e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-M\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "950 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "72", + "ROPs": "9", + "Execution Units": "72" + }, + "Theoretical Performance": { + "Pixel Rate": "8.550 GPixel/s", + "Texture Rate": "68.40 GTexel/s", + "FP16 (half) performance": "2.189 TFLOPS (2:1)", + "FP32 (float) performance": "1,094 GFLOPS", + "FP64 (double) performance": "273.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-p555.c3220", + "web_page_access_date": "2022/08/28/, 00:52:54", + "Product Name": "Intel Iris Pro Graphics P555", + "General Specs": { + "Graphics Processor": "Skylake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT3e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-W\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.000 GPixel/s", + "Texture Rate": "48.00 GTexel/s", + "FP16 (half) performance": "1.536 TFLOPS (2:1)", + "FP32 (float) performance": "768.0 GFLOPS", + "FP64 (double) performance": "192.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-p580.c2794", + "web_page_access_date": "2022/08/28/, 00:54:56", + "Product Name": "Intel Iris Pro Graphics P580", + "General Specs": { + "Graphics Processor": "Skylake GT4e", + "Cores": "576", + "TMUs": "72", + "ROPs": "9", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT4e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-W\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "72", + "ROPs": "9", + "Execution Units": "72" + }, + "Theoretical Performance": { + "Pixel Rate": "9.000 GPixel/s", + "Texture Rate": "72.00 GTexel/s", + "FP16 (half) performance": "2.304 TFLOPS (2:1)", + "FP32 (float) performance": "1,152 GFLOPS", + "FP64 (double) performance": "288.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-pro-graphics-p580.c3606", + "web_page_access_date": "2022/08/28/, 00:56:59", + "Product Name": "Intel Iris Pro Graphics P580", + "General Specs": { + "Graphics Processor": "Skylake GT4e", + "Cores": "576", + "TMUs": "72", + "ROPs": "9", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Skylake GT4e", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2015", + "Generation": "HD Graphics-WM\n(Skylake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "576", + "TMUs": "72", + "ROPs": "9", + "Execution Units": "72" + }, + "Theoretical Performance": { + "Pixel Rate": "9.450 GPixel/s", + "Texture Rate": "75.60 GTexel/s", + "FP16 (half) performance": "2.419 TFLOPS (2:1)", + "FP32 (float) performance": "1,210 GFLOPS", + "FP64 (double) performance": "302.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-505.c3155", + "web_page_access_date": "2022/08/28/, 00:59:01", + "Product Name": "Intel HD Graphics 505", + "General Specs": { + "Graphics Processor": "Apollo Lake GT1.5", + "Cores": "144", + "TMUs": "18", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Apollo Lake GT1.5", + "Architecture": "Generation 9.0", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2016", + "Generation": "HD Graphics-T\n(Goldmont)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "650 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "18", + "ROPs": "3", + "Execution Units": "18" + }, + "Theoretical Performance": { + "Pixel Rate": "1.950 GPixel/s", + "Texture Rate": "11.70 GTexel/s", + "FP32 (float) performance": "187.2 GFLOPS", + "FP64 (double) performance": "23.40 GFLOPS (1:8)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "6 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-610.c3102", + "web_page_access_date": "2022/08/28/, 01:01:04", + "Product Name": "Intel HD Graphics 610", + "General Specs": { + "Graphics Processor": "Kaby Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP16 (half) performance": "345.6 GFLOPS (2:1)", + "FP32 (float) performance": "172.8 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-610.c3021", + "web_page_access_date": "2022/08/28/, 01:03:06", + "Product Name": "Intel HD Graphics 610", + "General Specs": { + "Graphics Processor": "Kaby Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.100 GPixel/s", + "Texture Rate": "12.60 GTexel/s", + "FP16 (half) performance": "403.2 GFLOPS (2:1)", + "FP32 (float) performance": "201.6 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-615.c2910", + "web_page_access_date": "2022/08/28/, 01:05:09", + "Product Name": "Intel HD Graphics 615", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.550 GPixel/s", + "Texture Rate": "20.40 GTexel/s", + "FP16 (half) performance": "652.8 GFLOPS (2:1)", + "FP32 (float) performance": "326.4 GFLOPS", + "FP64 (double) performance": "81.60 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-620.c2911", + "web_page_access_date": "2022/08/28/, 01:07:11", + "Product Name": "Intel HD Graphics 620", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-630.c2961", + "web_page_access_date": "2022/08/28/, 01:09:13", + "Product Name": "Intel HD Graphics 630", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-630.c2962", + "web_page_access_date": "2022/08/28/, 01:11:16", + "Product Name": "Intel HD Graphics 630", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 30th, 2016", + "Generation": "HD Graphics\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/hd-graphics-p630.c2965", + "web_page_access_date": "2022/08/28/, 01:13:19", + "Product Name": "Intel HD Graphics P630", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 5th, 2016", + "Generation": "HD Graphics-WM\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.300 GPixel/s", + "Texture Rate": "26.40 GTexel/s", + "FP16 (half) performance": "844.8 GFLOPS (2:1)", + "FP32 (float) performance": "422.4 GFLOPS", + "FP64 (double) performance": "105.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-640.c2963", + "web_page_access_date": "2022/08/28/, 01:15:21", + "Product Name": "Intel Iris Plus Graphics 640", + "General Specs": { + "Graphics Processor": "Kaby Lake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT3e", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 3rd, 2017", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.600 GPixel/s", + "Texture Rate": "52.80 GTexel/s", + "FP16 (half) performance": "1.690 TFLOPS (2:1)", + "FP32 (float) performance": "844.8 GFLOPS", + "FP64 (double) performance": "211.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-650.c2964", + "web_page_access_date": "2022/08/28/, 01:17:24", + "Product Name": "Intel Iris Plus Graphics 650", + "General Specs": { + "Graphics Processor": "Kaby Lake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT3e", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 3rd, 2017", + "Generation": "HD Graphics-M\n(Kaby Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.900 GPixel/s", + "Texture Rate": "55.20 GTexel/s", + "FP16 (half) performance": "1.766 TFLOPS (2:1)", + "FP32 (float) performance": "883.2 GFLOPS", + "FP64 (double) performance": "220.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-600.c3065", + "web_page_access_date": "2022/08/28/, 01:19:26", + "Product Name": "Intel UHD Graphics 600", + "General Specs": { + "Graphics Processor": "Gemini Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Gemini Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Dec 11th, 2017", + "Generation": "HD Graphics-T\n(Goldmont Plus)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "650 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.300 GPixel/s", + "Texture Rate": "7.800 GTexel/s", + "FP16 (half) performance": "249.6 GFLOPS (2:1)", + "FP32 (float) performance": "124.8 GFLOPS", + "FP64 (double) performance": "31.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-605.c3101", + "web_page_access_date": "2022/08/28/, 01:21:29", + "Product Name": "Intel UHD Graphics 605", + "General Specs": { + "Graphics Processor": "Gemini Lake GT1.5", + "Cores": "144", + "TMUs": "18", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Gemini Lake GT1.5", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Dec 11th, 2017", + "Generation": "HD Graphics-T\n(Goldmont Plus)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "750 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "144", + "TMUs": "18", + "ROPs": "3", + "Execution Units": "18" + }, + "Theoretical Performance": { + "Pixel Rate": "2.250 GPixel/s", + "Texture Rate": "13.50 GTexel/s", + "FP16 (half) performance": "432.0 GFLOPS (2:1)", + "FP32 (float) performance": "216.0 GFLOPS", + "FP64 (double) performance": "54.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "5 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-620.c2909", + "web_page_access_date": "2022/08/28/, 01:23:31", + "Product Name": "Intel UHD Graphics 620", + "General Specs": { + "Graphics Processor": "Kaby Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Kaby Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2017", + "Generation": "HD Graphics-M\n(Kaby Lake Refresh)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-630.c3105", + "web_page_access_date": "2022/08/28/, 01:25:34", + "Product Name": "Intel UHD Graphics 630", + "General Specs": { + "Graphics Processor": "Coffee Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2017", + "Generation": "HD Graphics\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP16 (half) performance": "806.4 GFLOPS (2:1)", + "FP32 (float) performance": "403.2 GFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-630.c3107", + "web_page_access_date": "2022/08/28/, 01:27:36", + "Product Name": "Intel UHD Graphics 630", + "General Specs": { + "Graphics Processor": "Coffee Lake GT2", + "Cores": "184", + "TMUs": "23", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Sep 1st, 2017", + "Generation": "HD Graphics\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "184", + "TMUs": "23", + "ROPs": "3", + "Execution Units": "23" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "24.15 GTexel/s", + "FP16 (half) performance": "772.8 GFLOPS (2:1)", + "FP32 (float) performance": "386.4 GFLOPS", + "FP64 (double) performance": "96.60 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-655.c3221", + "web_page_access_date": "2022/08/28/, 01:29:39", + "Product Name": "Intel Iris Plus Graphics 655", + "General Specs": { + "Graphics Processor": "Coffee Lake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT3e", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 3rd, 2018", + "Generation": "HD Graphics-M\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.300 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP16 (half) performance": "1.613 TFLOPS (2:1)", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "201.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-610.c3453", + "web_page_access_date": "2022/08/28/, 01:31:41", + "Product Name": "Intel UHD Graphics 610", + "General Specs": { + "Graphics Processor": "Coffee Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 3rd, 2018", + "Generation": "HD Graphics-M\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "1.800 GPixel/s", + "Texture Rate": "10.80 GTexel/s", + "FP16 (half) performance": "345.6 GFLOPS (2:1)", + "FP32 (float) performance": "172.8 GFLOPS", + "FP64 (double) performance": "43.20 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-610.c3313", + "web_page_access_date": "2022/08/28/, 01:33:44", + "Product Name": "Intel UHD Graphics 610", + "General Specs": { + "Graphics Processor": "Coffee Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 3rd, 2018", + "Generation": "HD Graphics\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.100 GPixel/s", + "Texture Rate": "12.60 GTexel/s", + "FP16 (half) performance": "403.2 GFLOPS (2:1)", + "FP32 (float) performance": "201.6 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-615.c3370", + "web_page_access_date": "2022/08/28/, 01:35:46", + "Product Name": "Intel UHD Graphics 615", + "General Specs": { + "Graphics Processor": "Amber Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Amber Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Nov 7th, 2018", + "Generation": "HD Graphics-T\n(Amber Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP16 (half) performance": "691.2 GFLOPS (2:1)", + "FP32 (float) performance": "345.6 GFLOPS", + "FP64 (double) performance": "86.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-617.c3338", + "web_page_access_date": "2022/08/28/, 01:37:49", + "Product Name": "Intel UHD Graphics 617", + "General Specs": { + "Graphics Processor": "Amber Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Amber Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Nov 7th, 2018", + "Generation": "HD Graphics-T\n(Amber Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP16 (half) performance": "806.4 GFLOPS (2:1)", + "FP32 (float) performance": "403.2 GFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-620.c3381", + "web_page_access_date": "2022/08/28/, 01:39:51", + "Product Name": "Intel UHD Graphics 620", + "General Specs": { + "Graphics Processor": "Whiskey Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Whiskey Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 28th, 2018", + "Generation": "HD Graphics-M\n(Whiskey Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-630.c3262", + "web_page_access_date": "2022/08/28/, 01:41:54", + "Product Name": "Intel UHD Graphics 630", + "General Specs": { + "Graphics Processor": "Coffee Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 3rd, 2018", + "Generation": "HD Graphics-M\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-p630.c3605", + "web_page_access_date": "2022/08/28/, 01:43:56", + "Product Name": "Intel UHD Graphics P630", + "General Specs": { + "Graphics Processor": "Coffee Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 24th, 2018", + "Generation": "HD Graphics-W\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.300 GPixel/s", + "Texture Rate": "26.40 GTexel/s", + "FP16 (half) performance": "844.8 GFLOPS (2:1)", + "FP32 (float) performance": "422.4 GFLOPS", + "FP64 (double) performance": "105.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-p630.c3452", + "web_page_access_date": "2022/08/28/, 01:45:59", + "Product Name": "Intel UHD Graphics P630", + "General Specs": { + "Graphics Processor": "Coffee Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 24th, 2018", + "Generation": "HD Graphics-WM\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-645.c3486", + "web_page_access_date": "2022/08/28/, 01:48:02", + "Product Name": "Intel Iris Plus Graphics 645", + "General Specs": { + "Graphics Processor": "Coffee Lake GT3e", + "Cores": "384", + "TMUs": "48", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Coffee Lake GT3e", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Oct 7th, 2019", + "Generation": "HD Graphics-M\n(Coffee Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "48", + "ROPs": "6", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "6.300 GPixel/s", + "Texture Rate": "50.40 GTexel/s", + "FP16 (half) performance": "1.613 TFLOPS (2:1)", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "201.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-g4.c3647", + "web_page_access_date": "2022/08/28/, 01:50:04", + "Product Name": "Intel Iris Plus Graphics G4", + "General Specs": { + "Graphics Processor": "Ice Lake GT1", + "Cores": "384", + "TMUs": "24", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ice Lake GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 29th, 2019", + "Generation": "HD Graphics-M\n(Ice Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "8", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP16 (half) performance": "1.613 TFLOPS (2:1)", + "FP32 (float) performance": "806.4 GFLOPS", + "FP64 (double) performance": "201.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics.c3604", + "web_page_access_date": "2022/08/28/, 01:52:07", + "Product Name": "Intel UHD Graphics", + "General Specs": { + "Graphics Processor": "Amber Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Amber Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 21st, 2019", + "Generation": "HD Graphics-T\n(Amber Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.150 GPixel/s", + "Texture Rate": "25.20 GTexel/s", + "FP16 (half) performance": "806.4 GFLOPS (2:1)", + "FP32 (float) performance": "403.2 GFLOPS", + "FP64 (double) performance": "100.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics.c3644", + "web_page_access_date": "2022/08/28/, 01:54:10", + "Product Name": "Intel UHD Graphics", + "General Specs": { + "Graphics Processor": "Comet Lake GT1", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 21st, 2019", + "Generation": "HD Graphics-M\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "2.700 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP16 (half) performance": "691.2 GFLOPS (2:1)", + "FP32 (float) performance": "345.6 GFLOPS", + "FP64 (double) performance": "86.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics.c3484", + "web_page_access_date": "2022/08/28/, 01:56:12", + "Product Name": "Intel UHD Graphics", + "General Specs": { + "Graphics Processor": "Comet Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Aug 21st, 2019", + "Generation": "HD Graphics-M\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1000 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "24.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.5" + }, + "Retail boards based on this design (8)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-g1.c3447", + "web_page_access_date": "2022/08/28/, 01:58:15", + "Product Name": "Intel UHD Graphics G1", + "General Specs": { + "Graphics Processor": "Ice Lake GT1", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ice Lake GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 29th, 2019", + "Generation": "HD Graphics-M\n(Ice Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "14.40 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/h3c-xg310.c3745", + "web_page_access_date": "2022/08/28/, 02:00:17", + "Product Name": "Intel H3C XG310", + "General Specs": { + "Graphics Processor": "DG1 x4", + "Cores": "768 x4", + "TMUs": "48 x4", + "ROPs": "24 x4", + "Memory Size": "8 GB x4", + "Memory Type": "LPDDR4X", + "Bus Width": "128 bit x4" + }, + "Graphics Processor": { + "GPU Name": "DG1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "95 mm²" + }, + "Graphics Card": { + "Release Date": "Nov 11th, 2020", + "Availability": "2021", + "Generation": "H3C Graphics", + "Production": "Active", + "Bus Interface": "PCIe 3.0 x16" + }, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1550 MHz", + "Memory Clock": "2133 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.3 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "LPDDR4X", + "Memory Bus": "128 bit", + "Bandwidth": "68.26 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "37.20 GPixel/s", + "Texture Rate": "74.40 GTexel/s", + "FP16 (half) performance": "4.762 TFLOPS (2:1)", + "FP32 (float) performance": "2.381 TFLOPS", + "FP64 (double) performance": "595.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "300 W", + "Suggested PSU": "700 W", + "Outputs": "No outputs", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-plus-graphics-g7.c3444", + "web_page_access_date": "2022/08/28/, 02:02:20", + "Product Name": "Intel Iris Plus Graphics G7", + "General Specs": { + "Graphics Processor": "Ice Lake GT2", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Ice Lake GT2", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 4th, 2020", + "Generation": "HD Graphics-M\n(Ice Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Execution Units": "64" + }, + "Theoretical Performance": { + "Pixel Rate": "8.400 GPixel/s", + "Texture Rate": "33.60 GTexel/s", + "FP16 (half) performance": "2.150 TFLOPS (2:1)", + "FP32 (float) performance": "1,075 GFLOPS", + "FP64 (double) performance": "268.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-graphics-g4.c3679", + "web_page_access_date": "2022/08/28/, 02:04:23", + "Product Name": "Intel Iris Xe Graphics G4", + "General Specs": { + "Graphics Processor": "Tiger Lake GT2", + "Cores": "384", + "TMUs": "24", + "ROPs": "12", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Tiger Lake GT2", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "146 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 2nd, 2020", + "Generation": "HD Graphics-M\n(Tiger Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "12", + "Execution Units": "48", + "L3 Cache": "3.75 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.20 GPixel/s", + "Texture Rate": "26.40 GTexel/s", + "FP16 (half) performance": "1.690 TFLOPS (2:1)", + "FP32 (float) performance": "844.8 GFLOPS", + "FP64 (double) performance": "211.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-graphics-g7-80eu.c3678", + "web_page_access_date": "2022/08/28/, 02:06:26", + "Product Name": "Intel Iris Xe Graphics G7 80EU", + "General Specs": { + "Graphics Processor": "Tiger Lake GT2", + "Cores": "640", + "TMUs": "40", + "ROPs": "20", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Tiger Lake GT2", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "146 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 2nd, 2020", + "Generation": "HD Graphics-M\n(Tiger Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "20", + "Execution Units": "80", + "L2 Cache": "1024 KB", + "L3 Cache": "3.75 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.00 GPixel/s", + "Texture Rate": "44.00 GTexel/s", + "FP16 (half) performance": "2.816 TFLOPS (2:1)", + "FP32 (float) performance": "1,408 GFLOPS", + "FP64 (double) performance": "352.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-graphics-g7-96eu.c3677", + "web_page_access_date": "2022/08/28/, 02:08:28", + "Product Name": "Intel Iris Xe Graphics G7 96EU", + "General Specs": { + "Graphics Processor": "Tiger Lake GT2", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Tiger Lake GT2", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "146 mm²" + }, + "Integrated Graphics": { + "Release Date": "Sep 2nd, 2020", + "Generation": "HD Graphics-M\n(Tiger Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "L2 Cache": "1024 KB", + "L3 Cache": "3.75 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.40 GPixel/s", + "Texture Rate": "52.80 GTexel/s", + "FP16 (half) performance": "3.379 TFLOPS (2:1)", + "FP32 (float) performance": "1.690 TFLOPS", + "FP64 (double) performance": "422.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-max-graphics.c3737", + "web_page_access_date": "2022/08/28/, 02:10:31", + "Product Name": "Intel Iris Xe MAX Graphics", + "General Specs": { + "Graphics Processor": "DG1", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "4 GB", + "Memory Type": "LPDDR4X", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "DG1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "95 mm²" + }, + "Mobile Graphics": { + "Release Date": "Oct 31st, 2020", + "Generation": "HD Graphics-M\n(Tiger Lake)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "2133 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.3 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "LPDDR4X", + "Memory Bus": "128 bit", + "Bandwidth": "68.26 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "39.60 GPixel/s", + "Texture Rate": "79.20 GTexel/s", + "FP16 (half) performance": "5.069 TFLOPS (2:1)", + "FP32 (float) performance": "2.534 TFLOPS", + "FP64 (double) performance": "633.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-610.c3602", + "web_page_access_date": "2022/08/28/, 02:12:34", + "Product Name": "Intel UHD Graphics 610", + "General Specs": { + "Graphics Processor": "Comet Lake GT1", + "Cores": "96", + "TMUs": "12", + "ROPs": "2", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT1", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 30th, 2020", + "Generation": "HD Graphics\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1050 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "96", + "TMUs": "12", + "ROPs": "2", + "Execution Units": "12" + }, + "Theoretical Performance": { + "Pixel Rate": "2.100 GPixel/s", + "Texture Rate": "12.60 GTexel/s", + "FP16 (half) performance": "403.2 GFLOPS (2:1)", + "FP32 (float) performance": "201.6 GFLOPS", + "FP64 (double) performance": "50.40 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-630.c3600", + "web_page_access_date": "2022/08/28/, 02:14:36", + "Product Name": "Intel UHD Graphics 630", + "General Specs": { + "Graphics Processor": "Comet Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 30th, 2020", + "Generation": "HD Graphics\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-630.c3601", + "web_page_access_date": "2022/08/28/, 02:16:39", + "Product Name": "Intel UHD Graphics 630", + "General Specs": { + "Graphics Processor": "Comet Lake GT2", + "Cores": "184", + "TMUs": "23", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Apr 30th, 2020", + "Generation": "HD Graphics\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "184", + "TMUs": "23", + "ROPs": "3", + "Execution Units": "23" + }, + "Theoretical Performance": { + "Pixel Rate": "3.450 GPixel/s", + "Texture Rate": "26.45 GTexel/s", + "FP16 (half) performance": "846.4 GFLOPS (2:1)", + "FP32 (float) performance": "423.2 GFLOPS", + "FP64 (double) performance": "105.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-g4.c3692", + "web_page_access_date": "2022/08/28/, 02:18:42", + "Product Name": "Intel UHD Graphics G4", + "General Specs": { + "Graphics Processor": "Lakefield GT1", + "Cores": "384", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Lakefield GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 28th, 2020", + "Generation": "HD Graphics-M\n(Lakefield)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "32", + "ROPs": "8", + "Execution Units": "48" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP16 (half) performance": "768.0 GFLOPS (2:1)", + "FP32 (float) performance": "384.0 GFLOPS", + "FP64 (double) performance": "96.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-g7.c3691", + "web_page_access_date": "2022/08/28/, 02:20:44", + "Product Name": "Intel UHD Graphics G7", + "General Specs": { + "Graphics Processor": "Lakefield GT2", + "Cores": "512", + "TMUs": "32", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Lakefield GT2", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 28th, 2020", + "Generation": "HD Graphics-M\n(Lakefield)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "200 MHz", + "Boost Clock": "500 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "8", + "Execution Units": "64" + }, + "Theoretical Performance": { + "Pixel Rate": "4.000 GPixel/s", + "Texture Rate": "16.00 GTexel/s", + "FP16 (half) performance": "1,024 GFLOPS (2:1)", + "FP32 (float) performance": "512.0 GFLOPS", + "FP64 (double) performance": "128.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-p630.c3676", + "web_page_access_date": "2022/08/28/, 02:22:47", + "Product Name": "Intel UHD Graphics P630", + "General Specs": { + "Graphics Processor": "Comet Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 13th, 2020", + "Generation": "HD Graphics-W\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-p630.c3730", + "web_page_access_date": "2022/08/28/, 02:24:50", + "Product Name": "Intel UHD Graphics P630", + "General Specs": { + "Graphics Processor": "Comet Lake GT2", + "Cores": "192", + "TMUs": "24", + "ROPs": "3", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Comet Lake GT2", + "Architecture": "Generation 9.5", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "May 13th, 2020", + "Generation": "HD Graphics-WM\n(Comet Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1200 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "24", + "ROPs": "3", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "3.600 GPixel/s", + "Texture Rate": "28.80 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xe-dg1.c3718", + "web_page_access_date": "2022/08/28/, 02:26:52", + "Product Name": "Intel Xe DG1", + "General Specs": { + "Graphics Processor": "DG1", + "Cores": "640", + "TMUs": "40", + "ROPs": "20", + "Memory Size": "4 GB", + "Memory Type": "LPDDR4X", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "DG1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "95 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Xe Graphics", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1550 MHz", + "Memory Clock": "2133 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.3 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "LPDDR4X", + "Memory Bus": "128 bit", + "Bandwidth": "68.26 GB/s" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "20", + "Execution Units": "80", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "31.00 GPixel/s", + "Texture Rate": "62.00 GTexel/s", + "FP16 (half) performance": "3.968 TFLOPS (2:1)", + "FP32 (float) performance": "1.984 TFLOPS", + "FP64 (double) performance": "496.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "178 mm\n\t\t\t\t\t7 inches", + "TDP": "30 W", + "Suggested PSU": "200 W", + "Outputs": "1x HDMI3x DisplayPort", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/xe-dg1-sdv.c3483", + "web_page_access_date": "2022/08/28/, 02:28:55", + "Product Name": "Intel Xe DG1-SDV", + "General Specs": { + "Graphics Processor": "DG1", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "8 GB", + "Memory Type": "LPDDR4X", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "DG1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "95 mm²" + }, + "Graphics Card": { + "Release Date": "Never Released", + "Generation": "Xe Graphics", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Clock Speeds": { + "Base Clock": "900 MHz", + "Boost Clock": "1500 MHz", + "Memory Clock": "2133 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t4.3 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "LPDDR4X", + "Memory Bus": "128 bit", + "Bandwidth": "68.26 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "36.00 GPixel/s", + "Texture Rate": "72.00 GTexel/s", + "FP16 (half) performance": "4.608 TFLOPS (2:1)", + "FP32 (float) performance": "2.304 TFLOPS", + "FP64 (double) performance": "576.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "178 mm\n\t\t\t\t\t7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x HDMI3x DisplayPort", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arctic-sound-1t.c3886", + "web_page_access_date": "2022/08/28/, 02:30:57", + "Product Name": "Intel Arctic Sound 1T", + "General Specs": { + "Graphics Processor": "Arctic Sound", + "Cores": "6144", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "Arctic Sound", + "Architecture": "Generation 12.5", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "8,000 million", + "Die Size": "190 mm²" + }, + "Graphics Card": { + "Release Date": "2021", + "Generation": "Xe Graphics", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Memory Bus": "4096 bit", + "Bandwidth": "1,229 GB/s" + }, + "Render Config": { + "Shading Units": "6144", + "TMUs": "192", + "ROPs": "96", + "Execution Units": "384", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "86.40 GPixel/s", + "Texture Rate": "172.8 GTexel/s", + "FP16 (half) performance": "22.12 TFLOPS (2:1)", + "FP32 (float) performance": "11.06 TFLOPS", + "FP64 (double) performance": "2.765 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "350 W", + "Suggested PSU": "750 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "N/A", + "Shader Model": "6.5" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arctic-sound-2t.c3503", + "web_page_access_date": "2022/08/28/, 02:33:00", + "Product Name": "Intel Arctic Sound 2T", + "General Specs": { + "Graphics Processor": "Arctic Sound x2", + "Cores": "7680 x2", + "TMUs": "240 x2", + "ROPs": "120 x2", + "Memory Size": "16 GB x2", + "Memory Type": "HBM2e", + "Bus Width": "4096 bit x2" + }, + "Graphics Processor": { + "GPU Name": "Arctic Sound", + "Architecture": "Generation 12.5", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "8,000 million", + "Die Size": "190 mm²" + }, + "Graphics Card": { + "Release Date": "2021", + "Generation": "Xe Graphics", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Memory Bus": "4096 bit", + "Bandwidth": "1,229 GB/s" + }, + "Render Config": { + "Shading Units": "7680", + "TMUs": "240", + "ROPs": "120", + "Execution Units": "480", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "108.0 GPixel/s", + "Texture Rate": "216.0 GTexel/s", + "FP16 (half) performance": "27.65 TFLOPS (2:1)", + "FP32 (float) performance": "13.82 TFLOPS", + "FP64 (double) performance": "3.456 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "N/A", + "Shader Model": "6.5" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics.c3764", + "web_page_access_date": "2022/08/28/, 02:35:02", + "Product Name": "Intel UHD Graphics", + "General Specs": { + "Graphics Processor": "Rocket Lake GT1", + "Cores": "128", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rocket Lake GT1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "2021", + "Generation": "HD Graphics\n(Rocket Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "8", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "7.200 GPixel/s", + "Texture Rate": "7.200 GTexel/s", + "FP16 (half) performance": "460.8 GFLOPS (2:1)", + "FP32 (float) performance": "230.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics.c3811", + "web_page_access_date": "2022/08/28/, 02:37:05", + "Product Name": "Intel UHD Graphics", + "General Specs": { + "Graphics Processor": "Tiger Lake GT1", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Tiger Lake GT1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "2021", + "Generation": "HD Graphics-M\n(Tiger Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "1350 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "10.80 GPixel/s", + "Texture Rate": "21.60 GTexel/s", + "FP16 (half) performance": "1,382 GFLOPS (2:1)", + "FP32 (float) performance": "691.2 GFLOPS", + "FP64 (double) performance": "172.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-16eu.c3922", + "web_page_access_date": "2022/08/28/, 02:39:07", + "Product Name": "Intel UHD Graphics 16EU", + "General Specs": { + "Graphics Processor": "Jasper Lake GT1", + "Cores": "128", + "TMUs": "8", + "ROPs": "4", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jasper Lake GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 11th, 2021", + "Generation": "HD Graphics-M\n(Jasper Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "750 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "4", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "3.000 GPixel/s", + "Texture Rate": "6.000 GTexel/s", + "FP16 (half) performance": "384.0 GFLOPS (2:1)", + "FP32 (float) performance": "192.0 GFLOPS", + "FP64 (double) performance": "48.00 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-24eu.c3921", + "web_page_access_date": "2022/08/28/, 02:41:10", + "Product Name": "Intel UHD Graphics 24EU", + "General Specs": { + "Graphics Processor": "Jasper Lake GT1", + "Cores": "192", + "TMUs": "12", + "ROPs": "6", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jasper Lake GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 11th, 2021", + "Generation": "HD Graphics-M\n(Jasper Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "800 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "6", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "4.800 GPixel/s", + "Texture Rate": "9.600 GTexel/s", + "FP16 (half) performance": "614.4 GFLOPS (2:1)", + "FP32 (float) performance": "307.2 GFLOPS", + "FP64 (double) performance": "76.80 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-32eu.c3814", + "web_page_access_date": "2022/08/28/, 02:43:12", + "Product Name": "Intel UHD Graphics 32EU", + "General Specs": { + "Graphics Processor": "Jasper Lake GT1", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Jasper Lake GT1", + "Architecture": "Generation 11.0", + "Foundry": "Intel", + "Process Size": "10 nm+", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 11th, 2021", + "Generation": "HD Graphics-M\n(Jasper Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "350 MHz", + "Boost Clock": "850 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "6.800 GPixel/s", + "Texture Rate": "13.60 GTexel/s", + "FP16 (half) performance": "870.4 GFLOPS (2:1)", + "FP32 (float) performance": "435.2 GFLOPS", + "FP64 (double) performance": "108.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "10 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-730.c3765", + "web_page_access_date": "2022/08/28/, 02:45:15", + "Product Name": "Intel UHD Graphics 730", + "General Specs": { + "Graphics Processor": "Rocket Lake GT1", + "Cores": "192", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rocket Lake GT1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Mar 30th, 2021", + "Generation": "HD Graphics\n(Rocket Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "8", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "10.40 GPixel/s", + "Texture Rate": "15.60 GTexel/s", + "FP16 (half) performance": "998.4 GFLOPS (2:1)", + "FP32 (float) performance": "499.2 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-750.c3766", + "web_page_access_date": "2022/08/28/, 02:47:17", + "Product Name": "Intel UHD Graphics 750", + "General Specs": { + "Graphics Processor": "Rocket Lake GT1", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rocket Lake GT1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Mar 30th, 2021", + "Generation": "HD Graphics\n(Rocket Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "10.40 GPixel/s", + "Texture Rate": "20.80 GTexel/s", + "FP16 (half) performance": "1,331 GFLOPS (2:1)", + "FP32 (float) performance": "665.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-770.c3844", + "web_page_access_date": "2022/08/28/, 02:49:20", + "Product Name": "Intel UHD Graphics 770", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "256", + "TMUs": "16", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Nov 4th, 2021", + "Generation": "HD Graphics\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1450 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "16", + "ROPs": "8", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "11.60 GPixel/s", + "Texture Rate": "23.20 GTexel/s", + "FP16 (half) performance": "1,485 GFLOPS (2:1)", + "FP32 (float) performance": "742.4 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-p750.c3767", + "web_page_access_date": "2022/08/28/, 02:51:22", + "Product Name": "Intel UHD Graphics P750", + "General Specs": { + "Graphics Processor": "Rocket Lake GT1", + "Cores": "256", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Rocket Lake GT1", + "Architecture": "Generation 12.1", + "Foundry": "Intel", + "Process Size": "14 nm+++", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "2021", + "Generation": "HD Graphics-W\n(Rocket Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "System Shared" + }, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "256", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "32" + }, + "Theoretical Performance": { + "Pixel Rate": "28.80 GPixel/s", + "Texture Rate": "57.60 GTexel/s", + "FP16 (half) performance": "921.6 GFLOPS (2:1)", + "FP32 (float) performance": "460.8 GFLOPS", + "FP64 (double) performance": "115.2 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a350m.c3905", + "web_page_access_date": "2022/08/28/, 02:53:25", + "Product Name": "Intel Arc A350M", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G11", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 30th, 2022", + "Generation": "Alchemist\n(Arc 3)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "RT Cores": "6", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "27.60 GPixel/s", + "Texture Rate": "55.20 GTexel/s", + "FP16 (half) performance": "3.533 TFLOPS (2:1)", + "FP32 (float) performance": "1.766 TFLOPS", + "FP64 (double) performance": "441.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "25 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a370m.c3906", + "web_page_access_date": "2022/08/28/, 02:55:27", + "Product Name": "Intel Arc A370M", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G11", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Mobile Graphics": { + "Release Date": "Mar 30th, 2022", + "Generation": "Alchemist\n(Arc 3)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1550 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "112.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "128", + "RT Cores": "8", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "49.60 GPixel/s", + "Texture Rate": "99.20 GTexel/s", + "FP16 (half) performance": "6.349 TFLOPS (2:1)", + "FP32 (float) performance": "3.174 TFLOPS", + "FP64 (double) performance": "793.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "35 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a380.c3913", + "web_page_access_date": "2022/08/28/, 02:57:30", + "Product Name": "Intel Arc A380", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Graphics Card": { + "Release Date": "Jun 14th, 2022", + "Generation": "Alchemist\n(Arc 3)", + "Production": "Active", + "Launch Price": "149 USD", + "Bus Interface": "PCIe 4.0 x8", + "Reviews": "3 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2000 MHz", + "Boost Clock": "2450 MHz", + "Memory Clock": "1937 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t15.5 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "96 bit", + "Bandwidth": "186.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "128", + "RT Cores": "8", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "78.40 GPixel/s", + "Texture Rate": "156.8 GTexel/s", + "FP16 (half) performance": "10.04 TFLOPS (2:1)", + "FP32 (float) performance": "5.018 TFLOPS", + "FP64 (double) performance": "1,254 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "Length": "222 mm\n\t\t\t\t\t8.7 inches", + "Width": "114 mm\n\t\t\t\t\t4.5 inches", + "Height": "42 mm\n\t\t\t\t\t1.7 inches", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "1x HDMI 2.13x DisplayPort 2.0", + "Power Connectors": "1x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Retail boards based on this design (2)": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a550m.c3907", + "web_page_access_date": "2022/08/28/, 02:59:32", + "Product Name": "Intel Arc A550M", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "2048", + "TMUs": "128", + "ROPs": "64", + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Bus Width": "128 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Mobile Graphics": { + "Release Date": "2022", + "Generation": "Alchemist\n(Arc 5)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "900 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "8 GB", + "Memory Type": "GDDR6", + "Memory Bus": "128 bit", + "Bandwidth": "224.0 GB/s" + }, + "Render Config": { + "Shading Units": "2048", + "TMUs": "128", + "ROPs": "64", + "Execution Units": "256", + "RT Cores": "16", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "57.60 GPixel/s", + "Texture Rate": "115.2 GTexel/s", + "FP16 (half) performance": "7.373 TFLOPS (2:1)", + "FP32 (float) performance": "3.686 TFLOPS", + "FP64 (double) performance": "921.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "60 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a730m.c3908", + "web_page_access_date": "2022/08/28/, 03:01:35", + "Product Name": "Intel Arc A730M", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "3072", + "TMUs": "192", + "ROPs": "96", + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Bus Width": "192 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Mobile Graphics": { + "Release Date": "2022", + "Generation": "Alchemist\n(Arc 7)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1100 MHz", + "Memory Clock": "1750 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t14 Gbps effective" + }, + "Memory": { + "Memory Size": "12 GB", + "Memory Type": "GDDR6", + "Memory Bus": "192 bit", + "Bandwidth": "336.0 GB/s" + }, + "Render Config": { + "Shading Units": "3072", + "TMUs": "192", + "ROPs": "96", + "Execution Units": "384", + "RT Cores": "24", + "L2 Cache": "12 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "105.6 GPixel/s", + "Texture Rate": "211.2 GTexel/s", + "FP16 (half) performance": "13.52 TFLOPS (2:1)", + "FP32 (float) performance": "6.758 TFLOPS", + "FP64 (double) performance": "1.690 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "80 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a770.c3914", + "web_page_access_date": "2022/08/28/, 03:03:38", + "Product Name": "Intel Arc A770", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "4096", + "TMUs": "256", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Graphics Card": { + "Release Date": "Unknown", + "Generation": "Alchemist\n(Arc 7)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "1500 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t12 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "384.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "128", + "Execution Units": "512", + "RT Cores": "32", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "211.2 GPixel/s", + "Texture Rate": "422.4 GTexel/s", + "FP16 (half) performance": "27.03 TFLOPS (2:1)", + "FP32 (float) performance": "13.52 TFLOPS", + "FP64 (double) performance": "3.379 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "120 W", + "Suggested PSU": "300 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a770m.c3909", + "web_page_access_date": "2022/08/28/, 03:05:40", + "Product Name": "Intel Arc A770M", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "4096", + "TMUs": "256", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Mobile Graphics": { + "Release Date": "2022", + "Generation": "Alchemist\n(Arc 7)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1650 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6", + "Memory Bus": "256 bit", + "Bandwidth": "512.0 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "128", + "Execution Units": "512", + "RT Cores": "32", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "211.2 GPixel/s", + "Texture Rate": "422.4 GTexel/s", + "FP16 (half) performance": "27.03 TFLOPS (2:1)", + "FP32 (float) performance": "13.52 TFLOPS", + "FP64 (double) performance": "3.379 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "120 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-a780.c3910", + "web_page_access_date": "2022/08/28/, 03:07:43", + "Product Name": "Intel Arc A780", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "4096", + "TMUs": "256", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Bus Width": "256 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "GPU Variant": "ACM-G10", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "Alchemist\n(Arc 7)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16", + "Reviews": "1 in our database" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "2200 MHz", + "Memory Clock": "1093 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t17.5 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "GDDR6X", + "Memory Bus": "256 bit", + "Bandwidth": "559.6 GB/s" + }, + "Render Config": { + "Shading Units": "4096", + "TMUs": "256", + "ROPs": "128", + "Execution Units": "512", + "RT Cores": "32", + "L2 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "281.6 GPixel/s", + "Texture Rate": "563.2 GTexel/s", + "FP16 (half) performance": "36.04 TFLOPS (2:1)", + "FP32 (float) performance": "18.02 TFLOPS", + "FP64 (double) performance": "4.506 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "200 W", + "Suggested PSU": "550 W", + "Outputs": "1x HDMI 2.13x DisplayPort 1.4a", + "Power Connectors": "2x 8-pin" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-pro-a30m.c3927", + "web_page_access_date": "2022/08/28/, 03:09:51", + "Product Name": "Intel Arc Pro A30M", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Bus Width": "64 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G11", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Mobile Graphics": { + "Release Date": "Aug 8th, 2022", + "Generation": "Alchemist\n(Pro-Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "2000 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "4 GB", + "Memory Type": "GDDR6", + "Memory Bus": "64 bit", + "Bandwidth": "128.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "128", + "RT Cores": "8", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "64.00 GPixel/s", + "Texture Rate": "128.0 GTexel/s", + "FP16 (half) performance": "8.192 TFLOPS (2:1)", + "FP32 (float) performance": "4.096 TFLOPS", + "FP64 (double) performance": "1,024 GFLOPS (1:4)" + }, + "Board Design": { + "TDP": "50 W", + "Outputs": "No outputs", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-pro-a40.c3925", + "web_page_access_date": "2022/08/28/, 11:59:47", + "Product Name": "Intel Arc Pro A40", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G11", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 8th, 2022", + "Generation": "Alchemist\n(Pro-Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "1500 MHz", + "Boost Clock": "1700 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "96 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "128", + "RT Cores": "8", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "54.40 GPixel/s", + "Texture Rate": "108.8 GTexel/s", + "FP16 (half) performance": "6.963 TFLOPS (2:1)", + "FP32 (float) performance": "3.482 TFLOPS", + "FP64 (double) performance": "870.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "TDP": "50 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 2.0", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arc-pro-a50.c3926", + "web_page_access_date": "2022/08/28/, 12:01:35", + "Product Name": "Intel Arc Pro A50", + "General Specs": { + "Graphics Processor": "DG2-128", + "Cores": "1024", + "TMUs": "64", + "ROPs": "32", + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Bus Width": "96 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-128", + "GPU Variant": "ACM-G11", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "7,200 million", + "Die Size": "157 mm²" + }, + "Graphics Card": { + "Release Date": "Aug 8th, 2022", + "Generation": "Alchemist\n(Pro-Series)", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x8" + }, + "Relative Performance": {}, + "Clock Speeds": { + "Base Clock": "2000 MHz", + "Boost Clock": "2350 MHz", + "Memory Clock": "2000 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t16 Gbps effective" + }, + "Memory": { + "Memory Size": "6 GB", + "Memory Type": "GDDR6", + "Memory Bus": "96 bit", + "Bandwidth": "192.0 GB/s" + }, + "Render Config": { + "Shading Units": "1024", + "TMUs": "64", + "ROPs": "32", + "Execution Units": "128", + "RT Cores": "8", + "L2 Cache": "4 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "75.20 GPixel/s", + "Texture Rate": "150.4 GTexel/s", + "FP16 (half) performance": "9.626 TFLOPS (2:1)", + "FP32 (float) performance": "4.813 TFLOPS", + "FP64 (double) performance": "1,203 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Dual-slot", + "TDP": "75 W", + "Suggested PSU": "250 W", + "Outputs": "4x mini-DisplayPort 2.0", + "Power Connectors": "None" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/arctic-sound-m.c3885", + "web_page_access_date": "2022/08/28/, 12:01:43", + "Product Name": "Intel Arctic Sound-M", + "General Specs": { + "Graphics Processor": "DG2-512", + "Cores": "8192", + "TMUs": "256", + "ROPs": "128", + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Bus Width": "4096 bit" + }, + "Graphics Processor": { + "GPU Name": "DG2-512", + "Architecture": "Generation 12.7", + "Foundry": "TSMC", + "Process Size": "6 nm", + "Transistors": "21,700 million", + "Die Size": "406 mm²" + }, + "Graphics Card": { + "Release Date": "2022", + "Generation": "Xe Graphics", + "Production": "Active", + "Bus Interface": "PCIe 4.0 x16" + }, + "Relative Performance": {}, + "Clock Speeds": { + "GPU Clock": "900 MHz", + "Memory Clock": "1200 MHz\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t2.4 Gbps effective" + }, + "Memory": { + "Memory Size": "16 GB", + "Memory Type": "HBM2e", + "Memory Bus": "4096 bit", + "Bandwidth": "1,229 GB/s" + }, + "Render Config": { + "Shading Units": "8192", + "TMUs": "256", + "ROPs": "128", + "Execution Units": "512", + "L2 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "115.2 GPixel/s", + "Texture Rate": "230.4 GTexel/s", + "FP16 (half) performance": "29.49 TFLOPS (2:1)", + "FP32 (float) performance": "14.75 TFLOPS", + "FP64 (double) performance": "3.686 TFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "Single-slot", + "Length": "267 mm\n\t\t\t\t\t10.5 inches", + "TDP": "500 W", + "Suggested PSU": "900 W", + "Outputs": "No outputs", + "Power Connectors": "8-pin EPS" + }, + "Graphics Features": { + "DirectX": "12 Ultimate (12_2)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.6" + }, + "Card Notes": {} + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-graphics-80eu.c3882", + "web_page_access_date": "2022/08/28/, 12:01:51", + "Product Name": "Intel Iris Xe Graphics 80EU", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "640", + "TMUs": "40", + "ROPs": "20", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics-M\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "640", + "TMUs": "40", + "ROPs": "20", + "Execution Units": "80", + "L2 Cache": "1024 KB", + "L3 Cache": "12 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "26.00 GPixel/s", + "Texture Rate": "52.00 GTexel/s", + "FP16 (half) performance": "3.328 TFLOPS (2:1)", + "FP32 (float) performance": "1.664 TFLOPS", + "FP64 (double) performance": "416.0 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/iris-xe-graphics-96eu.c3881", + "web_page_access_date": "2022/08/28/, 12:02:00", + "Product Name": "Intel Iris Xe Graphics 96EU", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "768", + "TMUs": "48", + "ROPs": "24", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics-M\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "768", + "TMUs": "48", + "ROPs": "24", + "Execution Units": "96", + "L2 Cache": "1024 KB", + "L3 Cache": "16 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "33.60 GPixel/s", + "Texture Rate": "67.20 GTexel/s", + "FP16 (half) performance": "4.301 TFLOPS (2:1)", + "FP32 (float) performance": "2.150 TFLOPS", + "FP64 (double) performance": "537.6 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-48eu.c3883", + "web_page_access_date": "2022/08/28/, 12:02:08", + "Product Name": "Intel UHD Graphics 48EU", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "384", + "TMUs": "24", + "ROPs": "12", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics-M\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1150 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "384", + "TMUs": "24", + "ROPs": "12", + "Execution Units": "48", + "L2 Cache": "1024 KB", + "L3 Cache": "8 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "13.80 GPixel/s", + "Texture Rate": "27.60 GTexel/s", + "FP16 (half) performance": "1.766 TFLOPS (2:1)", + "FP32 (float) performance": "883.2 GFLOPS", + "FP64 (double) performance": "220.8 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-64eu.c3884", + "web_page_access_date": "2022/08/28/, 12:02:16", + "Product Name": "Intel UHD Graphics 64EU", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "512", + "TMUs": "32", + "ROPs": "16", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics-M\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "512", + "TMUs": "32", + "ROPs": "16", + "Execution Units": "64", + "L2 Cache": "1024 KB", + "L3 Cache": "10 MB" + }, + "Theoretical Performance": { + "Pixel Rate": "22.40 GPixel/s", + "Texture Rate": "44.80 GTexel/s", + "FP16 (half) performance": "2.867 TFLOPS (2:1)", + "FP32 (float) performance": "1,434 GFLOPS", + "FP64 (double) performance": "358.4 GFLOPS (1:4)" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "45 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-710.c3876", + "web_page_access_date": "2022/08/28/, 12:02:24", + "Product Name": "Intel UHD Graphics 710", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "128", + "TMUs": "8", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1300 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "128", + "TMUs": "8", + "ROPs": "8", + "Execution Units": "16" + }, + "Theoretical Performance": { + "Pixel Rate": "10.40 GPixel/s", + "Texture Rate": "10.40 GTexel/s", + "FP16 (half) performance": "665.6 GFLOPS (2:1)", + "FP32 (float) performance": "332.8 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + }, + { + "web_page_url": "https://www.techpowerup.com/gpu-specs/uhd-graphics-730.c3877", + "web_page_access_date": "2022/08/28/, 12:02:33", + "Product Name": "Intel UHD Graphics 730", + "General Specs": { + "Graphics Processor": "Alder Lake GT1", + "Cores": "192", + "TMUs": "12", + "ROPs": "8", + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Bus Width": "System Shared" + }, + "Graphics Processor": { + "GPU Name": "Alder Lake GT1", + "Architecture": "Generation 12.2", + "Foundry": "Intel", + "Process Size": "10 nm", + "Transistors": "unknown", + "Die Size": "unknown" + }, + "Integrated Graphics": { + "Release Date": "Jan 4th, 2022", + "Generation": "HD Graphics\n(Alder Lake)", + "Production": "Active", + "Bus Interface": "Ring Bus", + "Reviews": "1 in our database" + }, + "Clock Speeds": { + "Base Clock": "300 MHz", + "Boost Clock": "1400 MHz", + "Memory Clock": "System Shared" + }, + "IGP Variants": {}, + "Memory": { + "Memory Size": "System Shared", + "Memory Type": "System Shared", + "Memory Bus": "System Shared", + "Bandwidth": "System Dependent" + }, + "Render Config": { + "Shading Units": "192", + "TMUs": "12", + "ROPs": "8", + "Execution Units": "24" + }, + "Theoretical Performance": { + "Pixel Rate": "11.20 GPixel/s", + "Texture Rate": "16.80 GTexel/s", + "FP16 (half) performance": "1,075 GFLOPS (2:1)", + "FP32 (float) performance": "537.6 GFLOPS" + }, + "Board Design": { + "Slot Width": "IGP", + "TDP": "15 W", + "Outputs": "No outputs" + }, + "Graphics Features": { + "DirectX": "12 (12_1)", + "OpenGL": "4.6", + "OpenCL": "3.0", + "Vulkan": "1.3", + "Shader Model": "6.4" + } + } +] diff --git a/src/platforms/nvidia/nvidia.jl b/src/features/qualifiers/nvidia/nvidia.jl similarity index 91% rename from src/platforms/nvidia/nvidia.jl rename to src/features/qualifiers/nvidia/nvidia.jl index 2fd9592..2fdf41d 100644 --- a/src/platforms/nvidia/nvidia.jl +++ b/src/features/qualifiers/nvidia/nvidia.jl @@ -58,7 +58,35 @@ abstract type GA102 <: NVIDIAGPUProcessor end; export GA102 abstract type GA102_890_A1 <: GA102 end; export GA102_890_A1 abstract type GA107 <: NVIDIAGPUProcessor end; export GA107 abstract type GH100 <: NVIDIAGPUProcessor end; export GH100 - +abstract type AD102 <: NVIDIAGPUProcessor end; export AD102 +abstract type AD103 <: NVIDIAGPUProcessor end; export AD103 +abstract type AD104 <: NVIDIAGPUProcessor end; export AD104 +abstract type GA103S <: NVIDIAGPUProcessor end; export GA103S +abstract type GA104 <: NVIDIAGPUProcessor end; export GA104 +abstract type GA106 <: NVIDIAGPUProcessor end; export GA106 +abstract type GA107S <: NVIDIAGPUProcessor end; export GA107S +abstract type GF108 <: NVIDIAGPUProcessor end; export GF108 +abstract type GF119 <: NVIDIAGPUProcessor end; export GF119 +abstract type GK106 <: NVIDIAGPUProcessor end; export GK106 +abstract type GK107 <: NVIDIAGPUProcessor end; export GK107 +abstract type GK208B <: NVIDIAGPUProcessor end; export GK208B +abstract type GM108 <: NVIDIAGPUProcessor end; export GM108 +abstract type GM108M <: NVIDIAGPUProcessor end; export GM108M +abstract type GM20B <: NVIDIAGPUProcessor end; export GM20B +abstract type GP106 <: NVIDIAGPUProcessor end; export GP106 +abstract type GP107 <: NVIDIAGPUProcessor end; export GP107 +abstract type GP108 <: NVIDIAGPUProcessor end; export GP108 +abstract type GP108B <: NVIDIAGPUProcessor end; export GP108B +abstract type GP10B <: NVIDIAGPUProcessor end; export GP10B +abstract type GV10B <: NVIDIAGPUProcessor end; export GV10B +abstract type TU102 <: NVIDIAGPUProcessor end; export TU102 +abstract type TU104 <: NVIDIAGPUProcessor end; export TU104 +abstract type TU104B <: NVIDIAGPUProcessor end; export TU104B +abstract type TU106 <: NVIDIAGPUProcessor end; export TU106 +abstract type TU106B <: NVIDIAGPUProcessor end; export TU106B +abstract type TU116 <: NVIDIAGPUProcessor end; export TU116 +abstract type TU117 <: NVIDIAGPUProcessor end; export TU117 +abstract type TU117B <: NVIDIAGPUProcessor end; export TU117B # CUDA API @@ -67,15 +95,19 @@ abstract type CUDA_API <: AcceleratorBackend end; export CUDA_API abstract type CUDA_1_0 <: CUDA_API end; const CUDA1 = CUDA_1_0; export CUDA_1_0, CUDA1 abstract type CUDA_1_3 <: CUDA_1_0 end; export CUDA_1_3 abstract type CUDA_2_0 <: CUDA_1_3 end; const CUDA2 = CUDA_2_0; export CUDA_2_0, CUDA2 -abstract type CUDA_3_0 <: CUDA_2_0 end; const CUDA3 = CUDA_3_0; export CUDA_3_0, CUDA3 +abstract type CUDA_2_1 <: CUDA_2_0 end; export CUDA_2_1 +abstract type CUDA_3_0 <: CUDA_2_1 end; const CUDA3 = CUDA_3_0; export CUDA_3_0, CUDA3 abstract type CUDA_3_5 <: CUDA_3_0 end; export CUDA_3_5 abstract type CUDA_3_7 <: CUDA_3_5 end; export CUDA_3_7 abstract type CUDA_5_0 <: CUDA_3_7 end; export CUDA_5_2 abstract type CUDA_5_2 <: CUDA_5_0 end; export CUDA_5_0 -abstract type CUDA_6_0 <: CUDA_5_2 end; const CUDA6 = CUDA_6_0; export CUDA_6_0, CUDA6 +abstract type CUDA_5_3 <: CUDA_5_2 end; export CUDA_5_3 +abstract type CUDA_6_0 <: CUDA_5_3 end; const CUDA6 = CUDA_6_0; export CUDA_6_0, CUDA6 abstract type CUDA_6_1 <: CUDA_6_0 end; export CUDA_6_1 -abstract type CUDA_7_0 <: CUDA_6_1 end; const CUDA7 = CUDA_7_0; export CUDA_7_0, CUDA7 -abstract type CUDA_7_5 <: CUDA_7_0 end; export CUDA_7_5 +abstract type CUDA_6_2 <: CUDA_6_1 end; export CUDA_6_2 +abstract type CUDA_7_0 <: CUDA_6_2 end; const CUDA7 = CUDA_7_0; export CUDA_7_0, CUDA7 +abstract type CUDA_7_2 <: CUDA_7_0 end; export CUDA_7_2 +abstract type CUDA_7_5 <: CUDA_7_2 end; export CUDA_7_5 abstract type CUDA_8_0 <: CUDA_7_5 end; const CUDA8 = CUDA_8_0; export CUDA_8_0, CUDA8 abstract type CUDA_8_6 <: CUDA_8_0 end; export CUDA_8_6 abstract type CUDA_9_0 <: CUDA_8_6 end; const CUDA9 = CUDA_9_0; export CUDA_9_0, CUDA9 diff --git a/src/platforms/xilinx/xilinx.jl b/src/features/qualifiers/xilinx/xilinx.jl similarity index 100% rename from src/platforms/xilinx/xilinx.jl rename to src/features/qualifiers/xilinx/xilinx.jl diff --git a/src/quantifiers/atleast.jl b/src/features/quantifiers/atleast.jl similarity index 98% rename from src/quantifiers/atleast.jl rename to src/features/quantifiers/atleast.jl index 9e8a742..74a9612 100644 --- a/src/quantifiers/atleast.jl +++ b/src/features/quantifiers/atleast.jl @@ -4,7 +4,7 @@ # automated declaration of at-least quantifier types -abstract type AtLeast0 end +abstract type AtLeast0 <: QuantifierFeature end; export AtLeast0 let mul_super = 0 mag_ = "" diff --git a/src/quantifiers/atmost.jl b/src/features/quantifiers/atmost.jl similarity index 97% rename from src/quantifiers/atmost.jl rename to src/features/quantifiers/atmost.jl index c76b194..dd7daff 100644 --- a/src/quantifiers/atmost.jl +++ b/src/features/quantifiers/atmost.jl @@ -5,7 +5,7 @@ # automated declaration of at-most quantifier types -abstract type AtMostInf end +abstract type AtMostInf <: QuantifierFeature end; export AtMostInf let mul_super = "Inf" , mag_ = "" ; @@ -15,13 +15,14 @@ let mul_super = "Inf" , nm1 = Symbol("AtMost" * string(mul) * mag) nm2 = Symbol("AtMost" * string(mul_super) * mag_super) @eval abstract type $nm1 <: $nm2 end + @eval export $nm1 mul_super = mul end mag_ = mag end end -abstract type AtMost0 <: AtMost1n end +abstract type AtMost0 <: AtMost1n end; export AtMost0 diff --git a/src/features/quantifiers/macros.jl b/src/features/quantifiers/macros.jl new file mode 100644 index 0000000..18677ad --- /dev/null +++ b/src/features/quantifiers/macros.jl @@ -0,0 +1,55 @@ +# ------------------------------------------------------------------ +# Licensed under the MIT License. See LICENCE in the project root. +# ------------------------------------------------------------------ + +macro quantifier(n) + get_quantifier(n) +end + +macro atleast(n) + N = n==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(n) + Meta.parse("Type{<:Tuple{$N,AtMostInf,X} where X}") +end + +macro atleast(n,x) + N = n==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(n) + esc(Meta.parse("Type{<:Tuple{$N,AtMostInf,$(x)}}")) +end + +macro atmost(n) + N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n); + Meta.parse("Type{<:Tuple{AtLeast0,$N,X} where X}") +end + +macro atmost(n,x) + N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n); + Meta.parse("Type{<:Tuple{AtLeast0,$N,$(x)}}") +end + +macro between(m,n) + M = m==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(m) + N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n) + Meta.parse("Type{<:Tuple{$M,$N,X} where X}") +end + +macro between(m,n,x) + M = m==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(m) + N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n) + Meta.parse("Type{<:Tuple{$M,$N,$(x)}}") +end + +macro just(m) + M = m==:∞ || m==:inf ? "AtLeastInf" : "AtLeast" * string(m) + N = m==:∞ || m==:inf ? "AtMostInf" : "AtMost" * string(m) + Meta.parse("Type{<:Tuple{$M,$N,X} where X}") +end + +macro just(m,x) + M = m==:∞ || m==:inf ? "AtLeastInf" : "AtLeast" * string(m) + N = m==:∞ || m==:inf ? "AtMostInf" : "AtMost" * string(m) + Meta.parse("Type{<:Tuple{$M,$N,$(x)}}") +end + +macro unrestricted() + @atleast 0 +end \ No newline at end of file diff --git a/src/identification.jl b/src/platform.jl similarity index 58% rename from src/identification.jl rename to src/platform.jl index a8ea2a4..8fe9e29 100644 --- a/src/identification.jl +++ b/src/platform.jl @@ -3,10 +3,10 @@ # ------------------------------------------------------------------ mutable struct PlatformFeatures - default_platform_types_all - default_platform_types - actual_platform_arguments_all - actual_platform_arguments + platform_feature_default_all + platform_feature_default + platform_feature_all + platform_feature function PlatformFeatures() new(Dict(),Dict(),Dict(),Dict()) end @@ -16,123 +16,164 @@ state = PlatformFeatures() defT =[ - :node_count => Tuple{AtLeast1,AtMostInf}, + :node_count => Tuple{AtLeast1,AtMostInf,Q} where Q, :node_provider => Provider, :node_virtual => Query, :node_dedicated => Query, :node_machinefamily => MachineFamily, :node_machinetype => MachineType, - :node_machinesize => MachineSize, - :node_vcpus_count => Tuple{AtLeast1,AtMostInf}, - :node_memory_size => Tuple{AtLeast0,AtMostInf}, - :node_memory_latency => Tuple{AtLeast0,AtMostInf}, - :node_memory_bandwidth => Tuple{AtLeast0,AtMostInf}, + :node_vcpus_count => Tuple{AtLeast1,AtMostInf,Q} where Q, + :node_memory_size => Tuple{AtLeast0,AtMostInf,Q} where Q, + :node_memory_latency => Tuple{AtLeast0,AtMostInf,Q} where Q, + :node_memory_bandwidth => Tuple{AtLeast0,AtMostInf,Q} where Q, :node_memory_type => MemoryType, - :node_memory_frequency => Tuple{AtLeast1,AtMostInf}, - :processor_count => Tuple{AtLeast1,AtMostInf}, + :node_memory_frequency => Tuple{AtLeast1,AtMostInf,Q} where Q, + :node_coworker_count => WorkerCount, # number of worker processes (i.e., julia -p N) + :processor_count => Tuple{AtLeast1,AtMostInf,Q} where Q, :processor_manufacturer => Manufacturer, :processor_microarchitecture => ProcessorMicroarchitecture, :processor_simd => ProcessorSIMD, :processor_isa => ProcessorISA, - :processor_tdp => Tuple{AtLeast0,AtMostInf}, - :processor_core_clock => Tuple{AtLeast0,AtMostInf}, - :processor_core_count => Tuple{AtLeast1,AtMostInf}, - :processor_core_threads_count => Tuple{AtLeast1,AtMostInf}, + :processor_tdp => Tuple{AtLeast0,AtMostInf,Q} where Q, + :processor_core_clock => Tuple{AtLeast0,AtMostInf,Q} where Q, + :processor_core_count => Tuple{AtLeast1,AtMostInf,Q} where Q, + :processor_core_threads_count => Tuple{AtLeast1,AtMostInf,Q} where Q, # :processor_core_L1_mapping => :PC1M, - :processor_core_L1_size => Tuple{AtLeast0,AtMostInf}, + :processor_core_L1_size => Tuple{AtLeast0,AtMostInf,Q} where Q, # :processor_core_L1_latency => :PC1T, # :processor_core_L1_bandwidth => :PC1B, # :processor_core_L1_linesize => :PC1L, # :processor_core_L2_mapping => :PC2M, - :processor_core_L2_size => Tuple{AtLeast0,AtMostInf}, + :processor_core_L2_size => Tuple{AtLeast0,AtMostInf,Q} where Q, # :processor_core_L2_latency => :PC2T, # :processor_core_L2_bandwidth => :PC2B, # :processor_core_L2_linesize => :PC2L, # :processor_L3_mapping => :PC3M, - :processor_L3_size => Tuple{AtLeast0,AtMostInf}, + :processor_L3_size => Tuple{AtLeast0,AtMostInf,Q} where Q, # :processor_L3_latency => :PC3T, # :processor_L3_bandwidth => :PC3B, # :processor_L3_linesize => :PC3L, :processor => Processor, - :accelerator_count => Tuple{AtLeast0,AtMostInf}, + :accelerator_count => Tuple{AtLeast0,AtMostInf,Q} where Q, :accelerator_type => AcceleratorType, :accelerator_manufacturer => Manufacturer, - :accelerator_api => AcceleratorBackend, + :accelerator_api => Tuple{AcceleratorBackend,AcceleratorBackend,AcceleratorBackend,AcceleratorBackend,AcceleratorBackend,AcceleratorBackend,AcceleratorBackend}, :accelerator_architecture => AcceleratorArchitecture, - :accelerator_memorysize => Tuple{AtLeast0,AtMostInf}, - :accelerator_tdp => Tuple{AtLeast0,AtMostInf}, + :accelerator_memory_size => Tuple{AtLeast0,AtMostInf,Q} where Q, + :accelerator_tdp => Tuple{AtLeast0,AtMostInf,Q} where Q, + :accelerator_processor => AcceleratorProcessor, + :accelerator_processor_count => Tuple{AtLeast1,AtMostInf,Q} where Q, + :accelerator_memory_type => MemoryType, :accelerator => Accelerator, - :interconnection_startuptime => Tuple{AtLeast0,AtMostInf}, - :interconnection_latency => Tuple{AtLeast0,AtMostInf}, - :interconnection_bandwidth => Tuple{AtLeast0,AtMostInf}, + :interconnection_startuptime => Tuple{AtLeast0,AtMostInf,Q} where Q, + :interconnection_latency => Tuple{AtLeast0,AtMostInf,Q} where Q, + :interconnection_bandwidth => Tuple{AtLeast0,AtMostInf,Q} where Q, :interconnection_topology => InterconnectionTopology, :interconnection_RDMA => Query, :interconnection => Interconnection, - :storage_size => Tuple{AtLeast0,AtMostInf}, - :storage_latency => Tuple{AtLeast0,AtMostInf}, - :storage_bandwidth => Tuple{AtLeast0,AtMostInf}, - :storage_networkbandwidth => Tuple{AtLeast0,AtMostInf}, + :storage_size => Tuple{AtLeast0,AtMostInf,Q} where Q, + :storage_latency => Tuple{AtLeast0,AtMostInf,Q} where Q, + :storage_bandwidth => Tuple{AtLeast0,AtMostInf,Q} where Q, + :storage_networkbandwidth => Tuple{AtLeast0,AtMostInf,Q} where Q, :storage_type => StorageType, :storage_interface => StorageInterface ] -state.default_platform_types_all = Dict(defT...) -state.default_platform_types = copy(state.default_platform_types_all) +state.platform_feature_default_all = Dict(defT...) +state.platform_feature_default = copy(state.platform_feature_default_all) + +function setupWorkers(platform_description_dict, platform_feature) + try + colocated_procs = procs(myid()) + + node_coworker_count = if (1 in colocated_procs) + length(colocated_procs) - 1 + else + length(colocated_procs) + end + + vcount = platform_description_dict[:node_vcpus_count] + pcount = platform_description_dict[:processor_count] + ccount = pcount * platform_description_dict[:processor_core_count] + tcount = ccount * platform_description_dict[:processor_core_threads_count] + + if vcount == node_coworker_count && platform_description_dict[:maintainer] == CloudProvider + platform_feature[:node_coworker_count] = PerVCPU + elseif (node_coworker_count = 0) + platform_feature[:node_coworker_count] = NoCoworkers + elseif node_coworker_count == 1 + platform_feature[:node_coworker_count] = PerNode + elseif pcount == node_coworker_count + platform_feature[:node_coworker_count] = PerProcessor + elseif ccount == node_coworker_count + platform_feature[:node_coworker_count] = PerCore + elseif tcount == node_coworker_count + platform_feature[:node_coworker_count] = PerThread + else + platform_feature[:node_coworker_count] = Unmapped + end + catch _ + platform_feature[:node_coworker_count] = NoCoworkers + end +end function load!() - empty!(state.actual_platform_arguments_all) + empty!(state.platform_feature_all) platform_description_dict = readPlatormDescription() - loadFeatures!(platform_description_dict, state.default_platform_types_all, state.actual_platform_arguments_all) + platform_description_dict["node"]["node_count"] = try Distributed.nworkers() catch _ 1 end + loadFeatures!(platform_description_dict, state.platform_feature_default_all, state.platform_feature_all) + + setupWorkers(platform_description_dict, state.platform_feature_all) - empty!(state.actual_platform_arguments) - for (k,v) in state.actual_platform_arguments_all - state.actual_platform_arguments[k] = v + empty!(state.platform_feature) + for (k,v) in state.platform_feature_all + state.platform_feature[k] = v end end # load!() function setplatform!(parameter_id, actual_type) - state.actual_platform_arguments[parameter_id] = actual_type + state.platform_feature[parameter_id] = actual_type (parameter_id,actual_type) end function getplatform(parameter_id) - state.actual_platform_arguments[parameter_id] + state.platform_feature[parameter_id] end function getplatform() - state.actual_platform_arguments + state.platform_feature end -function empty_actual_platform_arguments!() - empty!(state.actual_platform_arguments) - empty!(state.default_platform_types) +function empty_platform_feature!() + empty!(state.platform_feature) + empty!(state.platform_feature_default) end -function reset_actual_platform_arguments!() - for (k,v) in state.actual_platform_arguments_all - state.actual_platform_arguments[k] = v +function reset_platform_feature!() + for (k,v) in state.platform_feature_all + state.platform_feature[k] = v end for (k,v) in platform_types_all - state.default_platform_types[k] = v + state.platform_feature_default[k] = v end - keys(state.actual_platform_arguments) + keys(state.platform_feature) end function include_actual_platform_argument!(f) - state.actual_platform_arguments[f] = state.actual_platform_arguments_all[f] - state.default_platform_types[f] = state.default_platform_types_all[f] - keys(state.actual_platform_arguments) + state.platform_feature[f] = state.platform_feature_all[f] + state.platform_feature_default[f] = state.platform_feature_default_all[f] + keys(state.platform_feature) end function platform_parameter_macro!(f) if (f == :clear) - empty_actual_platform_arguments!() + empty_platform_feature!() elseif (f == :all) - reset_actual_platform_arguments!() + reset_platform_feature!() else check_all(f) include_actual_platform_argument!(f) @@ -147,24 +188,25 @@ function platform_parameters_kernel(p_list) # replace default types to required types in kernel platform parameters r = [] - for k in keys(state.actual_platform_arguments) + for k in keys(state.platform_feature) found = get(p_dict, k, nothing) - v = state.default_platform_types[k] - push!(r, isnothing(found) ? :(::Type{<:$v}) : :(::Type{<:$found})) + found_v = !isnothing(found) && !(typeof(found) == Symbol) && ((found.head == :curly && length(found.args) == 2 && found.args[1] == :Type) || (found.head == :macrocall && length(found.args) > 0 && found.args[1] in [Symbol("@atleast"), Symbol("@atmost"), Symbol("@between"), Symbol("@just"), Symbol("@unrestricted")])) ? :(::$found) : :(::Type{<:$found}) + v = state.platform_feature_default[k] + push!(r, isnothing(found) ? :(::Type{<:$v}) : found_v) end return r end function check_all(parameter_id) - if (!haskey(state.actual_platform_arguments_all,parameter_id)) + if (!haskey(state.platform_feature_all,parameter_id)) throw(parameter_id) end parameter_id end function check(parameter_id) - if (!haskey(state.actual_platform_arguments,parameter_id)) + if (!haskey(state.platform_feature,parameter_id)) throw(parameter_id) end parameter_id @@ -223,7 +265,7 @@ function build_entry_signature(fsign::Expr) keyword_parameters = length(call_node_args) > 1 && typeof(call_node_args[1]) == Expr && call_node_args[1].head == :parameters ? popfirst!(call_node_args).args : [] # takes a dictionary mapping par->actual_type and returns an expression :(par::actual_type) # the remaining elements in call_node_args are the kernel parameters. - platform_parameters = map(p->Expr(:kw,Expr(:(::),p[1],Type{<:state.default_platform_types[p[1]]}),p[2]), collect(state.actual_platform_arguments)) + platform_parameters = map(p->Expr(:kw,Expr(:(::),p[1],Type{<:state.platform_feature_default[p[1]]}),p[2]), collect(state.platform_feature)) # rebuild the keyword parameters node for the entry function, including the platform_parameters keyword_parameters_node = Expr(:parameters, platform_parameters..., keyword_parameters...) # collect the identifiers of the kernel parameters @@ -237,7 +279,7 @@ end function build_entry_body(fname, fargs, kargs) # takes the identifiers of the platform parameters - pargs = keys(state.actual_platform_arguments) + pargs = keys(state.platform_feature) # builds the :parameters node for the keyword arguments of the kernel invocation (kargs), since the identifiers must be refferenced. kargs = Expr(:parameters, map(p -> Expr(:kw, p, p), kargs)...) # returns the :call node for the kernel invocation (note that platform arguments comes before kernel arguments) diff --git a/src/platforms/ec2/ec2.jl b/src/platforms/ec2/ec2.jl deleted file mode 100644 index 51d2631..0000000 --- a/src/platforms/ec2/ec2.jl +++ /dev/null @@ -1,17 +0,0 @@ -# ------------------------------------------------------------------ -# Licensed under the MIT License. See LICENCE in the project root. -# ------------------------------------------------------------------ - -# maintainer types -abstract type AmazonEC2 <: CloudProvider end; export AmazonEC2 - -# locale types - - -# machine family types - - -# machine type types - - -# machine size types diff --git a/src/platforms/general.jl b/src/platforms/general.jl deleted file mode 100644 index 8b0be4c..0000000 --- a/src/platforms/general.jl +++ /dev/null @@ -1,74 +0,0 @@ -# ------------------------------------------------------------------ -# Licensed under the MIT License. See LICENCE in the project root. -# ------------------------------------------------------------------ - -# query - -abstract type Query end -abstract type Yes <: Query end -abstract type No <: Query end - -# maintainer - -abstract type Provider end -abstract type OnPremise <: Provider end -abstract type CloudProvider <: Provider end - -# machine - -abstract type MachineFamily end -abstract type MachineType end -abstract type MachineSize end - -# locale - -abstract type Locale end - -# manufacturer - -abstract type Manufacturer end - -# processor - -abstract type ProcessorMicroarchitecture end -abstract type ProcessorISA end -abstract type ProcessorSIMD <: ProcessorISA end - -abstract type Processor end - -# accelerator - -abstract type AcceleratorType end -abstract type AcceleratorArchitecture end -abstract type AcceleratorBackend end -abstract type AcceleratorProcessor end -abstract type Accelerator end - -abstract type XPU <: AcceleratorType end -abstract type GPU <: XPU end -abstract type TPU <: XPU end -abstract type IPU <: XPU end - -abstract type FPGA <: AcceleratorType end - -abstract type MIC <: AcceleratorType end - -#interconnection -abstract type InterconnectionTopology end -abstract type Interconnection end - -# storage - -abstract type StorageType end -abstract type StorageInterface end - -# memory system - -abstract type MemoryType end - - -# cache - -abstract type CacheMapping end - - diff --git a/src/quantifiers/macros.jl b/src/quantifiers/macros.jl deleted file mode 100644 index 2455d86..0000000 --- a/src/quantifiers/macros.jl +++ /dev/null @@ -1,29 +0,0 @@ -# ------------------------------------------------------------------ -# Licensed under the MIT License. See LICENCE in the project root. -# ------------------------------------------------------------------ - -macro atleast(n) - N = n==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(n) - Meta.parse("Tuple{" * N * ",AtMostInf}") -end - -macro atmost(n) - N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n); - Meta.parse("Tuple{AtLeast0," * N * "}") -end - -macro between(m,n) - M = m==:∞ || n==:inf ? "AtLeastInf" : "AtLeast" * string(m) - N = n==:∞ || n==:inf ? "AtMostInf" : "AtMost" * string(n) - Meta.parse("Tuple{" * M * "," * N * "}") -end - -macro just(m) - M = m==:∞ || m==:inf ? "AtLeastInf" : "AtLeast" * string(m) - N = m==:∞ || m==:inf ? "AtMostInf" : "AtMost" * string(m) - Meta.parse("Tuple{" * M * "," * N * "}") -end - -macro unrestricted() - @atleast 0 -end \ No newline at end of file diff --git a/src/utils.jl b/src/utils.jl new file mode 100644 index 0000000..4ff94a3 --- /dev/null +++ b/src/utils.jl @@ -0,0 +1,104 @@ +# ------------------------------------------------------------------ +# Licensed under the MIT License. See LICENCE in the project root. +# ------------------------------------------------------------------ + +function try_download(url,fname) + try + if (isfile(fname)) + cp(fname,fname * ".backup", force=true) + end + Downloads.download(url, fname) + catch e + @info "error downloading $url." + if (isfile(fname) || isfile(fname * ".backup")) + @info " Using existing file $fname" + if (!isfile(fname)) + cp(fname * ".backup", fname) + end + else + @info " Check internet connection and try again." + rethrow(e) + end + end + end + + function readDB(filename) + + d = Vector() + i=0 + for ls in readlines(filename) + if i>0 + l = split(ls,',') + ks = split(l[1],';') + d2 = d + for k in ks + next_d = nothing + for (key,value) in d + if (k == key) + next_d = value + end + end + if (isnothing(next_d)) + next_d = Vector() + push!(d,(k,next_d)) + end + d = next_d + end + push!(d,(l[2],tuple(l[2:length(l)]...))) + d = d2 + end + i = i + 1 + end + + return d + end + + function lookupDB(db, key) + + d = db + + while typeof(d) <: Vector + + ks = d + + found = false + for (k,v) in ks + if (occursin(k,key)) + d = v; found = true + break + end + end + if !found return nothing end + end + + return d + +end + + +function readDB2(filename) + + d = Dict() + i=0 + for ls in readlines(filename) + l = split(ls,',') + if i==0 + global columns = Vector() + for c in l + push!(columns, c) + end + elseif i>0 + + dd = Dict() + i = 1 + for c in columns + dd[c] = l[i] + i = i + 1 + end + d[l[1]] = dd + end + i = i + 1 + end + + return d + end \ No newline at end of file diff --git a/test/basics.jl b/test/basics.jl index 64bc6c7..7b84ca2 100644 --- a/test/basics.jl +++ b/test/basics.jl @@ -5,6 +5,7 @@ #= for the first 5 kernels =# @platform parameter accelerator_count @platform parameter accelerator_manufacturer + @platform parameter accelerator_api @platform parameter node_count @platform parameter processor @platform parameter accelerator_architecture @@ -16,7 +17,7 @@ @platform parameter interconnection_bandwidth @platform parameter interconnection_latency @platform parameter accelerator_type - @platform parameter accelerator_memorysize + @platform parameter accelerator_memory_size @platform parameter processor_simd # define a kernel @@ -29,10 +30,17 @@ x,y,args...; z=1, kwargs...) println(z,": kernel for 1 accelerators of unspecified kind") end - @platform aware function kernel({accelerator_count::(@atleast 1), - accelerator_manufacturer::NVIDIA}, - x,y,args...; z=2, kwargs...) - println(z,": kernel for 1 NVIDIA accelerators") + @platform aware function kernel({accelerator_count::@atleast(1,C), + accelerator_manufacturer::NVIDIA, + accelerator_api::(@api CUDA 3.0)}, + x::@atleast(1),y,args...; z=2, kwargs...) where C + println(z,": kernel 1 for $C NVIDIA accelerators") + end + @platform aware function kernel({accelerator_count::@atleast(1,C), + accelerator_manufacturer::NVIDIA, + accelerator_api::(@api CUDA 3.0)}, + x::@atleast(16),y,args...; z=2, kwargs...) where C + println(z,": kernel 2 for $C NVIDIA accelerators") end @platform aware function kernel({node_count::(@atleast 32), processor::IntelCore_i7_7500U}, @@ -58,7 +66,7 @@ end @platform aware function kernel({accelerator_count::(@atleast 1), accelerator_type::FPGA, - accelerator_memorysize::(@atleast 16G), + accelerator_memory_size::(@atleast 16G), processor_simd::AVX512, node_memory_size::(@atleast 256G) }, @@ -67,6 +75,7 @@ println(z,": a processor with AVX512 SIMD support, and 256GB of primary memory.") end - kernel(0,1,2,3;z=10,kwargs=0) + kernel(@quantifier(7),1,2,3;z=10,kwargs=0) + kernel(@quantifier(18),1,2,3;z=10,kwargs=0) end \ No newline at end of file